摘要: #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) 编辑