結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー tatt61880tatt61880
提出日時 2021-03-18 22:22:05
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 872 bytes
コンパイル時間 2,576 ms
コンパイル使用メモリ 149,740 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-09-16 11:53:19
合計ジャッジ時間 21,938 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 392 ms
21,504 KB
testcase_19 AC 364 ms
20,864 KB
testcase_20 AC 184 ms
13,568 KB
testcase_21 AC 27 ms
5,376 KB
testcase_22 AC 211 ms
14,464 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 278 ms
17,920 KB
testcase_25 AC 210 ms
13,952 KB
testcase_26 AC 67 ms
7,296 KB
testcase_27 AC 20 ms
5,376 KB
testcase_28 AC 397 ms
22,400 KB
testcase_29 AC 392 ms
22,400 KB
testcase_30 AC 380 ms
22,528 KB
testcase_31 AC 382 ms
22,528 KB
testcase_32 AC 384 ms
22,528 KB
testcase_33 AC 390 ms
22,528 KB
testcase_34 AC 383 ms
22,528 KB
testcase_35 AC 398 ms
22,528 KB
testcase_36 AC 375 ms
22,400 KB
testcase_37 AC 388 ms
22,528 KB
testcase_38 AC 385 ms
22,400 KB
testcase_39 AC 423 ms
22,400 KB
testcase_40 AC 394 ms
22,528 KB
testcase_41 AC 407 ms
22,528 KB
testcase_42 AC 410 ms
22,528 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 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
		if(me.a < (t $ C).a)
			ret - 1
		elif(me.a > (t $ C).a)
			ret 1
		end if
		ret 0
	end func
end class
0