結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tatt61880tatt61880
提出日時 2021-08-20 04:51:51
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 425 ms / 2,000 ms
コード長 819 bytes
コンパイル時間 7,364 ms
コンパイル使用メモリ 148,460 KB
実行使用メモリ 22,540 KB
最終ジャッジ日時 2024-10-13 06:54:34
合計ジャッジ時間 27,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 363 ms
21,632 KB
testcase_19 AC 332 ms
21,120 KB
testcase_20 AC 174 ms
13,568 KB
testcase_21 AC 25 ms
5,376 KB
testcase_22 AC 196 ms
14,464 KB
testcase_23 AC 18 ms
5,248 KB
testcase_24 AC 288 ms
17,920 KB
testcase_25 AC 187 ms
14,080 KB
testcase_26 AC 63 ms
7,424 KB
testcase_27 AC 19 ms
5,248 KB
testcase_28 AC 390 ms
22,528 KB
testcase_29 AC 373 ms
22,528 KB
testcase_30 AC 372 ms
22,528 KB
testcase_31 AC 366 ms
22,520 KB
testcase_32 AC 371 ms
22,424 KB
testcase_33 AC 368 ms
22,528 KB
testcase_34 AC 367 ms
22,532 KB
testcase_35 AC 384 ms
22,528 KB
testcase_36 AC 368 ms
22,528 KB
testcase_37 AC 362 ms
22,540 KB
testcase_38 AC 379 ms
22,528 KB
testcase_39 AC 365 ms
22,452 KB
testcase_40 AC 425 ms
22,468 KB
testcase_41 AC 388 ms
22,524 KB
testcase_42 AC 369 ms
22,536 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var a: []int :: #[n]int
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	
	var mid: int :: 0
	var b: []int :: #[n]int
	for i(0, n - 1)
		do b[i] :: cui@inputInt()
		do mid :+ b[i]
	end for
	do mid :/ 2
	
	var c: []@C :: #[n]@C
	for i(0, n - 1)
		do c[i] :: (#@C).init(a[i], b[i])
	end for
	do c.sort()
	
	var sum: int :: 0
	var x: int :: 0
	for i(0, n - 1)
		do sum :+ c[i].b
		if(sum >= mid)
			do x :: c[i].a
			break i
		end if
	end for
	
	var ans: int :: 0
	for i(0, n - 1)
		do ans :+ c[i].b * (x - c[i].a).abs()
	end for
	
	do cui@print("\{x} \{ans}\n")
end func

class C()
	+var a: int
	+var b: int
	+func init(a: int, b: int): C
		do me.a :: a
		do me.b :: b
		ret me
	end func
	+*func cmp(t: kuin@Class): int
		ret (me.a - (t $ C).a).sign()
	end func
end class
0