2019年10月15日

摘要: #include <iostream>#include <vector>using namespace std;int main() { int n, m, k, nv, a, b, num; scanf("%d%d", &n, &m); vector<int> v[n]; for (int i = 阅读全文
posted @ 2019-10-15 20:41 等下一班车 阅读(120) 评论(0) 推荐(0)
 
摘要: #include<iostream>#include<string>#include<algorithm>using namespace std;string rev(string s){ reverse(s.begin(), s.end()); return s;}string add(strin 阅读全文
posted @ 2019-10-15 16:29 等下一班车 阅读(225) 评论(0) 推荐(0)