結果

問題 No.1290 Addition and Subtraction Operation
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-18 12:29:59
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 723 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 553,132 KB
最終ジャッジ日時 2024-09-14 19:31:08
合計ジャッジ時間 11,531 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 AC 37 ms
52,644 KB
testcase_02 AC 37 ms
53,012 KB
testcase_03 AC 38 ms
52,888 KB
testcase_04 AC 38 ms
52,468 KB
testcase_05 AC 38 ms
52,804 KB
testcase_06 AC 38 ms
53,312 KB
testcase_07 AC 38 ms
52,320 KB
testcase_08 AC 38 ms
53,136 KB
testcase_09 AC 37 ms
53,228 KB
testcase_10 AC 38 ms
52,460 KB
testcase_11 AC 39 ms
52,452 KB
testcase_12 AC 39 ms
53,164 KB
testcase_13 AC 39 ms
52,892 KB
testcase_14 AC 38 ms
53,552 KB
testcase_15 AC 38 ms
53,036 KB
testcase_16 AC 39 ms
53,764 KB
testcase_17 AC 39 ms
52,404 KB
testcase_18 AC 38 ms
53,804 KB
testcase_19 AC 37 ms
52,744 KB
testcase_20 AC 38 ms
51,940 KB
testcase_21 AC 38 ms
52,760 KB
testcase_22 AC 39 ms
52,384 KB
testcase_23 AC 38 ms
52,236 KB
testcase_24 AC 38 ms
52,004 KB
testcase_25 AC 38 ms
53,424 KB
testcase_26 AC 38 ms
52,460 KB
testcase_27 AC 38 ms
52,072 KB
testcase_28 AC 38 ms
52,272 KB
testcase_29 AC 38 ms
53,156 KB
testcase_30 AC 38 ms
52,644 KB
testcase_31 AC 38 ms
52,612 KB
testcase_32 AC 38 ms
52,400 KB
testcase_33 AC 38 ms
53,220 KB
testcase_34 AC 38 ms
53,500 KB
testcase_35 AC 38 ms
53,804 KB
testcase_36 AC 38 ms
54,128 KB
testcase_37 AC 39 ms
53,108 KB
testcase_38 AC 38 ms
53,360 KB
testcase_39 AC 38 ms
52,868 KB
testcase_40 AC 39 ms
52,744 KB
testcase_41 AC 38 ms
53,620 KB
testcase_42 AC 123 ms
87,344 KB
testcase_43 AC 125 ms
87,436 KB
testcase_44 AC 123 ms
87,716 KB
testcase_45 AC 124 ms
87,256 KB
testcase_46 AC 121 ms
87,188 KB
testcase_47 AC 125 ms
87,108 KB
testcase_48 AC 126 ms
87,120 KB
testcase_49 AC 125 ms
87,388 KB
testcase_50 AC 125 ms
87,264 KB
testcase_51 AC 127 ms
87,072 KB
testcase_52 AC 126 ms
87,664 KB
testcase_53 AC 126 ms
87,328 KB
testcase_54 AC 126 ms
87,244 KB
testcase_55 AC 122 ms
87,212 KB
testcase_56 AC 123 ms
87,192 KB
testcase_57 AC 107 ms
89,944 KB
testcase_58 AC 130 ms
97,236 KB
testcase_59 AC 110 ms
91,064 KB
testcase_60 AC 164 ms
97,132 KB
testcase_61 AC 142 ms
95,528 KB
testcase_62 AC 137 ms
92,272 KB
testcase_63 AC 133 ms
98,000 KB
testcase_64 AC 95 ms
99,196 KB
testcase_65 AC 94 ms
89,144 KB
testcase_66 AC 122 ms
89,668 KB
testcase_67 AC 151 ms
94,492 KB
testcase_68 AC 139 ms
93,620 KB
testcase_69 AC 131 ms
97,624 KB
testcase_70 AC 108 ms
88,812 KB
testcase_71 AC 119 ms
90,152 KB
testcase_72 AC 94 ms
89,292 KB
testcase_73 AC 150 ms
102,396 KB
testcase_74 AC 79 ms
93,044 KB
testcase_75 AC 92 ms
88,756 KB
testcase_76 AC 108 ms
88,836 KB
testcase_77 TLE -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main1(n,m,b,lr):
  b=[x*(-1)**i for i,x in enumerate(b)]
  rary=[set() for _ in range(n)]
  for l,r in lr:
    rary[l-1].add(r)
  ary=[0]*(n+1)
  now=0
  for i in range(n):
    now-=ary[i]
    stc=set()
    mir=n
    d=0
    for r in rary[i]:
      stc.add(r)
      mir=min(mir,r)
      d=b[i]-now
    ary[mir]+=d
    while stc:
      r=stc.pop()
      if r==mir:continue
      rary[mir].add(r)
    now+=d
    if b[i]==now:
      pass
    else:
      return False
  return True

import sys
input=sys.stdin.readline
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)]
  ret1=main1(n,m,b,lr)
  print('YES' if ret1 else 'NO')
0