結果

問題 No.1290 Addition and Subtraction Operation
ユーザー kyort0nkyort0n
提出日時 2020-11-13 18:14:39
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 1,850 bytes
コンパイル時間 1,761 ms
コンパイル使用メモリ 178,412 KB
実行使用メモリ 16,748 KB
最終ジャッジ日時 2024-07-22 20:16:19
合計ジャッジ時間 6,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,092 KB
testcase_01 AC 4 ms
10,356 KB
testcase_02 AC 5 ms
8,904 KB
testcase_03 AC 4 ms
9,388 KB
testcase_04 AC 5 ms
9,980 KB
testcase_05 AC 4 ms
8,772 KB
testcase_06 AC 5 ms
9,292 KB
testcase_07 AC 4 ms
9,848 KB
testcase_08 AC 5 ms
9,004 KB
testcase_09 AC 4 ms
9,488 KB
testcase_10 AC 4 ms
10,768 KB
testcase_11 AC 4 ms
10,480 KB
testcase_12 AC 4 ms
8,716 KB
testcase_13 AC 4 ms
10,092 KB
testcase_14 AC 4 ms
8,880 KB
testcase_15 AC 4 ms
9,708 KB
testcase_16 AC 5 ms
9,416 KB
testcase_17 AC 5 ms
9,548 KB
testcase_18 AC 6 ms
9,604 KB
testcase_19 AC 4 ms
10,260 KB
testcase_20 AC 5 ms
9,044 KB
testcase_21 AC 5 ms
10,296 KB
testcase_22 AC 4 ms
9,728 KB
testcase_23 AC 5 ms
9,104 KB
testcase_24 AC 4 ms
9,960 KB
testcase_25 AC 5 ms
9,468 KB
testcase_26 AC 4 ms
10,064 KB
testcase_27 AC 4 ms
9,348 KB
testcase_28 AC 4 ms
8,888 KB
testcase_29 AC 5 ms
8,936 KB
testcase_30 AC 4 ms
9,104 KB
testcase_31 AC 5 ms
10,160 KB
testcase_32 AC 4 ms
10,240 KB
testcase_33 AC 5 ms
8,932 KB
testcase_34 AC 5 ms
8,964 KB
testcase_35 AC 4 ms
9,772 KB
testcase_36 AC 4 ms
9,336 KB
testcase_37 AC 4 ms
9,716 KB
testcase_38 AC 5 ms
10,164 KB
testcase_39 AC 5 ms
9,808 KB
testcase_40 AC 5 ms
9,788 KB
testcase_41 AC 4 ms
10,328 KB
testcase_42 AC 36 ms
14,932 KB
testcase_43 AC 35 ms
14,692 KB
testcase_44 AC 35 ms
14,832 KB
testcase_45 AC 35 ms
14,576 KB
testcase_46 AC 35 ms
14,544 KB
testcase_47 AC 34 ms
14,644 KB
testcase_48 AC 36 ms
14,684 KB
testcase_49 AC 36 ms
14,632 KB
testcase_50 AC 35 ms
14,732 KB
testcase_51 AC 35 ms
14,656 KB
testcase_52 AC 35 ms
14,860 KB
testcase_53 AC 36 ms
14,692 KB
testcase_54 AC 36 ms
14,384 KB
testcase_55 AC 38 ms
14,508 KB
testcase_56 AC 36 ms
14,688 KB
testcase_57 AC 25 ms
11,564 KB
testcase_58 AC 32 ms
12,480 KB
testcase_59 AC 24 ms
11,808 KB
testcase_60 AC 81 ms
16,192 KB
testcase_61 AC 54 ms
14,288 KB
testcase_62 AC 63 ms
14,720 KB
testcase_63 AC 32 ms
13,196 KB
testcase_64 AC 15 ms
10,824 KB
testcase_65 AC 20 ms
11,172 KB
testcase_66 AC 42 ms
13,940 KB
testcase_67 AC 90 ms
16,748 KB
testcase_68 AC 55 ms
14,176 KB
testcase_69 AC 33 ms
13,160 KB
testcase_70 AC 29 ms
12,104 KB
testcase_71 AC 39 ms
13,248 KB
testcase_72 AC 20 ms
11,504 KB
testcase_73 AC 47 ms
14,160 KB
testcase_74 AC 15 ms
10,252 KB
testcase_75 AC 18 ms
11,212 KB
testcase_76 AC 32 ms
12,288 KB
testcase_77 AC 62 ms
14,512 KB
testcase_78 AC 51 ms
14,196 KB
testcase_79 AC 31 ms
12,252 KB
testcase_80 AC 87 ms
15,948 KB
testcase_81 AC 85 ms
15,700 KB
testcase_82 AC 41 ms
13,304 KB
testcase_83 AC 82 ms
15,648 KB
testcase_84 AC 67 ms
14,984 KB
testcase_85 AC 23 ms
11,460 KB
testcase_86 AC 17 ms
10,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;
template<class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

const long long INF = 1e18;
//const ll mod = 1000000007;
ll N, M;
ll B[100500];
vector<ll> C;
ll L[105000], R[105000];
set<ll> query[105000];
void merge(set<ll> &a, set<ll> &b) {
    if(a.size() < b.size()) swap(a, b);
    for(auto tmp : b) {
        a.insert(tmp);
    }
}

void print(vector<ll> v) {
    cerr << "{";
    for(int i = 0; i < v.size(); i++) {
        if(i != 0) cerr << ", ";
        cerr << v[i];
    }
    cerr << "}" << endl;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> N >> M;
    for(int i = 1; i <= N; i++) cin >> B[i];
    C.resize(N + 1);
    for(int i = 0; i <= N; i++) {
        C[i] = B[i] + B[i+1];
    }
    N++;
    for(int i = 0; i < M; i++) {
        cin >> L[i] >> R[i];
        L[i]--;
        query[L[i]].insert(R[i]);
    }
    //print(C);
    for(int i = 0; i < N; i++) {
        //cerr << "---" << i << "---" << endl;
        if(query[i].empty()) continue;
        //print(query[i]);
        ll r = *query[i].begin();
        if((r - i) % 2 == 0) {
            ll delta = C[i];
            C[i] -= delta;
            C[r] += delta;
        } else {
            ll delta = C[i];
            C[i] -= delta;
            C[r] -= delta;
        }
        query[i].erase(query[i].begin());
        merge(query[r], query[i]);
    }
    //print(C);
    string ans = "YES";
    for(int i = 0; i < N; i++) {
        if(C[i] != 0) {
            ans = "NO";
        }
    }
    cout << ans << endl;
    return 0;
}
0