摘要: 传送门 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int maxn = 2e5+5; 4 int main() { 5 int n, x, y; cin >> n >> x >> y; 6 string s; cin >> s 阅读全文
posted @ 2019-11-20 19:26 麻辣猪仔 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 传送门 1 #include <bits/stdc++.h> 2 using namespace std; 3 set<int> se; 4 int f(int x) { 5 x += 1; 6 while (x % 10 == 0 && x) x /= 10; 7 return x; 8 } 9 阅读全文
posted @ 2019-11-20 17:05 麻辣猪仔 阅读(141) 评论(0) 推荐(0) 编辑