結果

問題 No.1290 Addition and Subtraction Operation
ユーザー やむなくやむなく
提出日時 2020-11-13 23:10:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 2,189 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 178,604 KB
実行使用メモリ 10,656 KB
最終ジャッジ日時 2024-07-22 22:03:15
合計ジャッジ時間 7,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 1 ms
6,948 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 2 ms
6,944 KB
testcase_38 AC 1 ms
6,944 KB
testcase_39 AC 2 ms
6,944 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 64 ms
6,940 KB
testcase_43 AC 63 ms
6,940 KB
testcase_44 AC 63 ms
6,940 KB
testcase_45 AC 63 ms
6,940 KB
testcase_46 AC 63 ms
6,944 KB
testcase_47 AC 63 ms
6,944 KB
testcase_48 AC 63 ms
6,940 KB
testcase_49 AC 63 ms
6,944 KB
testcase_50 AC 63 ms
6,940 KB
testcase_51 AC 64 ms
6,940 KB
testcase_52 AC 64 ms
6,940 KB
testcase_53 AC 63 ms
6,940 KB
testcase_54 AC 65 ms
6,944 KB
testcase_55 AC 64 ms
6,944 KB
testcase_56 AC 63 ms
6,940 KB
testcase_57 AC 40 ms
8,728 KB
testcase_58 AC 53 ms
9,248 KB
testcase_59 AC 39 ms
8,704 KB
testcase_60 AC 94 ms
10,344 KB
testcase_61 AC 74 ms
9,856 KB
testcase_62 AC 80 ms
9,924 KB
testcase_63 AC 52 ms
9,128 KB
testcase_64 AC 24 ms
7,936 KB
testcase_65 AC 34 ms
8,576 KB
testcase_66 AC 64 ms
9,600 KB
testcase_67 AC 98 ms
10,520 KB
testcase_68 AC 78 ms
9,764 KB
testcase_69 AC 52 ms
9,240 KB
testcase_70 AC 48 ms
8,988 KB
testcase_71 AC 60 ms
9,472 KB
testcase_72 AC 32 ms
8,420 KB
testcase_73 AC 70 ms
9,740 KB
testcase_74 AC 24 ms
7,936 KB
testcase_75 AC 30 ms
8,268 KB
testcase_76 AC 51 ms
9,088 KB
testcase_77 AC 106 ms
10,048 KB
testcase_78 AC 95 ms
9,984 KB
testcase_79 AC 66 ms
8,988 KB
testcase_80 AC 123 ms
10,656 KB
testcase_81 AC 124 ms
10,496 KB
testcase_82 AC 79 ms
9,456 KB
testcase_83 AC 100 ms
10,248 KB
testcase_84 AC 102 ms
10,112 KB
testcase_85 AC 55 ms
8,576 KB
testcase_86 AC 43 ms
7,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//
// Created by yamunaku on 2020/11/13.
//

#include <bits/stdc++.h>
//#include <atcoder/all>

using namespace std;
//using namespace atcoder;

#define rep(i, n) for(int i = 0; i < (n); i++)
#define repl(i, l, r) for(int i = (l); i < (r); i++)
#define per(i, n) for(int i = ((n)-1); i >= 0; i--)
#define perl(i, l, r) for(int i = ((r)-1); i >= (l); i--)
#define all(x) (x).begin(),(x).end()
#define MOD9 998244353
#define MOD1 1000000007
#define IINF 1000000000
#define LINF 1000000000000000000
#define SP <<" "<<
#define CYES cout<<"YES"<<endl
#define CNO cout<<"NO"<<endl
#define CFS cin.tie(0);ios::sync_with_stdio(false)
#define CST(x) cout<<fixed<<setprecision(x)

using ll = long long;
using ld = long double;
using vi = vector<int>;
using mti = vector<vector<int>>;
using vl = vector<ll>;
using mtl = vector<vector<ll>>;
using pi = pair<int, int>;
using pl = pair<ll, ll>;
template<typename T>
using heap = priority_queue<T, vector<T>, function<bool(const T, const T)>>;

int main() {
    //CFS;
    int n, m;
    cin >> n >> m;
    vl b(n);
    rep(i, n) {
        cin >> b[i];
        if (i & 1) b[i] = -b[i];
//        cout << b[i] << " ";
    }
//    cout << endl;
    vector<priority_queue<int, vi, greater<int>>> v(n + 1);
    vi l(m), r(m);
    rep(i, m) {
        cin >> l[i] >> r[i];
        v[l[i] - 1].push(r[i] - 1);
    }
    vl rui(n + 1, 0);
    rep(i, n) {
        if (i > 0) rui[i] += rui[i - 1];
        ll k = b[i] - rui[i];
//        cout << i SP k << endl;
        if (v[i].empty()) {
            if (k == 0) continue;
            CNO;
            return 0;
        }
        int rr = v[i].top() + 1;
//        cout << rr << endl;
        rui[i] += k;
        rui[rr] -= k;
        while (!v[i].empty()) {
            if (v[i].top() == rr - 1) v[i].pop();
            else break;
        }
        if (v[i].size() < v[rr].size()) {
            while (!v[i].empty()) {
                v[rr].push(v[i].top());
                v[i].pop();
            }
        } else {
            while (!v[rr].empty()) {
                v[i].push(v[rr].top());
                v[rr].pop();
            }
            v[rr] = move(v[i]);
        }
    }
    CYES;
    return 0;
}
0