結果

問題 No.769 UNOシミュレータ
ユーザー kikagekikage
提出日時 2020-04-10 21:20:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 1,419 bytes
コンパイル時間 478 ms
コンパイル使用メモリ 61,972 KB
実行使用メモリ 13,008 KB
最終ジャッジ日時 2024-05-02 00:47:34
合計ジャッジ時間 1,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 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,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 5 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 28 ms
6,940 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 29 ms
6,940 KB
testcase_15 AC 54 ms
9,616 KB
testcase_16 AC 55 ms
9,672 KB
testcase_17 AC 54 ms
9,608 KB
testcase_18 AC 81 ms
13,008 KB
testcase_19 AC 79 ms
12,852 KB
testcase_20 AC 82 ms
12,920 KB
testcase_21 AC 86 ms
12,944 KB
testcase_22 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;
int main(){
    int N,M,id=0;

    cin >> N >> M;
    vector<int> card(N,0);
    vector<string> log(M+1);
    for(int l=0;l<M;l++)cin >> log[l];
    
    for(int l=0,dir=1;;l++){

        if(log[l]=="number"){
            card[id]--;
            if(l+1==M)break;
            id=(id+dir+N)%N;
        }
        if(log[l]=="drawtwo"){
            int p=0;
            while(log[l+p]=="drawtwo"){
                card[id]--;
                id=(id+N+dir)%N;
                p++;
            }
            card[id]+=2*p;
            l+=p-1;
            if(l+1==M){
                id=(id-dir+N)%N;
                break;
            }
            id=(id+N+dir)%N;
        }
        if(log[l]=="drawfour"){
            int p=0;
            while(log[l+p]=="drawfour"){
                card[id]--;
                id=(id+N+dir)%N;
                p++;
            }
            card[id]+=4*p;
            l+=p-1;
            if(l+1==M){
                id=(id-dir+N)%N;
                break;
            }
            id=(id+N+dir)%N;
        }
        if(log[l]=="skip"){
            card[id]--;
            if(l+1==M)break;
            id=(id+2*dir+N)%N;
        }
        if(log[l]=="reverse"){
            card[id]--;
            if(l+1==M)break;
            dir=-dir;id=(id+dir+N)%N;
        }
    }
    cout << id+1 << " "<< -card[id] << endl;
    return 0;
}
0