結果

問題 No.1477 Lamps on Graph
ユーザー jupirojupiro
提出日時 2021-04-16 22:01:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 1,802 bytes
コンパイル時間 1,661 ms
コンパイル使用メモリ 127,516 KB
実行使用メモリ 11,428 KB
最終ジャッジ日時 2024-07-03 01:48:38
合計ジャッジ時間 5,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 45 ms
7,040 KB
testcase_13 AC 41 ms
6,656 KB
testcase_14 AC 53 ms
7,552 KB
testcase_15 AC 24 ms
5,376 KB
testcase_16 AC 17 ms
5,504 KB
testcase_17 AC 16 ms
5,376 KB
testcase_18 AC 44 ms
8,192 KB
testcase_19 AC 38 ms
7,168 KB
testcase_20 AC 16 ms
5,376 KB
testcase_21 AC 38 ms
7,296 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 31 ms
5,376 KB
testcase_24 AC 61 ms
8,320 KB
testcase_25 AC 22 ms
5,376 KB
testcase_26 AC 55 ms
8,704 KB
testcase_27 AC 28 ms
5,504 KB
testcase_28 AC 35 ms
6,528 KB
testcase_29 AC 32 ms
5,888 KB
testcase_30 AC 22 ms
5,632 KB
testcase_31 AC 18 ms
5,376 KB
testcase_32 AC 68 ms
11,428 KB
testcase_33 AC 67 ms
11,308 KB
testcase_34 AC 60 ms
11,304 KB
testcase_35 AC 82 ms
10,736 KB
testcase_36 AC 79 ms
10,752 KB
testcase_37 AC 73 ms
10,752 KB
testcase_38 AC 75 ms
10,752 KB
testcase_39 AC 81 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <utility>
#include <tuple>
#include <cmath>
#include <numeric>
#include <set>
#include <map>
#include <array>
#include <complex>
#include <iomanip>
#include <cassert>
#include <random>
using ll = long long;
using std::cin;
using std::cout;
using std::endl;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const int inf = (int)1e9 + 7;
const long long INF = 1LL << 60;

void solve()
{
  int n, m; cin >> n >> m;
  std::vector<std::pair<int , int>> vp(n);
  std::vector<int> a(n);
  for (int i = 0; i < n; ++i)
  {
    cin >> vp[i].first;
    a[i] = vp[i].first;
    vp[i].second = i;
  }
  std::sort(vp.begin(), vp.end());
  std::vector<std::vector<int>> g(n);
  for (int i = 0; i < m; ++i)
  {
    int u, v; cin >> u >> v;
    u -= 1, v -= 1;
    g[u].emplace_back(v);
    g[v].emplace_back(u);
  }
  int k; cin >> k;
  std::vector<int> on(n);
  for (int i = 0; i < k; ++i)
  {
    int b; cin >> b;
    b -= 1;
    on[b] = 1;
  }
  std::vector<int> res;
  for(const auto [_, idx] : vp)
  {
    if(on[idx])
    {
      res.emplace_back(idx);
      for(const auto nxt : g[idx])
      {
        if(a[idx] < a[nxt])
        {
          on[nxt] ^= 1;
        }
      }
      on[idx] ^= 1;
    }
  }
  for (int i = 0; i < n; ++i)
  {
    if(on[i])
    {
      cout << -1 << "\n";
      return;
    }
  }
  cout << res.size() << "\n";
  for (int i = 0; i < (int)res.size(); ++i)
  {
    cout << res[i] + 1 << "\n";
  }
}
int main()
{
  std::cin.tie(nullptr);
  std::ios::sync_with_stdio(false);

  int kkt = 1;
  //cin >> kkt;
  while(kkt--)
    solve();
  return 0;
}
0