加载中...

摘要: https://www.acwing.com/problem/content/169/ #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int N = 70; int n; 阅读全文
posted @ 2022-09-02 15:08 英雄不问出处c 阅读(23) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/168/ #include <algorithm> #include <iostream> using namespace std; const int N = 9; // 0- 511 // ones[i] 表示i这个数 阅读全文
posted @ 2022-09-02 14:52 英雄不问出处c 阅读(132) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/167/ #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int N = 20; int n, 阅读全文
posted @ 2022-09-02 14:44 英雄不问出处c 阅读(27) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1120/ #include <iostream> #include <vector> #include <algorithm> using namespace std; const int N = 15; vector< 阅读全文
posted @ 2022-09-02 14:38 英雄不问出处c 阅读(31) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1119/ #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int N = 21; int n; 阅读全文
posted @ 2022-09-02 14:27 英雄不问出处c 阅读(45) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1118/ #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int N = 10; int n, 阅读全文
posted @ 2022-09-02 14:22 英雄不问出处c 阅读(176) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1115/ #include<bits/stdc++.h> using namespace std; const int N = 25; char g[N][N]; bool st[N][N]; int n, m; int 阅读全文
posted @ 2022-09-02 14:00 英雄不问出处c 阅读(29) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1114/ #include<bits/stdc++.h> using namespace std; const int N = 150; char g[N][N]; bool st[N][N]; int n; int s 阅读全文
posted @ 2022-09-02 13:57 英雄不问出处c 阅读(72) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1109/ #include <cstring> #include <iostream> #include <algorithm> #include <unordered_map> #include <queue> usi 阅读全文
posted @ 2022-09-02 13:54 英雄不问出处c 阅读(170) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/175/ 多源转化为单源最短路问题 #include <cstring> #include <iostream> #include <algorithm> #define x first #define y second 阅读全文
posted @ 2022-09-02 13:50 英雄不问出处c 阅读(24) 评论(0) 推荐(0) 编辑