結果
問題 | No.837 Noelちゃんと星々2 |
ユーザー | titia |
提出日時 | 2019-06-14 22:10:30 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,256 bytes |
コンパイル時間 | 291 ms |
コンパイル使用メモリ | 82,232 KB |
実行使用メモリ | 105,872 KB |
最終ジャッジ日時 | 2024-11-14 06:16:45 |
合計ジャッジ時間 | 4,286 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 38 ms
53,004 KB |
testcase_26 | AC | 39 ms
53,124 KB |
testcase_27 | WA | - |
testcase_28 | AC | 39 ms
52,544 KB |
testcase_29 | AC | 39 ms
53,180 KB |
testcase_30 | AC | 38 ms
53,600 KB |
testcase_31 | AC | 38 ms
53,596 KB |
testcase_32 | AC | 39 ms
52,768 KB |
ソースコード
import sys input = sys.stdin.readline N=int(input()) Y=list(map(int,input().split())) if max(Y)==min(Y): print(1) sys.exit() Y.sort() MIN=1 MAX=N-1 while True: x=(MIN+MAX)//2 y=x+1 B=Y[:x] C=Y[x:] SUM=sum(B) ANS=SUM LEN=len(B) NOW=0 for i in range(LEN): SUM+=(B[i]-NOW)*i+(NOW-B[i])*(LEN-i) ANS=min(ANS,SUM) NOW=B[i] SUM=sum(C) ANS2=SUM LEN=len(C) NOW=0 for i in range(LEN): SUM+=(C[i]-NOW)*i+(NOW-C[i])*(LEN-i) ANS2=min(ANS2,SUM) NOW=C[i] D=Y[:y] E=Y[y:] SUM=sum(D) ANS3=SUM LEN=len(D) NOW=0 for i in range(LEN): SUM+=(D[i]-NOW)*i+(NOW-D[i])*(LEN-i) ANS3=min(ANS3,SUM) NOW=D[i] SUM=sum(E) ANS4=SUM LEN=len(E) NOW=0 for i in range(LEN): SUM+=(E[i]-NOW)*i+(NOW-E[i])*(LEN-i) ANS4=min(ANS4,SUM) NOW=E[i] #print(x,y) #print(ANS,ANS2,ANS3,ANS4) if ANS+ANS2==ANS3+ANS4: print(ANS+ANS2) sys.exit() elif MAX==MIN: print(min(ANS+ANS2,ANS3+ANS4)) sys.exit() elif ANS+ANS2<ANS3+ANS4: MAX=x else: MIN=y