結果
| 問題 | No.769 UNOシミュレータ | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2018-12-16 23:13:23 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 84 ms / 2,000 ms | 
| コード長 | 1,055 bytes | 
| コンパイル時間 | 798 ms | 
| コンパイル使用メモリ | 74,528 KB | 
| 最終ジャッジ日時 | 2025-01-06 19:37:36 | 
| ジャッジサーバーID (参考情報) | judge4 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 23 | 
ソースコード
#include <iostream>
#include <vector>
int main()
{
    int N, M;
    std::cin >> N >> M;
    std::vector<std::string> l(M);
    for (int i = 0; i < M; i++) { std::cin >> l[i]; }
    std::vector<int> pay(N, 0);
    int p = 0, t = 0, rot = 1;
    for (; t < M; (p += rot) %= N) {
        if (l[t] == "number") {
            pay[p]++, t++;
        } else if (l[t] == "drawtwo") {
            int cost = 0;
            for (; t < M and l[t] == "drawtwo"; t++, cost += 2, (p += rot) %= N) { pay[p]++; }
            pay[p] -= cost;
        } else if (l[t] == "drawfour") {
            int cost = 0;
            for (; t < M and l[t] == "drawfour"; t++, cost += 4, (p += rot) %= N) { pay[p]++; }
            pay[p] -= cost;
        } else if (l[t] == "skip") {
            pay[p]++, t++, (p += rot) %= N;
        } else {
            pay[p]++, t++, rot = (N - rot);
        }
    }
    p = (l.back().front() == 'd' or l.back().front() == 's' ? (p + 2 * N - 2 * rot) % N : (p + N - rot) % N);
    std::cout << p + 1 << " " << pay[p] << std::endl;
    return 0;
}
            
            
            
        