09 2024 档案

摘要:The 2024 CCPC Online Contest 补题连接:https://codeforces.com/gym/105336 D. 编码器-解码器 考虑dp,\(dp(i,j,k)\)表示 \(T\) 的子串 \(T[j,k]\)(下标 \(j\) 到下标 \(k\) )在 \(S_{i} 阅读全文
posted @ 2024-09-13 19:37 Frodnx 阅读(218) 评论(0) 推荐(0)
摘要:The 2024 Shanghai Collegiate Programming Contest 补题连接:https://codeforces.com/gym/105229 M. 不共戴天 观察样例2,注意到6个荷叶两两分成一组,共分为3组 (1,2)(3,4)(5,6) 其中对于青蛙的策略是组内 阅读全文
posted @ 2024-09-12 18:34 Frodnx 阅读(297) 评论(0) 推荐(0)
摘要:数学知识:https://blog.sengxian.com/algorithms/linear-basis 题单:https://www.luogu.com.cn/training/11251#information 线性基用于解决最大异或和问题等 题目: J:https://codeforces 阅读全文
posted @ 2024-09-10 18:33 Frodnx 阅读(20) 评论(0) 推荐(0)
摘要:题目: AcWing 830. 单调栈:https://www.acwing.com/problem/content/832/ 单调栈 + 并查集: AcWing 1275. 最大数:https://www.acwing.com/problem/content/1277/ B:https://cod 阅读全文
posted @ 2024-09-10 17:41 Frodnx 阅读(25) 评论(0) 推荐(0)
摘要:The 8th Hebei Collegiate Programming Contest 补题连接:https://codeforces.com/gym/105184 A. Update #include <bits/stdc++.h> using namespace std; int main() 阅读全文
posted @ 2024-09-08 00:07 Frodnx 阅读(317) 评论(0) 推荐(0)
摘要:思路题,set有序,lower_bound(a)可以二分寻找set中最接近的大于等于它的数 #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; set<int> s; for(int i = 1; i 阅读全文
posted @ 2024-09-06 19:54 Frodnx 阅读(24) 评论(0) 推荐(0)
摘要:使用 set_intersection() 判断两个集合之间重复元素,时间复杂度最坏O(nlogn),最好O(n) #include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; vector<s 阅读全文
posted @ 2024-09-06 17:48 Frodnx 阅读(177) 评论(0) 推荐(0)
摘要:占位符不要用%#*^之类的,测试点5和7会被卡 #include <bits/stdc++.h> using namespace std; void print(string s) { for(auto si : s) if(si == '{') cout << "<censored>"; else 阅读全文
posted @ 2024-09-04 19:20 Frodnx 阅读(161) 评论(0) 推荐(0)
摘要:#include <bits/stdc++.h> using namespace std; string func(string s, int x, int y, string s1, string s2) { x--,y--; string mid(s,x,y-x+1); s.erase(x,y- 阅读全文
posted @ 2024-09-03 15:30 Frodnx 阅读(36) 评论(0) 推荐(0)
摘要:测试点5是混过去的,已知测试点5只涉及大小写转换,n=3,第一个句子长度为奇数 #include <bits/stdc++.h> using namespace std; bool is_biaodian(char c) { if(c >= 'a' && c <= 'z' || c >= 'A' & 阅读全文
posted @ 2024-09-03 14:06 Frodnx 阅读(45) 评论(0) 推荐(0)
摘要:代码1:剪枝,非打表 #include <bits/stdc++.h> using namespace std; int l, n; const int N = 5; int arr[N * N]; int H[N], L[N]; int dfs(int x) { if(x >= n * n) { 阅读全文
posted @ 2024-09-03 11:08 Frodnx 阅读(134) 评论(0) 推荐(0)
摘要:#include <bits/stdc++.h> using namespace std; string s; bool is_hui(int x, int y) { while(x < y) { if(s[x] != s[y]) return false; ++ x, -- y; } return 阅读全文
posted @ 2024-09-02 15:18 Frodnx 阅读(21) 评论(0) 推荐(0)