結果

問題 No.5001 排他的論理和でランニング
ユーザー 👑 KazunKazun
提出日時 2020-07-10 17:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,457 ms / 1,500 ms
コード長 850 bytes
コンパイル時間 246 ms
実行使用メモリ 111,620 KB
スコア 52,428,743
最終ジャッジ日時 2020-07-10 17:29:14
ジャッジサーバーID
(参考情報)
judge7 / judge9
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,422 ms
107,312 KB
testcase_01 AC 1,417 ms
86,440 KB
testcase_02 AC 1,418 ms
87,012 KB
testcase_03 AC 1,414 ms
94,880 KB
testcase_04 AC 1,425 ms
111,620 KB
testcase_05 AC 1,457 ms
90,780 KB
testcase_06 AC 1,431 ms
94,932 KB
testcase_07 AC 1,419 ms
96,268 KB
testcase_08 AC 1,428 ms
109,556 KB
testcase_09 AC 1,413 ms
85,628 KB
testcase_10 AC 1,423 ms
89,920 KB
testcase_11 AC 1,427 ms
94,352 KB
testcase_12 AC 1,415 ms
89,416 KB
testcase_13 AC 1,428 ms
107,928 KB
testcase_14 AC 1,435 ms
96,292 KB
testcase_15 AC 1,441 ms
89,972 KB
testcase_16 AC 1,431 ms
86,828 KB
testcase_17 AC 1,429 ms
88,440 KB
testcase_18 AC 1,424 ms
96,876 KB
testcase_19 AC 1,424 ms
90,748 KB
testcase_20 AC 1,414 ms
88,448 KB
testcase_21 AC 1,422 ms
87,920 KB
testcase_22 AC 1,413 ms
86,060 KB
testcase_23 AC 1,434 ms
85,904 KB
testcase_24 AC 1,434 ms
90,360 KB
testcase_25 AC 1,417 ms
99,600 KB
testcase_26 AC 1,425 ms
96,260 KB
testcase_27 AC 1,420 ms
92,204 KB
testcase_28 AC 1,421 ms
97,676 KB
testcase_29 AC 1,437 ms
98,092 KB
testcase_30 AC 1,435 ms
86,388 KB
testcase_31 AC 1,440 ms
97,168 KB
testcase_32 AC 1,415 ms
87,860 KB
testcase_33 AC 1,429 ms
111,056 KB
testcase_34 AC 1,430 ms
110,608 KB
testcase_35 AC 1,425 ms
96,308 KB
testcase_36 AC 1,425 ms
104,920 KB
testcase_37 AC 1,437 ms
97,120 KB
testcase_38 AC 1,443 ms
87,736 KB
testcase_39 AC 1,419 ms
92,740 KB
testcase_40 AC 1,416 ms
92,368 KB
testcase_41 AC 1,415 ms
86,636 KB
testcase_42 AC 1,437 ms
93,828 KB
testcase_43 AC 1,415 ms
93,812 KB
testcase_44 AC 1,429 ms
97,892 KB
testcase_45 AC 1,417 ms
104,632 KB
testcase_46 AC 1,439 ms
99,708 KB
testcase_47 AC 1,435 ms
91,072 KB
testcase_48 AC 1,418 ms
88,676 KB
testcase_49 AC 1,427 ms
106,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import sample,randint,random
from time import time
from math import exp
import sys
#-------------------------------------------------
TIME_LIMIT=1.060
ALPHA=0.025
ep=10**(-10)
#-------------------------------------------------
def Probability(Delta,Time):
    if Delta>0:
        return 1
    else:
        return exp(Delta/(ALPHA*Time+ep))

T=time()
N,M=map(int,input().split())
A=list(map(int,input().split()))

if N==M:
    print(" ".join(map(str,A)))
    sys.exit()
    
P=set(sample(range(N),M))
X=[]
Y=[]
R=0
for i in range(N):
    if i in P:
        X.append(A[i])
        R^=A[i]
    else:
        Y.append(A[i])

t=time()-T
while t<TIME_LIMIT:
    x=randint(0,M-1)
    y=randint(0,N-M-1)
    S=R^X[x]^Y[y]

    if random()<=Probability(S-R,t):
        R=S
        X[x],Y[y]=Y[y],X[x]

    t=time()-T

print(" ".join(map(str,X)))
0