上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 36 下一页
摘要: 中文题面 中文题解 A. Koxia and Whiteboards 因为必须要对$a_i$做替换,那么把$a_i$中最小的替换掉是最优的 #include<bits/stdc++.h> #define int long long using namespace std; int read(){ i 阅读全文
posted @ 2023-01-08 15:11 PHarr 阅读(26) 评论(0) 推荐(0) 编辑
摘要: A.小杜要迟到了! #include <bits/stdc++.h> #define int long long using namespace std; int32_t main(){ int n , k , a , b , r1 , r2; cin >> n >> k >> a >> b; n 阅读全文
posted @ 2023-01-08 15:09 PHarr 阅读(37) 评论(0) 推荐(0) 编辑
摘要: G. The Witchwood 签到 #include <bits/stdc++.h> #define int long long using namespace std; int read(){ int x = 0 , ch = getchar(); while( ch < '0' || ch 阅读全文
posted @ 2023-01-08 15:06 PHarr 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 马尼拉区域赛题目出得还是不错的,只是感觉大多数参赛队伍的水平不太行,我们这样的队伍居然能苟到铜牌 A. An Easy Calculus Problem 签到 #include <bits/stdc++.h> #define int long long using namespace std; co 阅读全文
posted @ 2023-01-08 15:04 PHarr 阅读(118) 评论(0) 推荐(0) 编辑
摘要: A. Cowardly Rooks 在$n\times n$的棋盘中有 m 个车,问是否可以在移动任意一个棋子一步后是的m个车不能相互攻击 如果m>n无论如何都会冲突 首先要统计冲突的数量 如果没有冲突的话,如果n==m则移动后一定会导致冲突,反之一定可以 如果只有一个冲突,就一定可以把冲突解决 如 阅读全文
posted @ 2023-01-08 15:01 PHarr 阅读(15) 评论(0) 推荐(0) 编辑
摘要: Day 1 One Bamboo Contest Round #10 Day 2 One Bamboo Contest Round #11(Clone from 2022 ICPC Manila) Day 3 CF580C 一棵以1为根的树,树上有些点是红的。一个叶子是合法的当且仅当从根到它的路径上 阅读全文
posted @ 2023-01-02 14:34 PHarr 阅读(92) 评论(0) 推荐(0) 编辑
摘要: # **6-1 二叉树的遍历** 就是简单的遍历 ```cpp void InorderTraversal( BinTree BT ){ if( BT == NULL ) return; if( BT->Left != NULL ) InorderTraversal( BT->Left ); pri 阅读全文
posted @ 2022-11-26 17:25 PHarr 阅读(54) 评论(0) 推荐(0) 编辑
摘要: A. Medium Number #include<bits/stdc++.h> using namespace std; int read(){ int x = 0 , f = 1 , ch = getchar(); while( (ch < '0' || ch > '9') && ch != ' 阅读全文
posted @ 2022-11-22 15:28 PHarr 阅读(121) 评论(0) 推荐(0) 编辑
摘要: # 游乐园 因为套票更加便宜,根据贪心应该尽可能的选择套票。 #include<bits/stdc++.h> using namespace std; int main(){ int x , y; cin >> x >> y; cout << 60 * x + 40 * y - 10 * min( 阅读全文
posted @ 2022-11-14 19:24 PHarr 阅读(49) 评论(0) 推荐(0) 编辑
摘要: A sum 把所有的数放进一个大根堆,然后每次取出最大的两个相加,累加到答案中去,并重新放回到大根堆。 最大两数之和重新放入大根堆依旧是最大的数,所以可以优化成前缀和来做。 #include<bits/stdc++.h> #define int long long using namespace s 阅读全文
posted @ 2022-11-10 10:49 PHarr 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 36 下一页