結果

問題 No.1290 Addition and Subtraction Operation
ユーザー SSRSSSRS
提出日時 2020-11-13 22:43:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 1,063 bytes
コンパイル時間 1,820 ms
コンパイル使用メモリ 178,188 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-07-22 21:43:34
合計ジャッジ時間 6,847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 45 ms
5,376 KB
testcase_43 AC 45 ms
5,376 KB
testcase_44 AC 46 ms
5,376 KB
testcase_45 AC 45 ms
5,376 KB
testcase_46 AC 44 ms
5,376 KB
testcase_47 AC 45 ms
5,376 KB
testcase_48 AC 45 ms
5,376 KB
testcase_49 AC 45 ms
5,376 KB
testcase_50 AC 45 ms
5,376 KB
testcase_51 AC 45 ms
5,376 KB
testcase_52 AC 45 ms
5,376 KB
testcase_53 AC 45 ms
5,376 KB
testcase_54 AC 45 ms
5,376 KB
testcase_55 AC 44 ms
5,376 KB
testcase_56 AC 45 ms
5,376 KB
testcase_57 AC 41 ms
8,320 KB
testcase_58 AC 52 ms
8,832 KB
testcase_59 AC 40 ms
8,064 KB
testcase_60 AC 94 ms
10,240 KB
testcase_61 AC 73 ms
9,728 KB
testcase_62 AC 79 ms
9,856 KB
testcase_63 AC 53 ms
8,832 KB
testcase_64 AC 24 ms
6,912 KB
testcase_65 AC 33 ms
7,552 KB
testcase_66 AC 62 ms
9,344 KB
testcase_67 AC 97 ms
10,368 KB
testcase_68 AC 74 ms
9,856 KB
testcase_69 AC 52 ms
8,832 KB
testcase_70 AC 48 ms
8,576 KB
testcase_71 AC 58 ms
9,088 KB
testcase_72 AC 34 ms
7,680 KB
testcase_73 AC 69 ms
9,472 KB
testcase_74 AC 22 ms
6,912 KB
testcase_75 AC 29 ms
7,296 KB
testcase_76 AC 50 ms
8,704 KB
testcase_77 AC 103 ms
9,728 KB
testcase_78 AC 93 ms
9,472 KB
testcase_79 AC 73 ms
8,448 KB
testcase_80 AC 115 ms
10,240 KB
testcase_81 AC 113 ms
10,112 KB
testcase_82 AC 80 ms
9,088 KB
testcase_83 AC 111 ms
10,112 KB
testcase_84 AC 101 ms
9,856 KB
testcase_85 AC 56 ms
7,808 KB
testcase_86 AC 44 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> B(N);
  for (int i = 0; i < N; i++){
    cin >> B[i];
    if (i % 2 == 0){
      B[i] *= -1;
    }
  }
  vector<int> L(M), R(M);
  for (int i = 0; i < M; i++){
    cin >> L[i] >> R[i];
    L[i]--;
  }
  vector<long long> A(N + 1);
  A[0] = B[0];
  for (int i = 1; i < N; i++){
    A[i] = B[i] - B[i - 1];
  }
  A[N] = -B[N - 1];
  vector<vector<int>> E(N + 1);
  for (int i = 0; i < M; i++){
    E[L[i]].push_back(R[i]);
    E[R[i]].push_back(L[i]);
  }
  vector<bool> used(N + 1, false);
  for (int i = 0; i <= N; i++){
    if (!used[i]){
      used[i] = true;
      long long sum = 0;
      queue<int> Q;
      Q.push(i);
      while (!Q.empty()){
        int v = Q.front();
        Q.pop();
        sum += A[v];
        for (int w : E[v]){
          if (!used[w]){
            used[w] = true;
            Q.push(w);
          }
        }
      }
      if (sum != 0){
        cout << "NO" << endl;
        return 0;
      }
    }
  }
  cout << "YES" << endl;
}
0