首页 > 代码库 > Codeforces 777D Cloud of Hashtags(贪心)
Codeforces 777D Cloud of Hashtags(贪心)
题目链接 Cloud of Hashtags
题目还是比较简单的,直接贪心,但是因为我有两个细节没注意,所以FST了:
1、用了cin读入,但是没有加 std::ios::sync_with_stdio(false); 这条语句;
2、开了太多string。
也算是经验教训吧。
1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 #define rep(i, a, b) for(int i(a); i <= (b); ++i) 6 #define dec(i, a, b) for(int i(a); i >= (b); --i) 7 8 const int N = 500000 + 10; 9 int n; 10 string s[N], c[N]; 11 12 int main(){ 13 14 std::ios::sync_with_stdio(false); 15 cin >> n; 16 rep(i, 1, n) cin >> s[i]; 17 c[n] = s[n]; 18 dec(i, n - 1, 1){ 19 int j = i + 1; 20 if (s[i] <= c[j]){ 21 c[i] = s[i]; 22 continue; 23 } 24 int l1 = s[i].length(), l2 = c[j].length(); 25 int p; 26 rep(k, 1, l1 - 1){ 27 if (s[i][k] > c[j][k] || k > l2 - 1){ 28 p = k - 1; 29 break; 30 } 31 } 32 33 c[i] = ""; 34 rep(k, 0, p) c[i] = c[i] + s[i][k]; 35 } 36 37 rep(i, 1, n) cout << c[i] << endl; 38 39 40 return 0; 41 42 }
Codeforces 777D Cloud of Hashtags(贪心)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。