結果

問題 No.1290 Addition and Subtraction Operation
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-18 12:31:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 742 bytes
コンパイル時間 448 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 269,992 KB
最終ジャッジ日時 2024-09-14 19:32:11
合計ジャッジ時間 11,907 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,600 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 39 ms
52,352 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 38 ms
52,224 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 AC 39 ms
52,192 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 41 ms
52,096 KB
testcase_22 AC 41 ms
52,224 KB
testcase_23 AC 40 ms
52,096 KB
testcase_24 AC 39 ms
52,224 KB
testcase_25 AC 39 ms
52,352 KB
testcase_26 AC 40 ms
51,712 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 39 ms
51,840 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 39 ms
52,480 KB
testcase_31 AC 39 ms
52,352 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 39 ms
52,096 KB
testcase_34 AC 39 ms
52,608 KB
testcase_35 AC 39 ms
52,224 KB
testcase_36 AC 40 ms
51,840 KB
testcase_37 AC 39 ms
51,840 KB
testcase_38 AC 40 ms
52,096 KB
testcase_39 AC 39 ms
52,352 KB
testcase_40 AC 39 ms
51,968 KB
testcase_41 AC 39 ms
52,132 KB
testcase_42 AC 128 ms
87,268 KB
testcase_43 AC 127 ms
87,212 KB
testcase_44 AC 126 ms
87,208 KB
testcase_45 AC 131 ms
87,296 KB
testcase_46 AC 131 ms
87,616 KB
testcase_47 AC 129 ms
87,552 KB
testcase_48 AC 131 ms
87,680 KB
testcase_49 AC 129 ms
87,168 KB
testcase_50 AC 130 ms
87,168 KB
testcase_51 AC 131 ms
87,200 KB
testcase_52 AC 131 ms
87,428 KB
testcase_53 AC 126 ms
87,156 KB
testcase_54 AC 130 ms
87,284 KB
testcase_55 AC 130 ms
87,236 KB
testcase_56 AC 129 ms
87,936 KB
testcase_57 AC 111 ms
90,368 KB
testcase_58 AC 133 ms
96,888 KB
testcase_59 AC 111 ms
90,992 KB
testcase_60 AC 160 ms
96,596 KB
testcase_61 AC 144 ms
95,948 KB
testcase_62 AC 151 ms
92,268 KB
testcase_63 AC 135 ms
98,176 KB
testcase_64 AC 96 ms
99,184 KB
testcase_65 AC 97 ms
88,756 KB
testcase_66 AC 125 ms
89,772 KB
testcase_67 AC 158 ms
94,608 KB
testcase_68 AC 143 ms
93,760 KB
testcase_69 AC 135 ms
97,600 KB
testcase_70 AC 111 ms
88,704 KB
testcase_71 AC 123 ms
89,648 KB
testcase_72 AC 96 ms
88,960 KB
testcase_73 AC 153 ms
102,260 KB
testcase_74 AC 80 ms
91,264 KB
testcase_75 AC 92 ms
89,216 KB
testcase_76 AC 112 ms
88,832 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
    while rary[i]:
      r=rary[i].pop()
      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