結果

問題 No.1477 Lamps on Graph
ユーザー MisterMister
提出日時 2021-04-16 21:05:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 1,129 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 10,520 KB
最終ジャッジ日時 2024-07-02 23:59:34
合計ジャッジ時間 5,480 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 47 ms
6,656 KB
testcase_13 AC 43 ms
6,528 KB
testcase_14 AC 57 ms
7,040 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 46 ms
7,424 KB
testcase_19 AC 40 ms
6,912 KB
testcase_20 AC 16 ms
5,376 KB
testcase_21 AC 39 ms
6,656 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 31 ms
5,376 KB
testcase_24 AC 66 ms
7,808 KB
testcase_25 AC 21 ms
5,376 KB
testcase_26 AC 58 ms
8,064 KB
testcase_27 AC 29 ms
5,504 KB
testcase_28 AC 36 ms
6,272 KB
testcase_29 AC 32 ms
5,504 KB
testcase_30 AC 22 ms
5,376 KB
testcase_31 AC 19 ms
5,376 KB
testcase_32 AC 73 ms
10,520 KB
testcase_33 AC 67 ms
10,264 KB
testcase_34 AC 58 ms
10,520 KB
testcase_35 AC 88 ms
9,856 KB
testcase_36 AC 87 ms
9,856 KB
testcase_37 AC 77 ms
9,728 KB
testcase_38 AC 81 ms
9,984 KB
testcase_39 AC 86 ms
9,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <numeric>
#include <vector>

using namespace std;

void solve() {
    int n, m;
    cin >> n >> m;

    vector<int> xs(n);
    for (auto& x : xs) cin >> x;

    vector<vector<int>> graph(n);
    while (m--) {
        int u, v;
        cin >> u >> v;
        --u, --v;

        graph[u].push_back(v);
        graph[v].push_back(u);
    }

    vector<bool> stat(n, false);
    {
        int k;
        cin >> k;
        while (k--) {
            int v;
            cin >> v;
            stat[--v] = true;
        }
    }

    vector<int> vs(n);
    iota(vs.begin(), vs.end(), 0);
    sort(vs.begin(), vs.end(),
         [&](int u, int v) { return xs[u] < xs[v]; });

    vector<int> ans;
    for (auto v : vs) {
        if (!stat[v]) continue;
        ans.push_back(v + 1);

        stat[v] = !stat[v];
        for (auto u : graph[v]) {
            if (xs[u] > xs[v]) stat[u] = !stat[u];
        }
    }

    cout << ans.size() << "\n";
    for (auto v : ans) cout << v << "\n";
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    solve();

    return 0;
}
0