結果
問題 | No.2540 同値性判定 |
ユーザー | 👑 p-adic |
提出日時 | 2023-07-29 21:13:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 862 bytes |
コンパイル時間 | 264 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 32,032 KB |
最終ジャッジ日時 | 2024-10-08 08:31:09 |
合計ジャッジ時間 | 8,854 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,824 KB |
testcase_01 | AC | 32 ms
11,008 KB |
testcase_02 | AC | 31 ms
11,008 KB |
testcase_03 | AC | 31 ms
11,008 KB |
testcase_04 | AC | 30 ms
11,008 KB |
testcase_05 | AC | 31 ms
11,136 KB |
testcase_06 | AC | 31 ms
11,136 KB |
testcase_07 | AC | 30 ms
11,008 KB |
testcase_08 | AC | 31 ms
11,136 KB |
testcase_09 | AC | 30 ms
11,008 KB |
testcase_10 | AC | 31 ms
11,008 KB |
testcase_11 | AC | 32 ms
11,008 KB |
testcase_12 | AC | 91 ms
11,136 KB |
testcase_13 | AC | 189 ms
11,520 KB |
testcase_14 | AC | 1,294 ms
14,464 KB |
testcase_15 | AC | 1,649 ms
24,064 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
evil_00.txt | -- | - |
evil_01.txt | -- | - |
evil_02.txt | -- | - |
evil_03.txt | -- | - |
evil_04.txt | -- | - |
evil_05.txt | -- | - |
evil_06.txt | -- | - |
evil_07.txt | -- | - |
evil_08.txt | -- | - |
evil_09.txt | -- | - |
evil_10.txt | -- | - |
evil_11.txt | -- | - |
ソースコード
I,R=input,range def J(): return map(int,I().split()) def O(b,a): return [a,~a][b[2]]&b[0]|b[1] def C(f,b): return [~b[1]&f[0],~b[0]&~b[1]&f[0]|f[1],1-b[2]]if f[2]else[b[0]&f[0],b[1]&f[0]|f[1],b[2]] N,Q=J() P=[sum(((d>>i)&1)<<d for d in R(64))for i in R(6)] M=1000 A=[P[i%6]for i in R(N)] B=[[-1,0,0]for j in R(M)] E="land" for q in R(Q): h,o,l,r,x,y=I().split() h,l,r,x,y=map(int,[h,l,r,x,y]) a,r=O(B[h//M],A[h]),r+1 f=[[-1,a][o==E],[a,0][o==E],o<E] m=(l+M-1)//M n=max(m,r//M) u=min(m*M,r) if m: for i in R(m*M-M,min(m*M,N)):A[i]=O(B[m-1],A[i]) B[m-1]=[-1,0,0] for i in R(l,u):A[i]=O(f,A[i]) for j in R(m,n):B[j]=C(f,B[j]) for i in R(n*M,min(n*M+M,N)):A[i]=O(B[n],A[i]) if n*M<N:B[n]=[-1,0,0] for i in R(max(u,n*M),r):A[i]=O(f,A[i]) X=set() s="Yes" for i in R(x,y+1): a=O(B[i//M],A[i]) if a in X:break X.add(a) else:s="No" print(s)