結果
問題 | No.1292 パタパタ三角形 |
ユーザー |
![]() |
提出日時 | 2023-03-29 10:59:45 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 786 bytes |
コンパイル時間 | 1,620 ms |
コンパイル使用メモリ | 173,396 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-09-21 04:36:08 |
合計ジャッジ時間 | 2,641 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 4 WA * 10 |
ソースコード
#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; set<P> st; st.insert(make_pair(0,0)); for(int i=0;i<N;i++){ if(S[i]==l){ lr--; swap(u,r); swap(l,r); st.insert(make_pair(lr,ud)); }else if(S[i]==r){ lr++; swap(l,u); swap(u,r); st.insert(make_pair(lr,ud)); }else{ if((lr+ud)%2==0)ud--; else ud++; st.insert(make_pair(lr,ud)); } } cout << st.size() << endl; }