結果

問題 No.1290 Addition and Subtraction Operation
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-02-18 12:42:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 115,704 KB
最終ジャッジ日時 2024-09-14 19:44:15
合計ジャッジ時間 11,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 41 ms
52,204 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 40 ms
51,712 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 41 ms
51,968 KB
testcase_15 AC 40 ms
52,224 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 41 ms
52,224 KB
testcase_18 AC 40 ms
52,096 KB
testcase_19 AC 41 ms
52,096 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 41 ms
52,224 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 AC 42 ms
52,352 KB
testcase_24 AC 42 ms
51,712 KB
testcase_25 AC 41 ms
51,968 KB
testcase_26 AC 40 ms
51,968 KB
testcase_27 AC 40 ms
52,224 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 41 ms
52,224 KB
testcase_31 AC 41 ms
51,968 KB
testcase_32 AC 40 ms
52,224 KB
testcase_33 AC 41 ms
52,352 KB
testcase_34 AC 41 ms
52,224 KB
testcase_35 AC 40 ms
52,352 KB
testcase_36 AC 40 ms
51,712 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 40 ms
52,096 KB
testcase_39 AC 40 ms
52,224 KB
testcase_40 AC 40 ms
52,096 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 137 ms
88,196 KB
testcase_43 AC 136 ms
88,064 KB
testcase_44 AC 134 ms
87,936 KB
testcase_45 AC 136 ms
87,936 KB
testcase_46 AC 137 ms
88,192 KB
testcase_47 AC 136 ms
88,064 KB
testcase_48 AC 137 ms
88,100 KB
testcase_49 AC 135 ms
88,116 KB
testcase_50 AC 137 ms
88,108 KB
testcase_51 AC 135 ms
87,808 KB
testcase_52 AC 133 ms
87,936 KB
testcase_53 AC 135 ms
88,064 KB
testcase_54 AC 134 ms
88,076 KB
testcase_55 AC 131 ms
87,808 KB
testcase_56 AC 137 ms
88,080 KB
testcase_57 AC 114 ms
90,364 KB
testcase_58 AC 139 ms
96,628 KB
testcase_59 AC 119 ms
90,936 KB
testcase_60 AC 161 ms
96,624 KB
testcase_61 AC 145 ms
95,404 KB
testcase_62 AC 139 ms
92,276 KB
testcase_63 AC 136 ms
98,108 KB
testcase_64 AC 96 ms
99,060 KB
testcase_65 AC 97 ms
89,088 KB
testcase_66 AC 121 ms
89,704 KB
testcase_67 AC 157 ms
94,520 KB
testcase_68 AC 145 ms
93,664 KB
testcase_69 AC 133 ms
97,884 KB
testcase_70 AC 114 ms
88,832 KB
testcase_71 AC 127 ms
90,048 KB
testcase_72 AC 98 ms
88,704 KB
testcase_73 AC 153 ms
102,108 KB
testcase_74 AC 80 ms
91,008 KB
testcase_75 AC 94 ms
88,704 KB
testcase_76 AC 118 ms
88,980 KB
testcase_77 AC 278 ms
108,284 KB
testcase_78 AC 243 ms
103,168 KB
testcase_79 AC 182 ms
98,368 KB
testcase_80 AC 332 ms
115,476 KB
testcase_81 AC 329 ms
115,704 KB
testcase_82 AC 130 ms
90,084 KB
testcase_83 AC 168 ms
97,844 KB
testcase_84 AC 197 ms
105,480 KB
testcase_85 AC 125 ms
92,704 KB
testcase_86 AC 96 ms
96,384 KB
権限があれば一括ダウンロードができます

ソースコード

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()
    d=0
    while rary[i]:
      r=rary[i].pop()
      stc.add(r)
      d=b[i]-now
    if stc:
      stc=list(stc)
      stc.sort()
      for x,y in zip(stc[0:],stc[1:]):
        rary[x].add(y)
      ary[stc[0]]+=d
      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