結果

問題 No.1477 Lamps on Graph
ユーザー chocono2230chocono2230
提出日時 2021-04-16 20:17:40
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,263 bytes
コンパイル時間 2,441 ms
コンパイル使用メモリ 213,368 KB
実行使用メモリ 11,408 KB
最終ジャッジ日時 2024-07-02 22:16:46
合計ジャッジ時間 8,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 121 ms
7,168 KB
testcase_13 AC 123 ms
6,940 KB
testcase_14 AC 148 ms
7,552 KB
testcase_15 AC 58 ms
6,944 KB
testcase_16 AC 41 ms
6,940 KB
testcase_17 AC 46 ms
6,940 KB
testcase_18 AC 175 ms
8,320 KB
testcase_19 AC 113 ms
7,296 KB
testcase_20 AC 41 ms
6,940 KB
testcase_21 AC 149 ms
7,296 KB
testcase_22 AC 24 ms
6,940 KB
testcase_23 AC 77 ms
6,944 KB
testcase_24 AC 178 ms
8,448 KB
testcase_25 AC 55 ms
6,944 KB
testcase_26 AC 171 ms
8,832 KB
testcase_27 AC 69 ms
6,940 KB
testcase_28 AC 87 ms
6,944 KB
testcase_29 AC 87 ms
6,944 KB
testcase_30 AC 97 ms
6,940 KB
testcase_31 AC 60 ms
6,944 KB
testcase_32 AC 270 ms
11,408 KB
testcase_33 AC 223 ms
11,284 KB
testcase_34 WA -
testcase_35 AC 239 ms
10,880 KB
testcase_36 AC 228 ms
10,880 KB
testcase_37 AC 180 ms
10,600 KB
testcase_38 AC 203 ms
10,792 KB
testcase_39 AC 221 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(ri,n) for(int ri = (int)(n-1); ri >= 0; ri--)
#define rep2(i,x,n) for(int i = (int)(x); i < (int)(n); i++)
#define rrep2(ri,x,n) for(int ri = (int)(n-1); ri >= (int)(x); ri--)
#define repit(itr,x) for(auto itr = x.begin(); itr != x.end(); itr++)
#define rrepit(ritr,x) for(auto ritr = x.rbegin(); ritr != x.rend(); ritr++)
#define ALL(x) x.begin(), x.end()
using ll = long long;
using namespace std;

int main() {
  int n, m;
  cin >> n >> m;
  vector<pair<int, int>> a(n);
  vector<int> aa(n);
  rep(i, n) {
    int in;
    cin >> in;
    a.at(i) = {in, i};
    aa.at(i) = in;
  }
  vector<vector<int>> gr(n, vector<int>());
  rep(i, m){
    int a, b;
    cin >> a >> b;
    a--; b--;
    gr.at(a).push_back(b);
    gr.at(b).push_back(a);
  }
  int k;
  cin >> k;
  vector<int> co(n, 0);
  rep(i, k) {
    int in;
    cin >> in;
    in--;
    co.at(in)++;
  }
  sort(ALL(a));
  vector<int> ans;
  for(auto [c, now] : a) {
    if(co.at(now) % 2 == 0) continue;
    ans.push_back(now);
    for(auto nx : gr.at(now)) {
      if(aa.at(nx) < c) continue;
      co.at(nx)++;
    }
  }
  cout << ans.size() << endl;
  for(auto i : ans) {
    cout << i+1 << endl;
  }
  return 0;
}
0