結果

問題 No.1477 Lamps on Graph
ユーザー firiexpfiriexp
提出日時 2021-04-16 20:41:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,455 bytes
コンパイル時間 1,162 ms
コンパイル使用メモリ 110,256 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-02 23:11:10
合計ジャッジ時間 4,202 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 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 35 ms
6,528 KB
testcase_13 AC 38 ms
6,144 KB
testcase_14 AC 43 ms
6,784 KB
testcase_15 AC 21 ms
5,376 KB
testcase_16 AC 14 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 35 ms
8,064 KB
testcase_19 AC 30 ms
6,656 KB
testcase_20 AC 14 ms
5,376 KB
testcase_21 AC 29 ms
7,168 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 24 ms
5,376 KB
testcase_24 AC 47 ms
7,552 KB
testcase_25 AC 18 ms
5,376 KB
testcase_26 AC 41 ms
7,936 KB
testcase_27 AC 23 ms
5,376 KB
testcase_28 AC 27 ms
6,144 KB
testcase_29 AC 25 ms
5,504 KB
testcase_30 AC 17 ms
5,760 KB
testcase_31 AC 14 ms
5,376 KB
testcase_32 AC 57 ms
10,880 KB
testcase_33 AC 54 ms
9,984 KB
testcase_34 AC 51 ms
7,936 KB
testcase_35 AC 60 ms
9,344 KB
testcase_36 AC 62 ms
9,344 KB
testcase_37 AC 53 ms
9,344 KB
testcase_38 AC 53 ms
9,344 KB
testcase_39 AC 61 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = unsigned;
using u64 = unsigned long long;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max() / 32 * 15 + 208;

int main() {
    int n, m;
    cin >> n >> m;
    vector<int> A(n);
    for (auto &&i : A) scanf("%d", &i);
    vector<vector<int>> G(n);
    for (int i = 0; i < m; ++i) {
        int u, v;
        scanf("%d %d", &u, &v);
        u--; v--;
        if(A[u] < A[v]) G[u].emplace_back(v);
        if(A[v] < A[u]) G[v].emplace_back(u);
    }
    vector<int> on(n);
    int k;
    cin >> k;
    for (int i = 0; i < k; ++i) {
        int x;
        scanf("%d", &x);
        on[x-1]++;
    }
    vector<int> d(n);
    for (int i = 0; i < n; ++i) {
        for (auto &&j : G[i]) {
            d[j]++;
        }
    }
    queue<int> Q;
    for (int i = 0; i < n; ++i) {
        if(!d[i]) Q.emplace(i);
    }
    vector<int> ans;
    while(!Q.empty()){
        int x = Q.front(); Q.pop();
        int ok = on[x];
        if(on[x]) on[x] = 0, ans.emplace_back(x);
        for (auto &&y : G[x]) {
            if(ok) on[y] ^= 1;
            if(!(--d[y])) Q.emplace(y);
        }
    }
    cout << ans.size() << "\n";
    for (auto &&i : ans) {
        cout << i+1 << "\n";
    }
    return 0;
}
0