上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页
摘要: 离谱,给的节点中可能还有多余的节点,谜语人 #include <bits/stdc++.h> using namespace std; #define val first #define nex second int main() { ios::sync_with_stdio(false); cin 阅读全文
posted @ 2022-03-21 11:11 Xxaj5 阅读(23) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<tuple<string, int, int>> all; for (int i = 0; i < n; i++) { string 阅读全文
posted @ 2022-03-19 17:37 Xxaj5 阅读(37) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; using ll = long long; const int N = 1e5 + 10; vector<int> G[N]; int main() { int n; double h, r; cin >> 阅读全文
posted @ 2022-03-19 15:02 Xxaj5 阅读(21) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; using ll = long long; int main() { int n; cin >> n; set<string> S; for (int i = 0; i < n; i++) { string 阅读全文
posted @ 2022-03-19 13:50 Xxaj5 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; #define e first #define c second constexpr double eps = 1e-8; int main() { int n; cin >> n; map<int, dou 阅读全文
posted @ 2022-03-19 13:36 Xxaj5 阅读(36) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> a(n + 1); for (int i = 1; i <= n; i++) { cin >> a[i]; } sort(a 阅读全文
posted @ 2022-03-18 19:57 Xxaj5 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 要记得他父母也有性别 #include <bits/stdc++.h> using namespace std; constexpr int N = 1e5 + 10; vector<int> g[N]; int main() { int n, m; cin >> n; map<int, char> 阅读全文
posted @ 2022-03-18 19:40 Xxaj5 阅读(33) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main() { int n, k, m; cin >> n >> k >> m; vector<double> all; for (int i = 0; i < n; i++) { vector<i 阅读全文
posted @ 2022-03-17 20:52 Xxaj5 阅读(25) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<int> v(n + 1); for (int i = 1; i <= n; i++) { cin >> v[i]; } vector 阅读全文
posted @ 2022-03-17 20:42 Xxaj5 阅读(56) 评论(0) 推荐(0) 编辑
摘要: #include <bits/stdc++.h> using namespace std; constexpr int N = 510; vector<int> g[N]; int main() { int n, m; cin >> n >> m; for (int i = 0; i < m; i+ 阅读全文
posted @ 2022-03-17 19:47 Xxaj5 阅读(30) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 30 下一页