文章列表

筛选

Seq2Seq的学习总结

摘要:【原文1】:https://blog.csdn.net/sikh_0529/article/details/129148504 【原文2】:https://zhuanlan.zhihu.com/p/……

1848 求输入数据绝对值

摘要:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){   double a;   while(cin……

匈牙利算法(找对象)

摘要://形象:男的女的互有好感,现在为男的(a)找女朋友(b)且保证没有脚踏多只船 #include<iostream> #include<algorithm> #include<cstring> ……

染色法判二分图

摘要://二分图:图中不含奇数环  一条边两个点的颜色需不同  #include<iostream> #include<cstring> #include<algorithm> using na……

prim求最短路(稀疏)

摘要://prim求最短路(神似dijkstra)  #include<iostream> #include<algorithm> #include<cstring> using namespa……

floyd求最短路

摘要://floyd求最短路  #include<iostream> #include<cstring> #include<algorithm> using namespace std; co……