結果

問題 No.769 UNOシミュレータ
ユーザー ngtkanangtkana
提出日時 2020-02-26 11:27:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 836 bytes
コンパイル時間 1,363 ms
コンパイル使用メモリ 171,380 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 00:45:59
合計ジャッジ時間 2,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using longlong=long long;

int main(){
    std::cin.tie(nullptr);std::cin.sync_with_stdio(false);
    int n,q;std::cin>>n>>q;
    std::vector<int>a(n);
    int now=0,draw=0;
    std::string prv="$";
    bool reverse=false;
    auto increment=[&]{
        now=reverse?(now==0?n-1:now-1):(now==n-1?0:now+1);
    };
    for(int i=0;i<q;i++){
        std::string s;std::cin>>s;
        if(prv!=s&&0<draw){
            a.at(now)-=std::exchange(draw,0);
            increment();
        }
        a.at(now)++;
        if(i==q-1)break;
        if(s.front()=='r')reverse^=1;
        if(s.front()=='s')increment();
        if(s.front()=='d'){
            if(s.at(4)=='t')draw+=2;
            if(s.at(4)=='f')draw+=4;
        }
        increment();
        prv=s;
    }
    std::cout<<now+1<<" "<<a.at(now)<<std::endl;
}
0