結果

問題 No.1290 Addition and Subtraction Operation
ユーザー chocoruskchocorusk
提出日時 2020-11-13 22:49:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,425 bytes
コンパイル時間 1,430 ms
コンパイル使用メモリ 132,804 KB
実行使用メモリ 11,608 KB
最終ジャッジ日時 2024-07-22 21:49:39
合計ジャッジ時間 6,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,252 KB
testcase_01 AC 4 ms
6,820 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
7,760 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 4 ms
7,504 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,996 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 3 ms
7,500 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 3 ms
8,140 KB
testcase_14 AC 3 ms
8,264 KB
testcase_15 AC 4 ms
8,012 KB
testcase_16 AC 4 ms
6,940 KB
testcase_17 AC 3 ms
7,884 KB
testcase_18 AC 4 ms
8,012 KB
testcase_19 AC 3 ms
7,624 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 4 ms
6,992 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 3 ms
6,948 KB
testcase_24 AC 4 ms
6,940 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 4 ms
7,124 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 4 ms
7,380 KB
testcase_29 AC 3 ms
7,504 KB
testcase_30 AC 4 ms
6,940 KB
testcase_31 AC 3 ms
6,940 KB
testcase_32 AC 4 ms
6,944 KB
testcase_33 AC 4 ms
7,628 KB
testcase_34 AC 4 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 4 ms
7,376 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 3 ms
7,124 KB
testcase_39 AC 4 ms
6,944 KB
testcase_40 AC 4 ms
6,940 KB
testcase_41 AC 4 ms
6,948 KB
testcase_42 AC 46 ms
8,788 KB
testcase_43 AC 47 ms
8,916 KB
testcase_44 AC 47 ms
8,284 KB
testcase_45 AC 47 ms
8,148 KB
testcase_46 AC 46 ms
8,660 KB
testcase_47 AC 47 ms
8,540 KB
testcase_48 AC 47 ms
9,168 KB
testcase_49 AC 46 ms
8,024 KB
testcase_50 AC 47 ms
9,036 KB
testcase_51 AC 47 ms
8,036 KB
testcase_52 AC 47 ms
8,664 KB
testcase_53 AC 47 ms
8,792 KB
testcase_54 AC 47 ms
8,532 KB
testcase_55 AC 46 ms
9,044 KB
testcase_56 AC 47 ms
8,160 KB
testcase_57 AC 42 ms
9,168 KB
testcase_58 AC 56 ms
9,808 KB
testcase_59 AC 39 ms
8,620 KB
testcase_60 AC 110 ms
11,584 KB
testcase_61 AC 84 ms
10,508 KB
testcase_62 AC 91 ms
10,828 KB
testcase_63 AC 57 ms
9,332 KB
testcase_64 AC 22 ms
7,760 KB
testcase_65 AC 33 ms
8,324 KB
testcase_66 AC 69 ms
9,980 KB
testcase_67 AC 118 ms
11,608 KB
testcase_68 AC 84 ms
10,292 KB
testcase_69 AC 55 ms
9,336 KB
testcase_70 AC 51 ms
9,284 KB
testcase_71 AC 65 ms
9,728 KB
testcase_72 AC 34 ms
8,388 KB
testcase_73 AC 75 ms
10,168 KB
testcase_74 AC 21 ms
7,576 KB
testcase_75 AC 28 ms
8,016 KB
testcase_76 AC 53 ms
9,416 KB
testcase_77 AC 108 ms
10,748 KB
testcase_78 AC 102 ms
10,284 KB
testcase_79 AC 69 ms
9,240 KB
testcase_80 AC 130 ms
11,384 KB
testcase_81 AC 124 ms
11,472 KB
testcase_82 AC 84 ms
9,936 KB
testcase_83 AC 124 ms
11,344 KB
testcase_84 AC 110 ms
10,576 KB
testcase_85 AC 56 ms
8,432 KB
testcase_86 AC 43 ms
7,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
using ll=long long;
typedef pair<int, int> P;

int main()
{
    int n, m; cin>>n>>m;
    ll b[100010];
    for(int i=0; i<n; i++){
        cin>>b[i];
        if(i&1) b[i]=-b[i];
    }
    ll d[100010];
    for(int i=1; i<n; i++){
        d[i]=b[i]-b[i-1];
    }
    d[0]=b[0], d[n]=-b[n-1];
    int l[100010], r[100010];
    vector<int> g[100010];
    for(int i=0; i<m; i++){
        cin>>l[i]>>r[i];
        l[i]--;
        g[l[i]].push_back(r[i]);
        g[r[i]].push_back(l[i]);
    }
    bool used[100010]={};
    auto dfs=[&](auto dfs, int x, ll &s)->void{
        s+=d[x];
        used[x]=1;
        for(auto y:g[x]){
            if(!used[y]){
                dfs(dfs, y, s);
            }
        }
    };
    for(int i=0; i<=n; i++){
        if(used[i]) continue;
        ll s=0;
        dfs(dfs, i, s);
        if(s!=0){
            cout<<"NO"<<endl;
            return 0;
        }
    }
    cout<<"YES"<<endl;
    return 0;
}
0