結果

問題 No.1640 簡単な色塗り
ユーザー tailstails
提出日時 2021-08-10 21:51:37
言語 Perl
(5.38.2)
結果
AC  
実行時間 736 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 81,152 KB
最終ジャッジ日時 2024-06-29 17:06:24
合計ジャッジ時間 29,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 639 ms
81,152 KB
testcase_05 AC 631 ms
81,152 KB
testcase_06 AC 3 ms
6,948 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 412 ms
50,176 KB
testcase_11 AC 338 ms
42,240 KB
testcase_12 AC 289 ms
37,248 KB
testcase_13 AC 694 ms
74,496 KB
testcase_14 AC 680 ms
73,984 KB
testcase_15 AC 210 ms
29,056 KB
testcase_16 AC 259 ms
33,664 KB
testcase_17 AC 543 ms
61,056 KB
testcase_18 AC 37 ms
10,624 KB
testcase_19 AC 277 ms
36,992 KB
testcase_20 AC 398 ms
48,512 KB
testcase_21 AC 311 ms
41,088 KB
testcase_22 AC 26 ms
8,960 KB
testcase_23 AC 429 ms
51,968 KB
testcase_24 AC 99 ms
18,432 KB
testcase_25 AC 290 ms
37,632 KB
testcase_26 AC 484 ms
56,576 KB
testcase_27 AC 195 ms
27,776 KB
testcase_28 AC 621 ms
69,120 KB
testcase_29 AC 478 ms
55,936 KB
testcase_30 AC 90 ms
16,640 KB
testcase_31 AC 704 ms
79,232 KB
testcase_32 AC 616 ms
68,352 KB
testcase_33 AC 427 ms
48,768 KB
testcase_34 AC 516 ms
59,008 KB
testcase_35 AC 424 ms
48,896 KB
testcase_36 AC 95 ms
16,640 KB
testcase_37 AC 130 ms
20,480 KB
testcase_38 AC 658 ms
72,960 KB
testcase_39 AC 255 ms
33,664 KB
testcase_40 AC 272 ms
34,304 KB
testcase_41 AC 567 ms
60,416 KB
testcase_42 AC 313 ms
39,296 KB
testcase_43 AC 308 ms
40,448 KB
testcase_44 AC 323 ms
39,552 KB
testcase_45 AC 233 ms
30,848 KB
testcase_46 AC 106 ms
17,664 KB
testcase_47 AC 63 ms
13,184 KB
testcase_48 AC 687 ms
74,240 KB
testcase_49 AC 28 ms
8,832 KB
testcase_50 AC 3 ms
6,944 KB
testcase_51 AC 4 ms
6,944 KB
testcase_52 AC 736 ms
81,024 KB
testcase_53 AC 734 ms
81,152 KB
07_evil_01.txt AC 1,666 ms
159,104 KB
07_evil_02.txt TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

sub muri{
	print"No\n";
	exit;
}

$n=<>;

@evv=map{
	($a,$b)=<>=~/\w+/g;
	push@$a,$_;
	push@$b,$_;
	$a+$b;
}0..$n-1;

@vn=map~~@$_,0..$n;
@q=grep$vn[$_]==1,1..$n;

while(@q){
	$vi=pop@q;
	$vn[$vi]=-1;
	for$ei(grep!$ans[$_],@$vi){
		$vj=$evv[$ei]-$vi;
		$d=--$vn[$vj];
		if($d==0){
			muri;
		}
		$ans[$ei]=$vi;
		if($d==1){
			push@q,$vj;
		}
	}
}

for$vi(1..$n){
	if($vn[$vi]>=0){
		$vo=$vi;
		do{
			$vn[$vi]=-1;
			for$ei(grep!$ans[$_],@$vi){
				$ans[$ei]=$vi;
				$vi=$evv[$ei]-$vi;
				goto hoge;
			}
			muri;
			hoge:;
		}while($vi!=$vo);
	}
}

print $_,$/ for Yes,@ans;
0