結果

問題 No.1477 Lamps on Graph
ユーザー momoharamomohara
提出日時 2021-04-17 12:05:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,062 bytes
コンパイル時間 2,410 ms
コンパイル使用メモリ 213,480 KB
実行使用メモリ 12,408 KB
最終ジャッジ日時 2023-09-16 19:35:00
合計ジャッジ時間 6,762 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 WA -
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,380 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 42 ms
7,796 KB
testcase_13 AC 37 ms
7,112 KB
testcase_14 AC 48 ms
8,388 KB
testcase_15 AC 23 ms
5,904 KB
testcase_16 AC 17 ms
5,648 KB
testcase_17 AC 16 ms
5,436 KB
testcase_18 AC 41 ms
9,240 KB
testcase_19 AC 35 ms
7,492 KB
testcase_20 AC 15 ms
4,752 KB
testcase_21 AC 35 ms
7,932 KB
testcase_22 AC 10 ms
4,488 KB
testcase_23 AC 28 ms
6,412 KB
testcase_24 AC 55 ms
8,764 KB
testcase_25 AC 21 ms
5,284 KB
testcase_26 AC 53 ms
9,288 KB
testcase_27 AC 26 ms
6,208 KB
testcase_28 AC 32 ms
7,200 KB
testcase_29 AC 29 ms
6,268 KB
testcase_30 AC 21 ms
6,000 KB
testcase_31 AC 18 ms
5,684 KB
testcase_32 AC 60 ms
12,408 KB
testcase_33 AC 57 ms
11,904 KB
testcase_34 WA -
testcase_35 AC 76 ms
11,072 KB
testcase_36 AC 72 ms
10,968 KB
testcase_37 AC 65 ms
11,080 KB
testcase_38 AC 72 ms
11,036 KB
testcase_39 AC 74 ms
10,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using ull = unsigned long long;
using ld = long double;
using P = pair<ll, ll>;
using tp = tuple<ll, ll, ll>;

template <class T>
using vec = vector<T>;
template <class T>
using vvec = vector<vec<T>>;

#define all(hoge) (hoge).begin(), (hoge).end()
#define en '\n'
#define rep(i, m, n) for(ll i = (ll)(m); i < (ll)(n); ++i)
#define rep2(i, m, n) for(ll i = (ll)(n)-1; i >= (ll)(m); --i)
#define REP(i, n) rep(i, 0, n)
#define REP2(i, n) rep2(i, 0, n)

constexpr long long INF = 1LL << 60;
constexpr int INF_INT = 1 << 25;
constexpr long long MOD = (ll)1e9 + 7;
//constexpr long long MOD = 998244353LL;
static const ld pi = 3.141592653589793L;

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

template <class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

template <class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

//グラフ関連
struct Edge {
    int to, rev;
    ll cap;
    Edge(int _to, ll _cap, int _rev) : to(_to), cap(_cap), rev(_rev) {}
};

typedef vector<Edge> Edges;
typedef vector<Edges> Graph;

void add_edge(Graph &G, int from, int to, ll cap, bool revFlag, ll revCap) {
    G[from].push_back(Edge(to, cap, (int)G[to].size()));
    if(revFlag)
        G[to].push_back(Edge(from, revCap, (int)G[from].size() - 1));
}

bool tsort(Graph &graph, vec<ll> &order) {
    int n = graph.size(), k = 0;
    vec<ll> in(n);
    for(auto &es : graph)
        for(auto &e : es)
            in[e.to]++;
    priority_queue<ll, vec<ll>, greater<ll>> que;
    REP(i, n)
    if(in[i] == 0)
        que.push(i);
    while(que.size()) {
        int v = que.top();
        que.pop();
        order.push_back(v);
        for(auto &e : graph[v])
            if(--in[e.to] == 0)
                que.push(e.to);
    }
    if(order.size() != n)
        return false;
    else
        return true;
}

void solve() {
    ll n, m;
    cin >> n >> m;
    vec<ll> a(n);
    REP(i, n) {
        cin >> a[i];
    }

    Graph g(n);
    REP(i, m) {
        int u, v;
        cin >> u >> v;
        u--;
        v--;
        if(a[u] < a[v])
            add_edge(g, u, v, 1, false, 1);
        else
            add_edge(g, v, u, 1, false, 1);
    }

    int k;
    cin >> k;
    vec<bool> b(n, false);
    REP(i, k) {
        int bb;
        cin >> bb;
        bb--;
        b[bb] = true;
    }

    vec<ll> o;
    tsort(g, o);
    vec<ll> ans;
    REP(i, n) {
        int v = o[i];
        if(b[v]) {
            b[v] = false;
            ans.push_back(v + 1);
            for(auto e : g[v]) {
                b[e.to] = !b[e.to];
            }
        }
    }
    cout << ans.size() << en;
    for(auto i : ans)
        cout << i << en;
}

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

    // ll t;
    // cin >> t;
    // REP(i, t - 1) {
    //     solve();
    // }

    solve();

    return 0;
}
0