結果
問題 | No.2697 Range LIS Query |
ユーザー | sasa8uyauya |
提出日時 | 2024-10-02 14:57:02 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,110 bytes |
コンパイル時間 | 149 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 94,308 KB |
最終ジャッジ日時 | 2024-10-02 14:57:46 |
合計ジャッジ時間 | 39,276 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 57 ms
76,416 KB |
testcase_01 | AC | 51 ms
74,368 KB |
testcase_02 | AC | 69 ms
76,800 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
ソースコード
n=int(input()) a=list(map(int,input().split())) B=317 st1=[(0,0,0,0)]*B*B st2=[(0,0,0,0)]*B lt=[0]*B def op(x,y): x1,x2,x3,x4=x y1,y2,y3,y4=y z1=x1+y1 z2=max(x1,x2)+y2 z3=max(x1,x2,x3)+y3 z4=max(x1,x2,x3,x4)+y4 z=(z1,z2,z3,z4) return z def mp(f,x): match f: case 0: return x case 1: return (1,0,0,0) case 2: return (0,1,0,0) case 3: return (0,0,1,0) case 4: return (0,0,0,1) return def cp(f,g): return g for i in range(n): st1[i]=mp(a[i],st1[i]) for i in range(B): for j in range(i*B,i*B+B): st2[i]=op(st2[i],st1[j]) Q=int(input()) for _ in range(Q): query=list(map(int,input().split())) t=query[0] if t==1: _,l,r=query l-=1 r-=1 yl=l//B yr=r//B for i in range(yl*B,yl*B+B): st1[i]=mp(lt[yl],st1[i]) lt[yl]=0 for i in range(yr*B,yr*B+B): st1[i]=mp(lt[yr],st1[i]) lt[yr]=0 a=(0,0,0,0) if yl==yr: for i in range(l,r+1): a=op(a,st1[i]) else: for i in range(l,yl*B+B): a=op(a,st1[i]) for i in range(yl+1,yr): a=op(a,st2[i]) for i in range(yr*B,r+1): a=op(a,st1[i]) a1,a2,a3,a4=a print(max(a1,a2,a3,a4)) else: _,l,r,x=query l-=1 r-=1 yl=l//B yr=r//B for i in range(yl*B,yl*B+B): st1[i]=mp(lt[yl],st1[i]) lt[yl]=0 for i in range(yr*B,yr*B+B): st1[i]=mp(lt[yr],st1[i]) lt[yr]=0 if yl==yr: for i in range(l,r+1): st1[i]=mp(x,st1[i]) for i in range(yl*B,yl*B+B): st2[yl]=op(st2[yl],st1[i]) else: for i in range(l,yl*B+B): st1[i]=mp(lt[yl],st1[i]) for i in range(yl*B,yl*B+B): st2[yl]=op(st2[yl],st1[i]) for i in range(yl+1,yr): match x: case 1: st2[i]=(B,0,0,0) case 2: st2[i]=(0,B,0,0) case 3: st2[i]=(0,0,B,0) case 4: st2[i]=(0,0,0,B) lt[i]=x for i in range(yr*B,r+1): st1[i]=mp(lt[yr],st1[i]) for i in range(yr*B,yr*B+B): st2[yr]=op(st2[yr],st1[i])