結果
問題 | No.2308 [Cherry 5th Tune B] もしかして、真? |
ユーザー | titia |
提出日時 | 2023-05-19 23:38:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,973 bytes |
コンパイル時間 | 93 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 37,256 KB |
最終ジャッジ日時 | 2024-05-10 06:54:40 |
合計ジャッジ時間 | 4,516 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,384 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
import sys input = sys.stdin.readline def calc(x,op,y): if op=="and": return x & y if op =="or": return x|y if op =="xor": return x^y if op=="imp": return (x^1)|y def update(v,w): # index vにwを加える while v<=LEN: BIT[v]+=w v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4 def getvalue(v): # [1,v]の区間の和を求める if v<0: return 0 ANS=0 while v!=0: ANS+=BIT[v] v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ return ANS T=int(input()) for tests in range(T): N=int(input()) X=input().split() Y=input().split() S=list(map(int,input().split())) for i in range(N): if X[i]=="True": X[i]=1 else: X[i]=0 LIST=[] for i in range(N): LIST.append(X[i]) if i<len(Y): LIST.append(Y[i]) LEFT=[i-1 for i in range(len(LIST))] RIGHT=[i+1 for i in range(len(LIST))] LEN=len(LIST)+3 BIT=[0]*(LEN+1) #print(LIST) for s in S: OK=len(LIST)-1 NG=-1 while OK>NG+1: mid=(OK+NG)//2 if mid//2+1-getvalue(mid)>=s: OK=mid else: NG=mid x=OK #print("!",OK,LIST) a=LIST[x] b=LIST[RIGHT[x]] c=LIST[RIGHT[RIGHT[x]]] ret=calc(a,b,c) #print(a,b,c,x) LIST[x]=ret LIST[RIGHT[x]]=-1 LIST[RIGHT[RIGHT[x]]]=-1 #print(LIST) update(RIGHT[RIGHT[x]],1) RIGHT[x]=RIGHT[RIGHT[RIGHT[x]]] #update(RIGHT[RIGHT[x]],1) #print(LIST) for x in LIST: if x!=-1: if x==1: print("True") else: print("False") break