結果

問題 No.769 UNOシミュレータ
ユーザー greentea011greentea011
提出日時 2019-03-14 11:33:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,521 bytes
コンパイル時間 1,071 ms
コンパイル使用メモリ 86,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 00:32:33
合計ジャッジ時間 2,375 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 28 ms
6,940 KB
testcase_13 AC 27 ms
6,940 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 52 ms
6,944 KB
testcase_16 AC 54 ms
6,944 KB
testcase_17 AC 52 ms
6,940 KB
testcase_18 AC 78 ms
6,944 KB
testcase_19 AC 82 ms
6,940 KB
testcase_20 AC 80 ms
6,944 KB
testcase_21 AC 77 ms
6,940 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <map>
#include <functional>
#include <stdio.h>

struct uno {
    int n;
    int *p;
    int now;
    int d2cnt;
    int d4cnt;
    int rvflg;

    void init(int player) {
        n = player;
        p = new int[n];
        for (int i=0;i<n;i++) p[i]=0;
        now=0;
        d2cnt=0;
        d4cnt=0;
        rvflg=0;
    };
    void next() {
        now = (rvflg==0)?((now+1)%n):((now+n-1)%n);
    };
    void f(const std::string& type) {
        static std::map<std::string, std::function<void ()>> table = {
            { "number",   [this](){p[now]++;} },
            { "drawtwo",  [this](){p[now]++;d2cnt+=2;} },
            { "drawfour", [this](){p[now]++;d4cnt+=4;} },
            { "skip",     [this](){p[now]++;next();} },
            { "reverse",  [this](){p[now]++;rvflg=(rvflg+1)%2;} },
        };

        if ((d2cnt!=0)&&(type!="drawtwo")) {
            p[now]-=d2cnt;
            d2cnt=0;
            next();
        }
        if ((d4cnt!=0)&&(type!="drawfour")) {
            p[now]-=d4cnt;
            d4cnt=0;
            next();
        }
        table[type]();
    };
    int getWinner() {return now;};
    int getCard(int player) {return p[player];};
};

int main() {
    int n,m;
    scanf("%d %d", &n, &m);
    struct uno Uno;
    Uno.init(n);
    for (int i=0;i<m;i++) {
        std::string s;
        std::cin >> s;
        Uno.f(s);
        if (i!=(m-1)) Uno.next();
    }
    printf("%d %d\n", Uno.getWinner()+1, Uno.getCard(Uno.getWinner()));
}
0