結果

問題 No.769 UNOシミュレータ
ユーザー beetbeet
提出日時 2019-03-15 18:22:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,628 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 207,552 KB
実行使用メモリ 14,204 KB
最終ジャッジ日時 2024-05-02 00:33:29
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 14 ms
6,940 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 26 ms
10,280 KB
testcase_16 AC 27 ms
10,268 KB
testcase_17 AC 26 ms
10,320 KB
testcase_18 AC 37 ms
14,144 KB
testcase_19 AC 37 ms
14,116 KB
testcase_20 AC 37 ms
13,984 KB
testcase_21 AC 39 ms
14,204 KB
testcase_22 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}


struct FastIO{
  FastIO(){
    cin.tie(0);
    ios::sync_with_stdio(0);
  }
}fastio_beet;

//INSERT ABOVE HERE
signed main(){
  Int n,m;
  cin>>n>>m;
  vector<Int> cnt(n,0),draw(n,0);
  Int way=1,idx=0;
  vector<string> vs(m);
  for(Int i=0;i<m;i++) cin>>vs[i];
  
  for(Int i=0;i<m;i++){
    cnt[idx]++;
    if(i+1==m) break;
    string s=vs[i];
    if(s=="number"s){
      idx+=n+way;
      idx%=n;
      continue;
    }
    if(s=="skip"s){
      idx+=(n+way)*2;
      idx%=n;
      continue;
    }
    if(s=="reverse"s){
      way*=-1;
      idx+=n+way;
      idx%=n;
      continue;
    }
    
    cnt[idx]--;
      
    if(s=="drawtwo"){
      Int j=i,flg=0;
      while(j<m&&vs[j]=="drawtwo"s){
        cnt[idx]++;
        if(j+1==m){
          flg=1;
          break;
        }
        idx+=n+way;
        idx%=n;
        j++;
      }      
      if(flg) break;
      draw[idx]+=(j-i)*2;
      idx+=n+way;
      idx%=n;
      
      i=j-1;
      continue;      
    }
    
    if(s=="drawfour"){
      Int j=i,flg=0;
      while(j<m&&vs[j]=="drawfour"s){
        cnt[idx]++;
        if(j+1==m){
          flg=1;
          break;
        }
        idx+=n+way;
        idx%=n;
        j++;
      }      
      if(flg) break;
      draw[idx]+=(j-i)*4;
      idx+=n+way;
      idx%=n;
      
      i=j-1;
      continue;      
    }
  }  
  cout<<idx+1<<" "<<cnt[idx]-draw[idx]<<endl;
  return 0;
}
0