結果

問題 No.1290 Addition and Subtraction Operation
ユーザー mkawa2
提出日時 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 85
権限があれば一括ダウンロードができます

ソースコード

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