上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
摘要: 阅读全文
posted @ 2020-06-17 11:48 LightAc 阅读(212) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-06-17 11:46 LightAc 阅读(208) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-06-17 11:45 LightAc 阅读(166) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-06-17 11:44 LightAc 阅读(184) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-06-17 11:43 LightAc 阅读(193) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-06-17 11:41 LightAc 阅读(210) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-06-17 11:39 LightAc 阅读(232) 评论(0) 推荐(0)
摘要: 题目地址:https://codeforces.com/contest/1358 A. #include <bits/stdc++.h> using namespace std; int main () { int t; cin >> t; while(t--) { int n, m; cin >> 阅读全文
posted @ 2020-05-27 08:59 LightAc 阅读(233) 评论(0) 推荐(0)
摘要: #include <bits/stdc++.h> using namespace std; int main () { int a, b; cin >> a >> b; a += b; stack<int> s; bool flag = 0; while(abs(a) > 999) { s.push 阅读全文
posted @ 2020-05-25 16:27 LightAc 阅读(114) 评论(0) 推荐(0)
摘要: class LRUCache { private: int capacity; list<pair<int, int>> cache; unordered_map<int, list<pair<int, int>> :: iterator> map; public: LRUCache(int cap 阅读全文
posted @ 2020-05-25 15:18 LightAc 阅读(149) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 22 下一页
返回顶端