結果

問題 No.1290 Addition and Subtraction Operation
ユーザー mkawa2mkawa2
提出日時 2021-09-04 18:55:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 1,225 bytes
コンパイル時間 462 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 96,240 KB
最終ジャッジ日時 2024-06-01 06:17:09
合計ジャッジ時間 16,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,696 KB
testcase_01 AC 42 ms
53,564 KB
testcase_02 AC 42 ms
53,996 KB
testcase_03 AC 42 ms
53,488 KB
testcase_04 AC 42 ms
53,544 KB
testcase_05 AC 42 ms
53,108 KB
testcase_06 AC 43 ms
53,804 KB
testcase_07 AC 42 ms
52,752 KB
testcase_08 AC 43 ms
53,932 KB
testcase_09 AC 43 ms
53,972 KB
testcase_10 AC 43 ms
53,588 KB
testcase_11 AC 42 ms
53,672 KB
testcase_12 AC 42 ms
53,212 KB
testcase_13 AC 42 ms
53,280 KB
testcase_14 AC 43 ms
54,552 KB
testcase_15 AC 42 ms
53,132 KB
testcase_16 AC 42 ms
52,876 KB
testcase_17 AC 43 ms
54,752 KB
testcase_18 AC 43 ms
54,076 KB
testcase_19 AC 43 ms
53,716 KB
testcase_20 AC 40 ms
53,436 KB
testcase_21 AC 42 ms
53,096 KB
testcase_22 AC 42 ms
53,172 KB
testcase_23 AC 43 ms
53,564 KB
testcase_24 AC 43 ms
52,952 KB
testcase_25 AC 42 ms
53,008 KB
testcase_26 AC 42 ms
53,436 KB
testcase_27 AC 43 ms
54,288 KB
testcase_28 AC 46 ms
52,828 KB
testcase_29 AC 42 ms
54,276 KB
testcase_30 AC 42 ms
52,992 KB
testcase_31 AC 44 ms
52,752 KB
testcase_32 AC 42 ms
53,080 KB
testcase_33 AC 43 ms
53,228 KB
testcase_34 AC 42 ms
53,364 KB
testcase_35 AC 41 ms
52,808 KB
testcase_36 AC 41 ms
52,936 KB
testcase_37 AC 42 ms
53,368 KB
testcase_38 AC 42 ms
53,312 KB
testcase_39 AC 42 ms
53,472 KB
testcase_40 AC 42 ms
54,484 KB
testcase_41 AC 43 ms
53,704 KB
testcase_42 AC 341 ms
84,524 KB
testcase_43 AC 342 ms
84,524 KB
testcase_44 AC 342 ms
84,688 KB
testcase_45 AC 347 ms
84,780 KB
testcase_46 AC 342 ms
84,780 KB
testcase_47 AC 340 ms
84,776 KB
testcase_48 AC 341 ms
84,512 KB
testcase_49 AC 345 ms
84,768 KB
testcase_50 AC 345 ms
85,032 KB
testcase_51 AC 340 ms
84,648 KB
testcase_52 AC 338 ms
84,512 KB
testcase_53 AC 333 ms
84,648 KB
testcase_54 AC 339 ms
85,180 KB
testcase_55 AC 341 ms
84,640 KB
testcase_56 AC 339 ms
84,516 KB
testcase_57 AC 106 ms
95,084 KB
testcase_58 AC 115 ms
94,804 KB
testcase_59 AC 100 ms
94,752 KB
testcase_60 AC 145 ms
94,976 KB
testcase_61 AC 126 ms
94,944 KB
testcase_62 AC 130 ms
94,896 KB
testcase_63 AC 110 ms
95,156 KB
testcase_64 AC 90 ms
94,616 KB
testcase_65 AC 97 ms
95,404 KB
testcase_66 AC 121 ms
94,684 KB
testcase_67 AC 145 ms
95,096 KB
testcase_68 AC 132 ms
95,100 KB
testcase_69 AC 112 ms
94,812 KB
testcase_70 AC 108 ms
94,656 KB
testcase_71 AC 121 ms
95,340 KB
testcase_72 AC 97 ms
94,672 KB
testcase_73 AC 129 ms
94,708 KB
testcase_74 AC 75 ms
88,884 KB
testcase_75 AC 96 ms
94,972 KB
testcase_76 AC 112 ms
94,672 KB
testcase_77 AC 457 ms
95,840 KB
testcase_78 AC 502 ms
95,944 KB
testcase_79 AC 275 ms
96,240 KB
testcase_80 AC 657 ms
96,108 KB
testcase_81 AC 628 ms
95,776 KB
testcase_82 AC 135 ms
95,796 KB
testcase_83 AC 162 ms
95,856 KB
testcase_84 AC 194 ms
95,936 KB
testcase_85 AC 118 ms
96,156 KB
testcase_86 AC 92 ms
96,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**20
# md = 998244353
# md = 10**9+7

from heapq import *

n,m=LI()
bb=LI()
bb=[-b if i&1 else b for i,b in enumerate(bb)]
hp=[]
for _ in range(m):
    l,r=LI()
    l-=1
    heappush(hp,(l,r))

def ok():
    now=0
    cs=[0]*(n+1)
    for i,b in enumerate(bb):
        now+=cs[i]
        pr=-1
        if hp and hp[0][0]==i:
            l,r=heappop(hp)
            cs[r]-=b-now
            now=b
            pr=r
        while hp and hp[0][0]==i:
            l,r=heappop(hp)
            if pr<r:
                heappush(hp,(pr,r))
                pr=r
        if now!=b:
            return False
    return True

print("YES" if ok() else "NO")
0