06 2024 档案
满身潇洒一身轻
摘要:引:不知钟鼓报天明。梦里栩然蝴蝶、一身轻。————苏轼《南歌子》 2024.6.27 晚上考完操作系统有感。 或许放下一些东西,确实是满身潇洒一身轻。保研,自大一以来一直为之全力拼搏的目标,或许到头了(?) 操作系统考试就是按照王道考的,和历年的选择、大题都不太一样。。。有的准备考研复习408的同学
Atcoder Beginner Contest 356
摘要:A - Subsegment Reverse #include <bits/stdc++.h> using namespace std; using i64 = long long; int main() { ios::sync_with_stdio(false), cin.tie(nullptr)
Atcoder Beginner Contest 355
摘要:A - Who Ate the Cake? #include <bits/stdc++.h> using namespace std; using i64 = long long; int main() { ios::sync_with_stdio(false), cin.tie(nullptr);
尺取法及例题、习题大全
摘要:例1、洛谷P1147 正整数数序列自然有序,考虑双指针。 用 代表区间的左右端点 当 小于目标值 时,将右端点右移(j++), 会变大 当 大于目标值 时,将左端点右移(i++),\(\rm