結果
問題 | No.996 Phnom Penh |
ユーザー | otamay6 |
提出日時 | 2020-02-21 23:02:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,395 bytes |
コンパイル時間 | 2,212 ms |
コンパイル使用メモリ | 169,048 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 23:33:49 |
合計ジャッジ時間 | 2,747 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include<bits/stdc++.h> #define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i) #define rep(i,a,b) for(int i=int(a);i<int(b);++i) #define All(x) (x).begin(),(x).end() #define rAll(x) (x).rbegin(),(x).rend() using namespace std; using ll = long long; int main(){ string s;cin>>s; int ans=0; while(1){ string t; int tmp=ans; REP(i,s.size()){ if(i+3<s.size()&&s.substr(i,4)=="penh"){ t.push_back('B'); tmp=ans+1; i+=3; } if(i+2<s.size()&&s.substr(i,3)=="phn"){ t.push_back('B'); i+=2; } else if(i+1<s.size()&&s.substr(i,2)=="om"){ t.push_back('A'); i++; } else t.push_back(s[i]); } int cnt=0; bool B=false; s.clear(); for(int i=(int)t.size()-1;i>=0;--i){ if(t[i]=='A'){ cnt++; } else if(t[i]=='B'){ tmp+=2*cnt; cnt=0; B=true; } else if(t[i]=='h') B=true; else{ cnt=0; s.push_back(t[i]); } } reverse(All(s)); if(B) tmp++; if(tmp==ans){ break; } ans=tmp; } cout<<ans<<endl; }