結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,415 ms
107,916 KB
testcase_01 AC 1,411 ms
86,440 KB
testcase_02 AC 1,412 ms
87,040 KB
testcase_03 AC 1,418 ms
93,920 KB
testcase_04 AC 1,443 ms
108,520 KB
testcase_05 AC 1,441 ms
90,768 KB
testcase_06 AC 1,408 ms
94,920 KB
testcase_07 AC 1,413 ms
96,232 KB
testcase_08 AC 1,421 ms
109,296 KB
testcase_09 AC 1,406 ms
85,672 KB
testcase_10 AC 1,412 ms
89,352 KB
testcase_11 AC 1,413 ms
93,672 KB
testcase_12 AC 1,428 ms
89,524 KB
testcase_13 AC 1,452 ms
108,220 KB
testcase_14 AC 1,422 ms
96,496 KB
testcase_15 AC 1,410 ms
89,960 KB
testcase_16 AC 1,410 ms
87,128 KB
testcase_17 AC 1,413 ms
88,484 KB
testcase_18 AC 1,418 ms
97,424 KB
testcase_19 AC 1,425 ms
90,744 KB
testcase_20 AC 1,439 ms
88,880 KB
testcase_21 AC 1,408 ms
87,932 KB
testcase_22 AC 1,413 ms
85,944 KB
testcase_23 AC 1,410 ms
85,508 KB
testcase_24 AC 1,427 ms
90,656 KB
testcase_25 AC 1,427 ms
99,540 KB
testcase_26 AC 1,407 ms
96,236 KB
testcase_27 AC 1,415 ms
91,952 KB
testcase_28 AC 1,416 ms
97,208 KB
testcase_29 AC 1,416 ms
97,876 KB
testcase_30 AC 1,438 ms
86,184 KB
testcase_31 AC 1,439 ms
97,164 KB
testcase_32 AC 1,416 ms
88,680 KB
testcase_33 AC 1,418 ms
110,616 KB
testcase_34 AC 1,421 ms
111,172 KB
testcase_35 AC 1,414 ms
96,316 KB
testcase_36 AC 1,416 ms
104,280 KB
testcase_37 AC 1,423 ms
97,912 KB
testcase_38 AC 1,425 ms
89,508 KB
testcase_39 AC 1,437 ms
93,260 KB
testcase_40 AC 1,411 ms
92,020 KB
testcase_41 AC 1,413 ms
86,316 KB
testcase_42 AC 1,416 ms
93,340 KB
testcase_43 AC 1,412 ms
93,792 KB
testcase_44 AC 1,418 ms
100,472 KB
testcase_45 AC 1,414 ms
104,572 KB
testcase_46 AC 1,434 ms
100,028 KB
testcase_47 AC 1,427 ms
91,172 KB
testcase_48 AC 1,416 ms
88,324 KB
testcase_49 AC 1,416 ms
103,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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