結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,560 KB
testcase_01 AC 37 ms
53,028 KB
testcase_02 AC 38 ms
52,820 KB
testcase_03 AC 38 ms
53,088 KB
testcase_04 AC 38 ms
53,120 KB
testcase_05 AC 39 ms
53,484 KB
testcase_06 AC 40 ms
53,776 KB
testcase_07 AC 39 ms
52,992 KB
testcase_08 AC 40 ms
53,292 KB
testcase_09 AC 39 ms
53,232 KB
testcase_10 AC 40 ms
53,280 KB
testcase_11 AC 38 ms
52,888 KB
testcase_12 AC 39 ms
54,040 KB
testcase_13 AC 38 ms
53,168 KB
testcase_14 AC 37 ms
53,700 KB
testcase_15 AC 39 ms
53,092 KB
testcase_16 AC 38 ms
53,524 KB
testcase_17 AC 40 ms
53,640 KB
testcase_18 AC 38 ms
54,524 KB
testcase_19 AC 39 ms
53,404 KB
testcase_20 AC 37 ms
53,668 KB
testcase_21 AC 38 ms
53,188 KB
testcase_22 AC 37 ms
53,216 KB
testcase_23 AC 37 ms
52,804 KB
testcase_24 AC 38 ms
53,140 KB
testcase_25 AC 49 ms
52,692 KB
testcase_26 AC 40 ms
52,724 KB
testcase_27 AC 40 ms
53,852 KB
testcase_28 AC 37 ms
53,040 KB
testcase_29 AC 38 ms
53,164 KB
testcase_30 AC 40 ms
54,308 KB
testcase_31 AC 40 ms
53,032 KB
testcase_32 AC 39 ms
52,988 KB
testcase_33 AC 39 ms
53,160 KB
testcase_34 AC 40 ms
53,324 KB
testcase_35 AC 38 ms
53,192 KB
testcase_36 AC 38 ms
53,660 KB
testcase_37 AC 37 ms
53,716 KB
testcase_38 AC 38 ms
53,772 KB
testcase_39 AC 37 ms
53,480 KB
testcase_40 AC 40 ms
53,500 KB
testcase_41 AC 38 ms
53,736 KB
testcase_42 AC 316 ms
84,776 KB
testcase_43 AC 318 ms
84,644 KB
testcase_44 AC 317 ms
84,264 KB
testcase_45 AC 317 ms
84,264 KB
testcase_46 AC 317 ms
84,656 KB
testcase_47 AC 312 ms
84,780 KB
testcase_48 AC 325 ms
84,508 KB
testcase_49 AC 313 ms
84,768 KB
testcase_50 AC 324 ms
84,388 KB
testcase_51 AC 314 ms
84,772 KB
testcase_52 AC 324 ms
84,516 KB
testcase_53 AC 319 ms
84,392 KB
testcase_54 AC 312 ms
84,388 KB
testcase_55 AC 317 ms
84,772 KB
testcase_56 AC 322 ms
84,164 KB
testcase_57 AC 101 ms
94,724 KB
testcase_58 AC 108 ms
94,684 KB
testcase_59 AC 96 ms
94,424 KB
testcase_60 AC 130 ms
94,600 KB
testcase_61 AC 120 ms
94,624 KB
testcase_62 AC 120 ms
94,708 KB
testcase_63 AC 106 ms
94,752 KB
testcase_64 AC 87 ms
94,816 KB
testcase_65 AC 91 ms
94,792 KB
testcase_66 AC 114 ms
95,048 KB
testcase_67 AC 132 ms
94,744 KB
testcase_68 AC 123 ms
94,812 KB
testcase_69 AC 111 ms
95,072 KB
testcase_70 AC 106 ms
94,800 KB
testcase_71 AC 111 ms
94,904 KB
testcase_72 AC 92 ms
94,716 KB
testcase_73 AC 113 ms
94,948 KB
testcase_74 AC 67 ms
89,080 KB
testcase_75 AC 88 ms
94,656 KB
testcase_76 AC 100 ms
94,480 KB
testcase_77 AC 430 ms
95,884 KB
testcase_78 AC 463 ms
95,828 KB
testcase_79 AC 259 ms
95,904 KB
testcase_80 AC 613 ms
95,660 KB
testcase_81 AC 584 ms
96,028 KB
testcase_82 AC 127 ms
95,640 KB
testcase_83 AC 152 ms
95,828 KB
testcase_84 AC 183 ms
96,068 KB
testcase_85 AC 115 ms
95,784 KB
testcase_86 AC 94 ms
95,840 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