結果

問題 No.875 Range Mindex Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-09 17:32:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 640 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 92,740 KB
最終ジャッジ日時 2024-09-09 17:32:40
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
63,124 KB
testcase_01 AC 67 ms
75,128 KB
testcase_02 AC 104 ms
80,288 KB
testcase_03 AC 55 ms
68,356 KB
testcase_04 AC 64 ms
72,088 KB
testcase_05 AC 55 ms
69,856 KB
testcase_06 AC 67 ms
73,976 KB
testcase_07 AC 78 ms
79,528 KB
testcase_08 AC 60 ms
70,820 KB
testcase_09 AC 58 ms
69,776 KB
testcase_10 AC 92 ms
80,116 KB
testcase_11 AC 604 ms
89,124 KB
testcase_12 AC 576 ms
86,616 KB
testcase_13 AC 428 ms
92,408 KB
testcase_14 AC 444 ms
90,980 KB
testcase_15 AC 591 ms
92,664 KB
testcase_16 AC 545 ms
92,576 KB
testcase_17 AC 538 ms
92,632 KB
testcase_18 AC 545 ms
92,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
a=list(map(int,input().split()))

B=317
st1=[(0,i) for i in range(B*B)]
st2=[(0,0)]*B

for i in range(n):
  st1[i]=(a[i],i)
for i in range(B):
  st2[i]=min(st1[i*B:i*B+B])

for _ in range(q):
  t,l,r=map(int,input().split())
  l-=1
  r-=1
  if t==1:
    st1[l],st1[r]=(st1[r][0],l),(st1[l][0],r)
    y=l//B
    st2[y]=min(st1[y*B:y*B+B])
    y=r//B
    st2[y]=min(st1[y*B:y*B+B])
  if t==2:
    a=(n,n)
    yl=l//B
    yr=r//B
    if yl==yr:
      for i in range(l,r+1):
        a=min(a,st1[i])
    else:
      for i in range(l,yl*B+B):
        a=min(a,st1[i])
      for i in range(yr*B,r+1):
        a=min(a,st1[i])
      for i in range(yl+1,yr):
        a=min(a,st2[i])
    print(a[1]+1)
0