結果

問題 No.1477 Lamps on Graph
ユーザー AngrySadEightAngrySadEight
提出日時 2023-10-05 22:43:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 4,277 bytes
コンパイル時間 5,927 ms
コンパイル使用メモリ 227,076 KB
実行使用メモリ 12,972 KB
最終ジャッジ日時 2023-10-05 22:43:54
合計ジャッジ時間 14,842 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 109 ms
7,892 KB
testcase_13 AC 114 ms
7,400 KB
testcase_14 AC 161 ms
8,604 KB
testcase_15 AC 53 ms
5,724 KB
testcase_16 AC 41 ms
5,864 KB
testcase_17 AC 43 ms
5,404 KB
testcase_18 AC 164 ms
9,172 KB
testcase_19 AC 105 ms
7,820 KB
testcase_20 AC 39 ms
4,920 KB
testcase_21 AC 148 ms
7,876 KB
testcase_22 AC 23 ms
4,380 KB
testcase_23 AC 70 ms
6,320 KB
testcase_24 AC 177 ms
9,456 KB
testcase_25 AC 51 ms
5,344 KB
testcase_26 AC 157 ms
9,700 KB
testcase_27 AC 63 ms
6,260 KB
testcase_28 AC 81 ms
7,416 KB
testcase_29 AC 80 ms
6,512 KB
testcase_30 AC 93 ms
5,944 KB
testcase_31 AC 58 ms
5,696 KB
testcase_32 AC 286 ms
12,972 KB
testcase_33 AC 211 ms
12,720 KB
testcase_34 AC 248 ms
12,960 KB
testcase_35 AC 217 ms
12,504 KB
testcase_36 AC 233 ms
12,120 KB
testcase_37 AC 162 ms
11,700 KB
testcase_38 AC 182 ms
12,012 KB
testcase_39 AC 209 ms
12,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <algorithm>
#include <atcoder/all>
#include <bitset>
#include <cassert>
#include <cmath>
#include <ctime>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repr(i, n) for (int i = (int)(n)-1; i >= 0; i--)
#define repk(i, k, n) for (int i = k; i < (int)(n); i++)
#define all(v) v.begin(), v.end()
#define mod1 1000000007
#define mod2 998244353
#define mod3 100000007
#define vi vector<int>
#define vs vector<string>
#define vc vector<char>
#define vl vector<ll>
#define vb vector<bool>
#define vvi vector<vector<int>>
#define vvc vector<vector<char>>
#define vvl vector<vector<ll>>
#define vvb vector<vector<bool>>
#define vvvi vector<vector<vector<int>>>
#define vvvl vector<vector<vector<ll>>>
#define pii pair<int, int>
#define pil pair<int, ll>
#define pli pair<ll, int>
#define pll pair<ll, ll>
#define vpii vector<pair<int, int>>
#define vpll vector<pair<ll, ll>>
#define vvpii vector<vector<pair<int, int>>>
#define vvpll vector<vector<pair<ll, ll>>>

using mint = modint998244353;

template <typename T>
void debug(T e) {
    cerr << e << endl;
}

template <typename T>
void debug(vector<T> &v) {
    rep(i, v.size()) { cerr << v[i] << " "; }
    cerr << endl;
}

template <typename T>
void debug(vector<vector<T>> &v) {
    rep(i, v.size()) {
        rep(j, v[i].size()) { cerr << v[i][j] << " "; }
        cerr << endl;
    }
}

template <typename T>
void debug(vector<pair<T, T>> &v) {
    rep(i, v.size()) { cerr << v[i].first << " " << v[i].second << endl; }
}

template <typename T>
void debug(set<T> &st) {
    for (auto itr = st.begin(); itr != st.end(); itr++) {
        cerr << *itr << " ";
    }
    cerr << endl;
}

template <typename T>
void debug(multiset<T> &ms) {
    for (auto itr = ms.begin(); itr != ms.end(); itr++) {
        cerr << *itr << " ";
    }
    cerr << endl;
}

template <typename T>
void debug(map<T, T> &mp) {
    for (auto itr = mp.begin(); itr != mp.end(); itr++) {
        cerr << itr->first << " " << itr->second << endl;
    }
}

void debug_out() { cerr << endl; }

template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
    cerr << H << " ";
    debug_out(T...);
}

ll my_pow(ll x, ll n, ll mod) {
    //  繰り返し二乗法.x^nをmodで割った余り.
    ll ret;
    if (n == 0) {
        ret = 1;
    } else if (n % 2 == 1) {
        ret = (x * my_pow((x * x) % mod, n / 2, mod)) % mod;
    } else {
        ret = my_pow((x * x) % mod, n / 2, mod);
    }
    return ret;
}

ll inv(ll x, ll mod) { return my_pow(x, mod - 2, mod); }

int main() {
    int N, M;
    cin >> N >> M;
    vector<ll> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i];
    }
    vector<int> u(M);
    vector<int> v(M);
    for (int i = 0; i < M; i++) {
        cin >> u[i] >> v[i];
        u[i]--;
        v[i]--;
    }
    vector<vector<int>> graph(N, vector<int>(0));
    for (int i = 0; i < M; i++) {
        graph[u[i]].push_back(v[i]);
        graph[v[i]].push_back(u[i]);
    }
    int K;
    cin >> K;
    vector<int> B(K);
    for (int i = 0; i < K; i++) {
        cin >> B[i];
        B[i]--;
    }
    vector<int> light(N, 0);
    for (int i = 0; i < K; i++) {
        light[B[i]]++;
    }
    vector<pii> p(0);
    for (int i = 0; i < N; i++) {
        p.push_back(pll(A[i], i));
    }
    sort(all(p));
    // debug(p);

    vector<int> ans(0);
    for (int i = 0; i < N; i++) {
        int x = p[i].second;
        if (light[x] == 1) {
            light[x] = 0;
            for (int j = 0; j < graph[x].size(); j++) {
                if (A[graph[x][j]] > A[x]) {
                    light[graph[x][j]] = 1 - light[graph[x][j]];
                }
            }
            ans.push_back(x + 1);
        }
        // debug(light);
    }
    cout << ans.size() << endl;
    for (int i = 0; i < ans.size(); i++) {
        cout << ans[i] << endl;
    }
}
0