結果

問題 No.769 UNOシミュレータ
ユーザー aaaaaaiuaaaaaaiu
提出日時 2019-08-01 12:21:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,536 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 200,824 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 00:39:22
合計ジャッジ時間 3,294 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

int main() {
    int n,m;
    cin>>n>>m;
    int cnt[n] {};
    int drawn[n] {};
    int turn = 0;
    int dir = 1;
    bool drawtwo = false;
    bool drawfour = false;
    int nextdraw = 0;
    for (int i = 0; i < m; i++) {
        string s;
        cin >> s;
        if (drawtwo) {
            if (s == "drawtwo") {
                cnt[turn]++;
                turn = (turn + dir + n) % n;
                nextdraw += 2;
                continue;
            } else {
                drawn[turn] += nextdraw;
                turn = (turn + dir + n) % n;
                drawtwo = false;
                nextdraw = 0;
            }
        } else if (drawfour) {
            if (s == "drawfour") {
                cnt[turn]++;
                turn = (turn + dir + n) % n;
                nextdraw += 4;
                continue;
            } else {
                drawn[turn] += nextdraw;
                turn = (turn + dir + n) % n;
                drawfour = false;
            }
        }
        cnt[turn]++;
        if (s == "drawtwo") {
            drawtwo = true;
            nextdraw = 2;
        } else if (s ==  "drawfour") {
            drawfour = true;
            nextdraw = 4;
        } else if (s == "reverse") dir = -dir;
        else if (s == "skip") turn = (turn + dir + n) % n;
        turn = (turn + dir + n) % n;
    }
    int winner = (turn - dir + n) % n;
    cout << winner + 1 << ' ' << cnt[winner] - drawn[winner] << endl;
    return 0;
}
0