結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,380 KB
testcase_01 AC 38 ms
53,708 KB
testcase_02 AC 39 ms
52,880 KB
testcase_03 AC 39 ms
52,472 KB
testcase_04 AC 39 ms
52,460 KB
testcase_05 AC 39 ms
52,392 KB
testcase_06 AC 39 ms
52,776 KB
testcase_07 AC 38 ms
52,608 KB
testcase_08 AC 39 ms
52,420 KB
testcase_09 AC 39 ms
52,892 KB
testcase_10 AC 39 ms
53,372 KB
testcase_11 AC 39 ms
52,976 KB
testcase_12 AC 39 ms
52,680 KB
testcase_13 AC 38 ms
53,008 KB
testcase_14 AC 39 ms
52,744 KB
testcase_15 AC 38 ms
53,108 KB
testcase_16 AC 38 ms
53,172 KB
testcase_17 AC 39 ms
53,080 KB
testcase_18 AC 39 ms
52,560 KB
testcase_19 AC 39 ms
52,556 KB
testcase_20 AC 39 ms
53,020 KB
testcase_21 AC 39 ms
53,076 KB
testcase_22 AC 40 ms
52,316 KB
testcase_23 AC 39 ms
53,292 KB
testcase_24 AC 39 ms
53,220 KB
testcase_25 AC 39 ms
53,188 KB
testcase_26 AC 39 ms
52,644 KB
testcase_27 AC 38 ms
52,364 KB
testcase_28 AC 39 ms
52,976 KB
testcase_29 AC 39 ms
52,748 KB
testcase_30 AC 40 ms
53,724 KB
testcase_31 AC 39 ms
52,700 KB
testcase_32 AC 39 ms
52,664 KB
testcase_33 AC 39 ms
53,260 KB
testcase_34 AC 40 ms
52,564 KB
testcase_35 AC 39 ms
52,708 KB
testcase_36 AC 39 ms
54,004 KB
testcase_37 AC 39 ms
52,440 KB
testcase_38 AC 38 ms
52,292 KB
testcase_39 AC 39 ms
53,448 KB
testcase_40 AC 39 ms
53,104 KB
testcase_41 AC 39 ms
52,556 KB
testcase_42 AC 123 ms
87,664 KB
testcase_43 AC 121 ms
87,128 KB
testcase_44 AC 122 ms
87,128 KB
testcase_45 AC 120 ms
87,440 KB
testcase_46 AC 123 ms
87,504 KB
testcase_47 AC 126 ms
87,136 KB
testcase_48 AC 123 ms
87,536 KB
testcase_49 AC 119 ms
87,068 KB
testcase_50 AC 124 ms
87,132 KB
testcase_51 AC 125 ms
87,208 KB
testcase_52 AC 117 ms
87,276 KB
testcase_53 AC 119 ms
87,260 KB
testcase_54 AC 123 ms
87,112 KB
testcase_55 AC 120 ms
87,324 KB
testcase_56 AC 122 ms
87,004 KB
testcase_57 AC 107 ms
90,320 KB
testcase_58 AC 128 ms
96,836 KB
testcase_59 AC 109 ms
90,956 KB
testcase_60 AC 150 ms
96,608 KB
testcase_61 AC 148 ms
96,036 KB
testcase_62 AC 134 ms
92,264 KB
testcase_63 AC 130 ms
98,532 KB
testcase_64 AC 94 ms
99,200 KB
testcase_65 AC 93 ms
88,972 KB
testcase_66 AC 119 ms
89,800 KB
testcase_67 AC 146 ms
94,500 KB
testcase_68 AC 135 ms
94,132 KB
testcase_69 AC 130 ms
97,596 KB
testcase_70 AC 107 ms
88,804 KB
testcase_71 AC 119 ms
89,496 KB
testcase_72 AC 92 ms
88,736 KB
testcase_73 AC 141 ms
102,272 KB
testcase_74 AC 78 ms
91,472 KB
testcase_75 AC 90 ms
88,600 KB
testcase_76 AC 108 ms
89,180 KB
testcase_77 MLE -
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
    for r in stc:
      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