結果
問題 |
No.996 Phnom Penh
|
ユーザー |
|
提出日時 | 2020-02-21 23:54:59 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,325 bytes |
コンパイル時間 | 1,538 ms |
コンパイル使用メモリ | 167,500 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-09 03:03:14 |
合計ジャッジ時間 | 5,629 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 TLE * 1 -- * 3 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int op1(string& s) { int cnt = 0; int state = 0; string res = ""; for (char c : s) { if (c == "phnom"[state]) { state++; if (state == 5) { res += "penh"; state = 0; cnt++; } } else { for (int i = 0; i < state; ++i) { res += "phnom"[i]; } state = (c == 'p'); res += c; } } for (int i = 0; i < state; ++i) { res += "phnom"[i]; } s = res; return cnt; } int op2(string& s) { int cnt = 0; string res = ""; for (char c : s) { if (c == 'h') { cnt = 1; continue; } else if (c == 'e') { cnt = 1; res += 'h'; } else { res += c; } } s = res; return cnt; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string s; cin >> s; int ans = 0; while (true) { int cnt1 = op1(s); ans += cnt1; //cerr << s << endl; int cnt2 = op2(s); ans += cnt2; //cerr << s << endl; if (cnt1 == 0 && cnt2 == 0) break; } cout << ans << "\n"; return 0; }