結果

問題 No.433 ICPC国内予選の選抜ルールがこんな感じだったらうれしい
ユーザー tailstails
提出日時 2016-10-14 23:57:44
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,007 ms / 4,000 ms
コード長 436 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 40,064 KB
最終ジャッジ日時 2024-11-22 07:47:48
合計ジャッジ時間 27,552 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 973 ms
39,936 KB
testcase_01 AC 961 ms
40,064 KB
testcase_02 AC 828 ms
36,224 KB
testcase_03 AC 1,006 ms
33,024 KB
testcase_04 AC 1,007 ms
32,256 KB
testcase_05 AC 854 ms
37,120 KB
testcase_06 AC 999 ms
37,760 KB
testcase_07 AC 791 ms
39,296 KB
testcase_08 AC 859 ms
33,664 KB
testcase_09 AC 786 ms
25,984 KB
testcase_10 AC 689 ms
24,832 KB
testcase_11 AC 677 ms
24,576 KB
testcase_12 AC 671 ms
24,448 KB
testcase_13 AC 618 ms
24,832 KB
testcase_14 AC 620 ms
24,960 KB
testcase_15 AC 598 ms
24,576 KB
testcase_16 AC 651 ms
24,320 KB
testcase_17 AC 645 ms
24,832 KB
testcase_18 AC 643 ms
24,576 KB
testcase_19 AC 602 ms
24,704 KB
testcase_20 AC 618 ms
24,448 KB
testcase_21 AC 603 ms
24,832 KB
testcase_22 AC 627 ms
24,704 KB
testcase_23 AC 612 ms
24,832 KB
testcase_24 AC 601 ms
24,960 KB
testcase_25 AC 625 ms
24,832 KB
testcase_26 AC 600 ms
24,576 KB
testcase_27 AC 622 ms
24,320 KB
testcase_28 AC 591 ms
24,960 KB
testcase_29 AC 616 ms
24,192 KB
testcase_30 AC 8 ms
6,016 KB
testcase_31 AC 8 ms
5,888 KB
testcase_32 AC 715 ms
24,704 KB
testcase_33 AC 659 ms
24,576 KB
testcase_34 AC 767 ms
27,648 KB
testcase_35 AC 8 ms
5,888 KB
testcase_36 AC 8 ms
5,888 KB
testcase_37 AC 8 ms
5,888 KB
testcase_38 AC 8 ms
5,888 KB
testcase_39 AC 14 ms
6,016 KB
testcase_40 AC 15 ms
6,272 KB
testcase_41 AC 67 ms
7,808 KB
testcase_42 AC 66 ms
7,808 KB
testcase_43 AC 67 ms
7,808 KB
testcase_44 AC 66 ms
7,936 KB
testcase_45 AC 17 ms
6,016 KB
testcase_46 AC 101 ms
7,808 KB
testcase_47 AC 80 ms
7,680 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 1.
Main.pl syntax OK

ソースコード

diff #

($n,$k)=glob<>;
for(<>){
	($s,$p,$u)=glob;
	push@{$a[$s]{$u}//=[]},$p*2e5+$i;
	++$i;
}
for(reverse@a){
	for$u(keys%$_){
		@{$_->{$u}}=sort{$b<=>$a}@{$_->{$u}};
	}
	$m=0;
	while(1){
		$w=0;
		for$u(keys%$_){
			if(@{$_->{$u}}){
				$w=1;
				if($v{$u}<$m){
					push@b,pop@{$_->{$u}};
					++$v{$u};
				}
			}
		}
		last if !$w;
		++$m,redo if !@b;
		@b=sort{$b<=>$a}@b;
		while(@b){
			print pop(@b)%2e5,$/;
			exit if !--$k;
		}
	}
}
0