結果

問題 No.1675 Strange Minimum Query
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-18 20:39:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,063 bytes
コンパイル時間 623 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 115,620 KB
最終ジャッジ日時 2024-08-18 20:39:59
合計ジャッジ時間 40,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
62,024 KB
testcase_01 AC 41 ms
61,796 KB
testcase_02 AC 42 ms
61,600 KB
testcase_03 AC 1,608 ms
102,272 KB
testcase_04 AC 1,380 ms
98,108 KB
testcase_05 AC 173 ms
79,964 KB
testcase_06 AC 1,880 ms
107,156 KB
testcase_07 AC 1,979 ms
107,764 KB
testcase_08 AC 44 ms
62,644 KB
testcase_09 AC 67 ms
74,080 KB
testcase_10 AC 383 ms
92,948 KB
testcase_11 AC 117 ms
83,044 KB
testcase_12 AC 376 ms
95,372 KB
testcase_13 AC 1,299 ms
108,900 KB
testcase_14 AC 1,004 ms
115,484 KB
testcase_15 AC 1,198 ms
115,620 KB
testcase_16 AC 43 ms
62,080 KB
testcase_17 AC 308 ms
83,724 KB
testcase_18 AC 451 ms
86,208 KB
testcase_19 AC 429 ms
89,456 KB
testcase_20 AC 1,206 ms
100,628 KB
testcase_21 AC 996 ms
98,032 KB
testcase_22 AC 1,374 ms
105,120 KB
testcase_23 AC 1,205 ms
99,460 KB
testcase_24 AC 1,017 ms
97,444 KB
testcase_25 AC 788 ms
92,068 KB
testcase_26 AC 368 ms
85,312 KB
testcase_27 AC 830 ms
96,176 KB
testcase_28 AC 452 ms
88,328 KB
testcase_29 AC 256 ms
86,136 KB
testcase_30 AC 334 ms
85,948 KB
testcase_31 TLE -
testcase_32 AC 1,942 ms
112,772 KB
testcase_33 AC 1,867 ms
113,268 KB
testcase_34 AC 1,897 ms
112,968 KB
testcase_35 AC 1,451 ms
114,652 KB
testcase_36 AC 1,464 ms
113,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
query=[]
for i in range(q):
  l,r,b=map(int,input().split())
  l-=1
  r-=1
  query+=[(b,l,r)]
query.sort()
B=450
X=10**9
st1=[X]*B*B
st2=[0]*B
for b,l,r in query:
  y=l//B
  if st2[y]!=0:
    for i in range(y*B,y*B+B):
      st1[i]=st2[y]
    st2[y]=0
  y=r//B
  if st2[y]!=0:
    for i in range(y*B,y*B+B):
      st1[i]=st2[y]
    st2[y]=0
  if l//B==r//B:
    for i in range(l,r+1):
      st1[i]=b
  else:
    y=l//B
    for i in range(l,y*B+B):
      st1[i]=b
    y=r//B
    for i in range(y*B,r+1):
      st1[i]=b
    for i in range(l//B+1,r//B):
      st2[i]=b
for y in range(B):
  if st2[y]!=0:
    for i in range(y*B,y*B+B):
      st1[i]=st2[y]
  st2[y]=min(st1[y*B:y*B+B])
f=1
for b,l,r in query:
  m=X
  if l//B==r//B:
    for i in range(l,r+1):
      m=min(m,st1[i])
  else:
    y=l//B
    for i in range(l,y*B+B):
      m=min(m,st1[i])
    y=r//B
    for i in range(y*B,r+1):
      m=min(m,st1[i])
    for i in range(l//B+1,r//B):
      m=min(m,st2[i])
  f&=m==b
if f:
  print(*[st1[i] for i in range(n)])
else:
  print(-1)
0