結果
問題 | No.1558 Derby Live |
ユーザー | tassei903 |
提出日時 | 2021-06-25 23:30:03 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,037 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 82,768 KB |
実行使用メモリ | 106,124 KB |
最終ジャッジ日時 | 2024-06-25 08:55:24 |
合計ジャッジ時間 | 9,386 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | AC | 407 ms
106,124 KB |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | RE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | RE | - |
testcase_27 | WA | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | WA | - |
testcase_33 | AC | 38 ms
54,288 KB |
testcase_34 | AC | 38 ms
52,460 KB |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) sys.setrecursionlimit(10**7) yes = lambda :print("yes");Yes = lambda :print("Yes") no = lambda :print("no");No = lambda :print("No") ####################################################################### class SegmentTree: # 初期化処理 # f : SegmentTreeにのせるモノイド # default : fに対する単位元 def __init__(self, size, f=lambda x,y : x+y, default=0): self.size = 2**(size-1).bit_length() # 簡単のため要素数Nを2冪にする self.default = default self.dat = [default]*(self.size*2) # 要素を単位元で初期化 self.f = f def update(self, i, x): i += self.size self.dat[i] = x while i > 0: i >>= 1 self.dat[i] = self.f(self.dat[i*2], self.dat[i*2+1]) def query(self, l, r): l += self.size r += self.size lres, rres = self.default, self.default while l < r: if l & 1: lres = self.f(lres, self.dat[l]) l += 1 if r & 1: r -= 1 rres = self.f(self.dat[r], rres) # モノイドでは可換律は保証されていないので演算の方向に注意 l >>= 1 r >>= 1 #print(lres,rres) res = self.f(lres, rres) return res def f(x,y): d = [-1]*n for i in range(n): d[i] = y[x[i]] return d def g(x): r = [-1]*n for i in range(n): r[x[i]]=i+1 return r n,m,Q = na() st = SegmentTree(m,f,list(range(n))) for i in range(Q): q = na() if q[0]==1: d = q[1]-1 p = q[2:] for i in range(n): p[i]-=1 st.update(d,p.copy()) elif q[0]==2: s = q[1] print(*g(st.query(0,s))) else: ans = 0 k = st.query(0,s) for i in range(n): ans+=abs(i-k[i]) print(ans)