結果

問題 No.769 UNOシミュレータ
ユーザー tactac
提出日時 2019-07-14 00:35:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,740 bytes
コンパイル時間 1,727 ms
コンパイル使用メモリ 168,640 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 00:37:18
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 31 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 31 ms
5,376 KB
testcase_15 AC 59 ms
5,376 KB
testcase_16 AC 60 ms
5,376 KB
testcase_17 AC 62 ms
5,376 KB
testcase_18 AC 88 ms
5,376 KB
testcase_19 AC 89 ms
5,376 KB
testcase_20 AC 87 ms
5,376 KB
testcase_21 AC 88 ms
5,376 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define pii pair<int, int>
#define eb emplace_back
#define all(v) v.begin(), v.end()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define rep3(i, l, n) for (int i = l; i < n; ++i)
#define chmax(a, b) a = max(a, b)
#define chmin(a, b) a = min(a, b)
#define out(a) cout << a << endl
#define SZ(v) (int)v.size()
#define inf (int)(1e9+7)


//skip -> 2回カウンタ回す
//two, four -> 連続の後の人skip(sample3で修正するけど)

int c = 1;
int rev, t, f;
int n, m;
int acc = 0;
void counter() {
    if (rev) {
        c--;
        if (c == 0) c = n;
    } else {
        c++;
        if (c == n + 1) c = 1;
    }
}
int main() {
    cin >> n >> m;
    
    vector<int> v(n + 1);
    
    rep(i, m) {
        
        string s; cin >> s;
        
        if ((t && s != "drawtwo") || (f && s != "drawfour")) {
            t = 0; f = 0;
            v[c] -= acc;
            //out(s << " " << c << " " << v[c]);
            acc = 0;
            
            counter();
            
        }
        v[c] += 1;// out(s << " " << c << " " << v[c]);
        if (s == "drawfour") {
            t = 0;
            f = 1;
            acc += 4;
        }
        else if (s == "drawtwo") {
            f = 0;
            t = 1;
            acc += 2;
        } else {
            
            
            if (s == "reverse") {
                rev ^= 1;
            }
            
            
            if (s == "skip" || t || f) {
                counter();
            }
        }
        
        
        if (i == m - 1) {
            cout << c << " " << v[c] << endl;
            break;
        }
        
        counter();
    }
}
0