摘要:
round 1 范围很小用暴力+贪心,左右枚举,先拿再放。尽量放小的所以需要排下序 include include "map" include "algorithm" include "cmath" include "vector" include "set" include "queue" def 阅读全文
摘要:
include <bits/stdc++.h> using namespace std; void fun(string a, string b) { int t = b.find(a[0]); if (t != 0) fun(a.substr(1, t), b.substr(0, t)); if 阅读全文
摘要:
这一周就是打打比赛,除了日常的训练外,还有自己打的一些牛客,cf的题。 周二天梯 7-7 估值一亿的AI核心代码 这道题写的很痛苦,写了两个小时,导致其他的题都没有写,写的时候就是感觉能写出来,随着写的过程中发现细节越难越难处理,代码越来越长。交了之后居然都错了。。。挺无语的。 include in 阅读全文