Codeforces Round 668 (Div. 2) 题解
A. Ahahahahahahahaha
略
B. Big Vova
注意到一组数据中 $\text{sum}(n) < 10^3$, $n^2$ [[贪心]]即可。
C. Chocolate Bunny
[[交互题]]
因为数组中两个数一定互不相同,所以对于任意两个数一定有绝对大于或者绝对小于的关系。
任取两个未知的数 $a$ 和 $b$,计算 $a \% b$ 和 $b \% a$的结果,较大的那个结果一定是小数模大数的结果,所以就知道了两个数中较小的那一个。
重复以上过程直到剩一个数,则这个数就是最大的,也就是 $n$。
#include <bits/stdc++.h>
using namespace std;
typ...
Educational Codeforces Round 94 题解
A. String Similarity
构造答案即可。
让第 $i$ 位的字符满足和从左往右第 $i$ 个字符串相似。
即 $ans_i = s_{i + i}$
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
...
《港中深新手村》项目感想
到今天下午学校公众号正式宣发的一刻,这个为期约半年的节目算是终于结束了。照往常来说,发布一个项目之前往往是连续的赶工,这次却提前两天基本完成了任务,虽然今天上午还花了一个小时给游戏加了图标。刚刚策划组的同学又喊我来加漏掉的署名,无奈我只带了 Pixelbook 来图书馆,晚些回宿舍再加罢,现在不如记录一下完成项目的心情。
Codeforces Round 664 (Div. 2) 题解
A
略
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int inf = 0x3f3f3f3f;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int T;
cin >> T;
while (T--) {
int r, g, b, w;
cin >> r >> g >> b >> w;
...
共计 19 篇文章,3 页。