結果

問題 No.5001 排他的論理和でランニング
ユーザー 👑 KazunKazun
提出日時 2020-07-10 17:22:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,498 ms / 1,500 ms
コード長 849 bytes
コンパイル時間 248 ms
実行使用メモリ 112,416 KB
スコア 51,380,168
最終ジャッジ日時 2020-07-10 17:23:56
ジャッジサーバーID
(参考情報)
judge6 / judge7
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,451 ms
107,452 KB
testcase_01 AC 1,443 ms
86,464 KB
testcase_02 AC 1,462 ms
86,920 KB
testcase_03 AC 1,467 ms
94,852 KB
testcase_04 AC 1,457 ms
109,380 KB
testcase_05 AC 1,445 ms
90,776 KB
testcase_06 AC 1,445 ms
94,808 KB
testcase_07 AC 1,444 ms
96,252 KB
testcase_08 AC 1,498 ms
109,452 KB
testcase_09 AC 1,448 ms
85,588 KB
testcase_10 AC 1,444 ms
89,376 KB
testcase_11 AC 1,440 ms
93,592 KB
testcase_12 AC 1,440 ms
89,516 KB
testcase_13 AC 1,456 ms
106,460 KB
testcase_14 AC 1,478 ms
96,972 KB
testcase_15 AC 1,467 ms
89,960 KB
testcase_16 AC 1,464 ms
86,760 KB
testcase_17 AC 1,446 ms
88,092 KB
testcase_18 AC 1,453 ms
97,628 KB
testcase_19 AC 1,446 ms
90,760 KB
testcase_20 AC 1,476 ms
88,828 KB
testcase_21 AC 1,450 ms
87,992 KB
testcase_22 AC 1,448 ms
86,120 KB
testcase_23 AC 1,444 ms
85,656 KB
testcase_24 AC 1,465 ms
90,644 KB
testcase_25 AC 1,456 ms
99,576 KB
testcase_26 AC 1,450 ms
96,252 KB
testcase_27 AC 1,447 ms
91,956 KB
testcase_28 AC 1,475 ms
96,388 KB
testcase_29 AC 1,456 ms
97,888 KB
testcase_30 AC 1,451 ms
86,236 KB
testcase_31 AC 1,451 ms
97,388 KB
testcase_32 AC 1,451 ms
87,872 KB
testcase_33 AC 1,456 ms
111,048 KB
testcase_34 AC 1,461 ms
112,416 KB
testcase_35 AC 1,454 ms
96,084 KB
testcase_36 AC 1,457 ms
104,292 KB
testcase_37 AC 1,468 ms
97,272 KB
testcase_38 AC 1,460 ms
87,212 KB
testcase_39 AC 1,449 ms
93,428 KB
testcase_40 AC 1,453 ms
92,016 KB
testcase_41 AC 1,444 ms
86,660 KB
testcase_42 AC 1,449 ms
93,396 KB
testcase_43 AC 1,439 ms
93,776 KB
testcase_44 AC 1,449 ms
99,968 KB
testcase_45 AC 1,475 ms
0 KB
testcase_46 AC 1,463 ms
100,724 KB
testcase_47 AC 1,440 ms
91,072 KB
testcase_48 AC 1,445 ms
88,592 KB
testcase_49 AC 1,451 ms
106,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import sample,randint,random
from time import time
from math import exp
import sys
#-------------------------------------------------
TIME_LIMIT=1.070
ALPHA=0.02
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