2021年9月8日

1060 爱丁顿数 (25 point(s))

摘要: // 18 points #include <bits/stdc++.h> using namespace std; int main() { int n, days = 0; // key存储距离 val存储距离累积的天数 map<int , int> E; cin >> n; while(n-- 阅读全文

posted @ 2021-09-08 17:46 Atl212 阅读(155) 评论(0) 推荐(0)

1068 万绿丛中一点红 (20 point(s))

摘要: // 16 points #include <bits/stdc++.h> using namespace std; struct Loction{ int i, j; }; int main() { // N行 M列 图像 分辨率 TOL 所求像素点与相邻点的颜色差阈值 int m, n, TOL 阅读全文

posted @ 2021-09-08 07:59 Atl212 阅读(38) 评论(0) 推荐(0)

导航