結果

問題 No.583 鉄道同好会
ユーザー tailstails
提出日時 2017-10-27 23:06:15
言語 Perl
(5.38.2)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-05-01 17:23:50
合計ジャッジ時間 4,139 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
5,760 KB
testcase_01 AC 8 ms
5,888 KB
testcase_02 AC 7 ms
5,888 KB
testcase_03 AC 8 ms
5,888 KB
testcase_04 AC 8 ms
5,888 KB
testcase_05 AC 7 ms
5,888 KB
testcase_06 AC 8 ms
5,888 KB
testcase_07 AC 8 ms
5,888 KB
testcase_08 AC 8 ms
5,888 KB
testcase_09 AC 8 ms
5,888 KB
testcase_10 AC 10 ms
6,016 KB
testcase_11 AC 166 ms
16,896 KB
testcase_12 AC 229 ms
21,248 KB
testcase_13 AC 230 ms
21,120 KB
testcase_14 AC 230 ms
21,248 KB
testcase_15 AC 294 ms
25,728 KB
testcase_16 AC 552 ms
43,776 KB
testcase_17 AC 666 ms
51,840 KB
testcase_18 AC 741 ms
52,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::m" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$m)=glob<>;
@s=map[glob],<>;

for(@s){
	++$d[$a=$_->[0]];
	++$d[$b=$_->[1]];
	vec($e[$a],$b,1)=1;
	vec($e[$b],$a,1)=1;
	vec($h,$a,1)=1;
	vec($h,$b,1)=1;
}
for(0..$n-1){
	$c+=$d[$_]%2;
}
if($c>2){
	print"NO";
	exit;
}

sub f{
	my($a)=@_;
	if(!vec($g,$a,1)){
		vec($g,$a,1)=1;
		for(0..$n-1){
			if(vec($e[$a],$_,1)){
				f($_);
			}
		}
	}
}

f($s[0][0]);
if($g ne $h){
	print"NO";
	exit;
}
print"YES";
0