結果

問題 No.1290 Addition and Subtraction Operation
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-18 11:27:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 169,868 KB
最終ジャッジ日時 2024-09-14 18:28:06
合計ジャッジ時間 8,068 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,056 KB
testcase_01 AC 41 ms
53,284 KB
testcase_02 AC 40 ms
53,384 KB
testcase_03 AC 40 ms
54,132 KB
testcase_04 AC 39 ms
52,740 KB
testcase_05 AC 39 ms
53,816 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 40 ms
53,056 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 40 ms
52,816 KB
testcase_10 AC 40 ms
53,376 KB
testcase_11 AC 39 ms
52,472 KB
testcase_12 AC 39 ms
53,768 KB
testcase_13 AC 38 ms
53,824 KB
testcase_14 AC 40 ms
53,632 KB
testcase_15 AC 39 ms
52,756 KB
testcase_16 AC 40 ms
53,624 KB
testcase_17 AC 40 ms
53,376 KB
testcase_18 AC 39 ms
52,756 KB
testcase_19 AC 39 ms
52,820 KB
testcase_20 AC 40 ms
53,508 KB
testcase_21 AC 40 ms
52,928 KB
testcase_22 AC 39 ms
53,312 KB
testcase_23 AC 39 ms
52,560 KB
testcase_24 AC 39 ms
52,696 KB
testcase_25 AC 41 ms
53,976 KB
testcase_26 AC 40 ms
54,288 KB
testcase_27 AC 40 ms
52,744 KB
testcase_28 AC 39 ms
52,876 KB
testcase_29 AC 38 ms
52,736 KB
testcase_30 AC 40 ms
53,436 KB
testcase_31 AC 39 ms
54,132 KB
testcase_32 AC 40 ms
54,104 KB
testcase_33 AC 39 ms
52,816 KB
testcase_34 AC 40 ms
52,920 KB
testcase_35 AC 38 ms
52,816 KB
testcase_36 AC 40 ms
52,680 KB
testcase_37 AC 39 ms
53,088 KB
testcase_38 AC 40 ms
53,148 KB
testcase_39 AC 39 ms
52,952 KB
testcase_40 AC 40 ms
53,124 KB
testcase_41 AC 40 ms
53,872 KB
testcase_42 TLE -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def main2(n,m,b_,lr):
  from heapq import heappop,heappush
  b=[x*(-1)**i for i,x in enumerate(b_)]
  lr.sort(key=lambda x:x[0])
  ary=[0]*(n+1)
  now=0
  for i in range(n):
    now-=ary[i]
    stc=[]
    mir=n
    d=0
    while lr and lr[0][0]-1==i:
      l,r=heappop(lr)
      stc.append(r)
      mir=min(mir,r)
      d=b[i]-now
    ary[mir]+=d
    for r in stc:
      if r==mir:continue
      heappush(lr,[mir+1,r])
    now+=d
    if b[i]==now:
      pass
    else:
      return False
  return True
if __name__=='__main__':
  n,m=map(int,input().split())
  b=list(map(int,input().split()))
  lr=[list(map(int,input().split())) for _ in range(m)]
  ret2=main2(n,m,b,lr)
  print('YES' if ret2 else 'NO')
0