ponynice
ponynice
全部文章
分类
归档
标签
去牛客网
登录
/
注册
ponynice的博客
全部文章
(共4篇)
题解 | #八皇后#
#include <algorithm> #include <iostream> #include <vector> using namespace std; vector<string>res; int Q[8][8]={0}; bool isVal...
2024-03-26
0
214
题解 | #Problem D#
#include <iostream> #include <string> using namespace std; struct TreeNode{ char data; TreeNode *left,*right; TreeNode(char c)...
2024-03-24
0
223
题解 | #畅通工程#最小生成树Kruskal
#include <algorithm> #include <iostream> #include <string> using namespace std; int S[101]; struct Edge{ int a,b; int cost; ...
2024-03-17
0
231
题解 | #任务调度#
#include <iostream> #include <map> #include <string> #include <vector> using namespace std; int strnum(string s){ int i,nu...
2024-03-14
0
212