摘要:
"Codeforces Global Round 1" A 模拟即可 cpp include using namespace std; typedef long long ll; const int maxn(1e6 + 5); int n, m, c[maxn], t[maxn]; ll ans, 阅读全文
摘要:
"传送门" 先处理出每一件衣服最早什么时候洗完,堆+贪心即可 然后同样处理出每件衣服最早什么时候烘干 然后倒序相加取最大值 cpp include using namespace std; typedef long long ll; const int maxn(1e5 + 5); int l, n 阅读全文