結果

問題 No.1292 パタパタ三角形
ユーザー iomiriomir
提出日時 2023-03-29 10:52:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 175,576 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-09-21 04:31:16
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 61 ms
16,128 KB
testcase_13 AC 62 ms
16,128 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 6 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#define all(v) v.begin(),v.end()
using ll = long long;
using ull = unsigned long long;
using vll=vector<ll>;
using P = pair<ll,ll>;

int main(){
    string S;
    cin>>S;
    ll N=S.size();
    char l='b',r='c',u='a';
    ll lr=0,ud=0;
    map<P,ll> mp;
    mp[make_pair(0,0)]++;
    for(int i=0;i<N;i++){
        if(S[i]==l){
            lr--;
            swap(l,r);
            mp[make_pair(lr,ud)]++;
        }else if(S[i]==r){
            lr++;
            swap(l,r);
            mp[make_pair(lr,ud)]++;
        }else{
            if((lr+ud)%2==0)ud--;
            else ud++;
            mp[{lr,ud}]++;
        }
    }
    cout << mp.size() << endl;
}
0