結果
問題 | No.769 UNOシミュレータ |
ユーザー | Mcpu3 |
提出日時 | 2018-12-23 13:45:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,299 bytes |
コンパイル時間 | 674 ms |
コンパイル使用メモリ | 71,040 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-11-22 08:55:35 |
合計ジャッジ時間 | 2,359 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | WA | - |
testcase_09 | AC | 5 ms
5,248 KB |
testcase_10 | AC | 5 ms
5,248 KB |
testcase_11 | AC | 5 ms
5,248 KB |
testcase_12 | AC | 33 ms
6,528 KB |
testcase_13 | AC | 33 ms
6,400 KB |
testcase_14 | WA | - |
testcase_15 | AC | 63 ms
9,600 KB |
testcase_16 | WA | - |
testcase_17 | AC | 63 ms
9,600 KB |
testcase_18 | WA | - |
testcase_19 | AC | 94 ms
13,056 KB |
testcase_20 | AC | 95 ms
12,928 KB |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,248 KB |
ソースコード
#include <iostream> #include <string> #include <vector> using namespace std; void next(bool isReverse, int N, int &turn) { if (isReverse) { --turn; if (turn < 0) turn += N; } else ++turn; turn %= N; } int main() { bool isReverse = false, draw = true; int N, M, turn = 0, two = 0, four = 0; cin >> N >> M; vector<int> drunkard(N); vector<string> l(M); for (int i = 0; i < M; ++i) cin >> l[i]; for (int i = 0; i < M - 1; ++i) { //cout << turn + 1 << ' ' << isReverse << ' ' << l[i] << ' ' << two << ' ' << four << ' ' << draw << endl; if (/*draw && */two != 0 && l[i - 1] == "drawtwo" && l[i] != "drawtwo") { drunkard[turn] -= two; two = 0; next(isReverse, N, turn); draw = !draw; --i; continue; } if (/*draw && */four != 0 && l[i - 1] == "drawfour" && l[i] != "drawfour") { drunkard[turn] -= four; four = 0; next(isReverse, N, turn); draw = !draw; --i; continue; } draw = true; ++drunkard[turn]; if (l[i] == "drawtwo") two += 2; else if (l[i] == "drawfour") four += 4; else if (l[i] == "reverse") isReverse = !isReverse; else if (l[i] == "skip") { if (isReverse) --turn; else ++turn; } next(isReverse, N, turn); } cout << turn + 1 << ' ' << drunkard[turn] + 1; }