結果

問題 No.769 UNOシミュレータ
ユーザー furafura
提出日時 2020-04-13 04:00:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 911 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 201,840 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 00:48:15
合計ジャッジ時間 3,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 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 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 AC 27 ms
5,376 KB
testcase_13 AC 28 ms
5,376 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 53 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 56 ms
5,376 KB
testcase_18 AC 83 ms
5,376 KB
testcase_19 AC 77 ms
5,376 KB
testcase_20 AC 77 ms
5,376 KB
testcase_21 AC 78 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:63:47: warning: 'id_last' may be used uninitialized [-Wmaybe-uninitialized]
   63 |         printf("%d %d\n",id_last+1,num[id_last]);
      |                                               ^
main.cpp:10:36: note: 'id_last' was declared here
   10 |         int id=0,d=1,last=0,draw=0,id_last;
      |                                    ^~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n,m; scanf("%d%d",&n,&m);

	int id=0,d=1,last=0,draw=0,id_last;
	vector<int> num(n);
	rep(i,m){
		string s; cin>>s;

		id_last=id;

		if(last!=0){
			if(s=="drawtwo" && last==2){
				num[id]++;
				id=(id+d+n)%n;
				draw+=2;
				continue;
			}
			else if(s=="drawfour" && last==4){
				num[id]++;
				id=(id+d+n)%n;
				draw+=4;
				continue;
			}
			else{
				num[id]-=draw;
				id=(id+d+n)%n;
				draw=0;
			}
		}

		id_last=id;

		num[id]++;
		if(s=="number"){
			id=(id+d+n)%n;
			last=0;
		}
		else if(s=="drawtwo"){
			id=(id+d+n)%n;
			last=draw=2;
		}
		else if(s=="drawfour"){
			id=(id+d+n)%n;
			last=draw=4;
		}
		else if(s=="skip"){
			id=(id+2*d+n)%n;
			last=0;
		}
		else{ // reverse
			d*=-1;
			id=(id+d+n)%n;
			last=0;
		}
	}

	printf("%d %d\n",id_last+1,num[id_last]);

	return 0;
}
0