就结果来说,离冠军只是差十几分钟,这点似乎完全可以避免,只要前面H记得删freopen,或者K调快一些 or 少交一发。当然也可以说一堆环境因素,比如机房闷热导致注意力涣散写代码精度不够。但其实就比赛本身,这都不是最关键的,最关键的是三个小时那个时间节点,对于此类比赛的理解不够,在题目没有被开出来的情况下开题过于随意,因为竞争不够强烈所以对于题目的判断是失误的,一直以来跟榜的经验在这场比赛反而出了问题(最后开始写以后又没有再看榜修正策略,可以说基本错完了)。这场比赛9题/10题我觉得才应该是正常发挥,去说那十几分钟的罚时实在是意义不大。毕竟C和M都不是什么非常难的题,M只要有一个人去画画图找找规律可能就看出来了,C则是机时再给点就够(赛后几分钟就调出来了,其实就差一点点)。
A contest date is too late for TOPC if it is not at least 35 days prior to Octobor 21, 2023. Please write a program to determine whether a tentative contest date is too late for TOPC.
{ // Place your snippets for cpp here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: // $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders. Placeholders with the // same ids are connected. // Example: "Print to console":{ "prefix":"codeforces", "body":[ "#include<bits/stdc++.h>", "#define N 200010", "#define ls x<<1", "#define rs x<<1|1", "#define MID ((l+r)>>1)", "#define mkp(a,b) make_pair(a,b)", "// mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count());", "//#define int long long", "//#define P pair<int,int>", "using namespace std;", "int T=1,n,m;", "signed main(){", " scanf(\"%d\",&T);", " while(T--){", " $0", " }", " return 0;", "}" ], "description":"Codeforces output to console" }, "daily use code":{ "prefix":"log", "body":[ "#include<bits/stdc++.h>", "#define N 200010", "#define ls x<<1", "#define rs x<<1|1", "#define MID ((l+r)>>1)", "#define mkp(a,b) make_pair(a,b)", "//#define int long long", "//#define P pair<int,int>", "using namespace std;", "int T=1,n,m;", "signed main(){", " scanf(\"%d\",&n);", " $0", " return 0;", "}" ], "description":"Log output to console", }, }