結果

問題 No.1373 Directed Operations
ユーザー tatt61880tatt61880
提出日時 2021-02-28 21:00:33
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 149,324 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-16 11:44:32
合計ジャッジ時間 6,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 141 ms
12,288 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 177 ms
12,288 KB
testcase_07 AC 6 ms
5,376 KB
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 122 ms
12,160 KB
testcase_10 AC 96 ms
10,880 KB
testcase_11 AC 24 ms
5,632 KB
testcase_12 AC 97 ms
10,496 KB
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 184 ms
12,160 KB
testcase_15 AC 155 ms
11,264 KB
testcase_16 AC 181 ms
12,160 KB
testcase_17 AC 118 ms
10,112 KB
testcase_18 AC 63 ms
7,680 KB
testcase_19 AC 68 ms
7,040 KB
testcase_20 AC 95 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var lines: []Line :: #[n - 1]Line
	
	for id(0, n - 2)
		var len: int :: cui@inputInt()
		do lines[id] :: (#Line).init(id, len)
	end for
	do lines.sort()
	
	var ans: []int :: #[n - 1]int
	for i(0, n - 2)
		var id: int :: lines[i].id
		var len: int :: lines[i].len
		var a: int :: i + 2 - len
		if(a < 1)
			do cui@print("NO\n")
			ret
		end if
		do ans[id] :: a
	end for
	do cui@print("YES\n")
	for i(0, n - 2)
		do cui@print("\{ans[i]}\n")
	end for
	
	class Line()
		+var id: int
		+var len: int
		+func init(id: int, len: int): Line
			do me.id :: id
			do me.len :: len
			ret me
		end func
		+*func cmp(t: kuin@Class): int
			ret me.len - (t $ Line).len
		end func
	end class
end func
0