結果

問題 No.1290 Addition and Subtraction Operation
ユーザー outlineoutline
提出日時 2021-01-07 15:19:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,269 bytes
コンパイル時間 1,627 ms
コンパイル使用メモリ 145,756 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-08 14:42:52
合計ジャッジ時間 7,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 WA -
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 WA -
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 38 ms
7,936 KB
testcase_43 AC 38 ms
7,936 KB
testcase_44 AC 38 ms
7,936 KB
testcase_45 AC 38 ms
7,936 KB
testcase_46 AC 38 ms
7,936 KB
testcase_47 AC 38 ms
7,936 KB
testcase_48 AC 38 ms
7,936 KB
testcase_49 AC 39 ms
7,936 KB
testcase_50 AC 38 ms
7,936 KB
testcase_51 AC 39 ms
7,936 KB
testcase_52 AC 38 ms
7,936 KB
testcase_53 AC 39 ms
7,936 KB
testcase_54 AC 38 ms
8,064 KB
testcase_55 AC 38 ms
8,064 KB
testcase_56 AC 39 ms
7,936 KB
testcase_57 AC 26 ms
11,008 KB
testcase_58 AC 34 ms
11,776 KB
testcase_59 AC 24 ms
11,008 KB
testcase_60 AC 81 ms
13,312 KB
testcase_61 AC 56 ms
12,288 KB
testcase_62 AC 60 ms
12,672 KB
testcase_63 AC 33 ms
11,776 KB
testcase_64 AC 15 ms
9,856 KB
testcase_65 AC 20 ms
10,624 KB
testcase_66 AC 41 ms
11,648 KB
testcase_67 AC 88 ms
13,824 KB
testcase_68 AC 57 ms
12,416 KB
testcase_69 AC 34 ms
11,776 KB
testcase_70 AC 33 ms
11,392 KB
testcase_71 AC 39 ms
12,288 KB
testcase_72 AC 21 ms
10,496 KB
testcase_73 AC 48 ms
12,672 KB
testcase_74 AC 14 ms
9,856 KB
testcase_75 AC 18 ms
10,240 KB
testcase_76 AC 31 ms
10,752 KB
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 AC 44 ms
12,288 KB
testcase_83 AC 82 ms
13,184 KB
testcase_84 AC 69 ms
12,800 KB
testcase_85 AC 26 ms
10,752 KB
testcase_86 AC 19 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, M;
    cin >> N >> M;
    vector<ll> B(N);
    for(int i = 0; i < N; ++i)  cin >> B[i];
    vector<set<int>> sections(N + 1);
    for(int i = 0; i < M; ++i){
        int L, R;
        cin >> L >> R;
        sections[L - 1].emplace(R);
    }
    
    vector<int> rights(N, -1);
    for(int l = 0; l < N; ++l){
        if(sections[l].size() == 0) continue;

        int r = *sections[l].begin();
        rights[l] = r;
        sections[l].erase(sections[l].begin());

        if(sections[l].size() > sections[r + 1].size()){
            swap(sections[l], sections[r + 1]);
        }
        for(auto it = sections[l].begin(); it != sections[l].end(); ){
            sections[r + 1].emplace(*it);
            it = sections[l].erase(it);
        }
    }

    vector<ll> finish(N + 1);
    ll sum = 0;
    for(int l = 0; l < N; ++l){
        sum -= finish[l];
        B[l] -= sum;
        if(rights[l] != -1){
            sum += B[l];
            if((rights[l] - l) % 2 == 0)    finish[rights[l]] += B[l];
            else    finish[rights[l]] -= B[l];
            B[l] = 0;
        }
        sum *= -1;
    }

    for(int i = 0; i < N; ++i){
        if(B[i] != 0){
            cout << "NO\n";
            return 0;
        }
    }
    cout << "YES\n";

    return 0;
}
0