結果

問題 No.996 Phnom Penh
ユーザー otamay6otamay6
提出日時 2020-02-21 23:11:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,526 bytes
コンパイル時間 1,833 ms
コンパイル使用メモリ 167,892 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-17 09:13:58
合計ジャッジ時間 2,544 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 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,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
        bool flag1=false,flag2=false;
        REP(i,s.size()){
            if(i+3<s.size()&&s.substr(i,4)=="penh"){
                t.push_back('B');
                flag1=true;
                i+=3;
            }
            if(i+2<s.size()&&s.substr(i,3)=="phn"){
                t.push_back('B');
                flag2=true;
                i+=2;
            }
            else if(i+1<s.size()&&s.substr(i,2)=="om"){
                t.push_back('A');
                i++;
            }
            else{
                t.push_back(s[i]);
            }
        }
        if(flag1&&!flag2) tmp++;
        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;
}
0