摘要: 一开始贪心思路不对且根本没考虑重复,无脑sort后直接排组玄学了70pts。 #include <iostream> #include <algorithm> using namespace std; int n; int cnt, ans = 0x7fffffff; int a[100010]; 阅读全文
posted @ 2023-10-23 17:22 加固文明幻景 阅读(15) 评论(0) 推荐(0) 编辑
摘要: iterator是通用的遍历容器的方式 通用模板 anySet <a...> as; anySet <a...>::iterator it = as.begin(); for (; it != as.end(); it++) { cout <<(*it);//即迭代器it指向的元素 } 四种迭代器 阅读全文
posted @ 2023-10-23 16:49 加固文明幻景 阅读(129) 评论(0) 推荐(0) 编辑
摘要: P1106删数问题 对2018年的我一次完美的对位单杀 2018 44pts Code #include<cstdio> #include<iostream> #include<algorithm> using std::cin; using std::cout; using std::sort; 阅读全文
posted @ 2023-10-22 22:39 加固文明幻景 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 昨天晚上看了题目没思路。 早上上课回来之后想着就直接根据题目搞一个左脑一个右脑,然后两边分别加时间取最大暴搜,结果T了九个,这是代码。 #include <iostream> using namespace std; int tAns, ans; int s[5], array[30]; bool 阅读全文
posted @ 2023-10-10 12:42 加固文明幻景 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 对比例的计算在整形中的应用不熟练。 要算A:B = X : Y; 最好的方法不是 B = A * (Y/X); 而是 B = A * Y / X; 阅读全文
posted @ 2023-10-07 19:31 加固文明幻景 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 康复训练的第一道搜索 调了一个小时,这是原来的代码 #include <iostream> #include <cstring> using namespace std; int n; int ans[500][11], count; void dfs(int step, int sum) { if 阅读全文
posted @ 2023-10-07 18:06 加固文明幻景 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 传址调用 void swap(int* p1, int* p2) { int temp = *p1; *p1 = *p2; *p2 = temp; } int main() { swap(&x, &y); } 引用调用 void swap(int& p1, int& p2) { int temp = 阅读全文
posted @ 2023-10-06 10:00 加固文明幻景 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 做不出来根本原因在于对快速排序理解不彻底 快排代码 int randint(int l, int r){ // 生成在 [l, r] 之间的随机数 return rand() % (r - l + 1) + l; } void qsort(int l, int r){ // l 为左端点,r 为右端 阅读全文
posted @ 2023-10-06 09:55 加固文明幻景 阅读(9) 评论(0) 推荐(0) 编辑
摘要: P1591 阶乘数码 只能説對高精度的理解還不夠,除了打板子但凡變成高精乘單精就懵逼了。 摘了一篇題解的代碼來理解 #include <bits/stdc++.h> using namespace std; int c[100000]; int main() { int t,n,a; cin>>t; 阅读全文
posted @ 2023-09-27 17:53 加固文明幻景 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 其實確實就一道模擬題,一開始覺得是搜索,後面看了一段時間題目知道了模擬,就開始瘋狂模擬,代碼不斷地優化可讀性和邏輯,感覺很不錯,但是輸出一直是零。 這是當時代碼 #include<iostream> #include<algorithm> using namespace std; struct mo 阅读全文
posted @ 2023-09-26 17:37 加固文明幻景 阅读(4) 评论(0) 推荐(0) 编辑