加载中...

摘要: https://www.acwing.com/problem/content/1078/ 注意记录状态的唯一性 #include<bits/stdc++.h> #define x first #define y second using namespace std; typedef pair<int 阅读全文
posted @ 2022-09-02 13:47 英雄不问出处c 阅读(17) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1100/ 注意这题里面对连通性的处理。 #include <cstring> #include <iostream> #include <algorithm> #define x first #define y seco 阅读全文
posted @ 2022-09-02 13:45 英雄不问出处c 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/3305/ #include<iostream> #include<cstring> #include<stack> #include<unordered_map> #include<string> #include<al 阅读全文
posted @ 2022-08-30 10:55 英雄不问出处c 阅读(5) 评论(0) 推荐(0) 编辑
摘要: https://matiji.net/exam/contest/contestdetail/55?type=4 const int N = 1e5 + 7; int n, k, c[N]; void solve() { long long ans = 0; scanf("%d%d", &n, &k) 阅读全文
posted @ 2022-08-28 13:38 英雄不问出处c 阅读(116) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/4284/ #include <iostream> #include <cstring> #include <algorithm> using namespace std; typedef long long LL; co 阅读全文
posted @ 2022-08-25 20:14 英雄不问出处c 阅读(29) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/description/4275/ 优质题解:https://www.acwing.com/solution/content/89003/ #include <iostream> #include <vector> #in 阅读全文
posted @ 2022-08-25 12:54 英雄不问出处c 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/description/4274/ #include<bits/stdc++.h> #include<string.h> using namespace std; const int N = 1010; int post[ 阅读全文
posted @ 2022-08-24 22:37 英雄不问出处c 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/description/1545/ #include <iostream> #include <cstring> #include <set> #include <stack> using namespace std; s 阅读全文
posted @ 2022-08-24 14:25 英雄不问出处c 阅读(16) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1543/ #include <iostream> #include <cstring> #include <vector> #include <algorithm> using namespace std; const 阅读全文
posted @ 2022-08-24 13:44 英雄不问出处c 阅读(40) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1537/ 思路: 用一个栈来模拟整个过程,注意什么时候应该pop,如果判断结果。 #include <iostream> #include <cstring> #include <stack> using namespa 阅读全文
posted @ 2022-08-24 13:01 英雄不问出处c 阅读(14) 评论(0) 推荐(0) 编辑