結果

問題 No.1477 Lamps on Graph
ユーザー HaaHaa
提出日時 2021-04-16 20:08:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 970 bytes
コンパイル時間 1,773 ms
コンパイル使用メモリ 178,012 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-02 21:58:45
合計ジャッジ時間 7,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 WA -
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 107 ms
9,984 KB
testcase_13 AC 112 ms
9,216 KB
testcase_14 AC 127 ms
10,496 KB
testcase_15 AC 54 ms
8,064 KB
testcase_16 AC 38 ms
7,424 KB
testcase_17 AC 42 ms
7,400 KB
testcase_18 AC 158 ms
9,952 KB
testcase_19 AC 98 ms
9,216 KB
testcase_20 AC 41 ms
7,296 KB
testcase_21 AC 132 ms
8,960 KB
testcase_22 AC 24 ms
6,940 KB
testcase_23 AC 69 ms
8,680 KB
testcase_24 AC 156 ms
10,956 KB
testcase_25 AC 52 ms
7,680 KB
testcase_26 AC 161 ms
10,624 KB
testcase_27 AC 63 ms
8,448 KB
testcase_28 AC 78 ms
9,216 KB
testcase_29 AC 79 ms
8,576 KB
testcase_30 AC 95 ms
7,680 KB
testcase_31 AC 58 ms
7,552 KB
testcase_32 AC 247 ms
13,568 KB
testcase_33 AC 211 ms
13,056 KB
testcase_34 WA -
testcase_35 AC 204 ms
12,544 KB
testcase_36 AC 196 ms
12,544 KB
testcase_37 AC 156 ms
12,288 KB
testcase_38 AC 169 ms
12,672 KB
testcase_39 AC 194 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll,ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
#define REP(i,n) for(int i=0;i<(n);i++)
#define ALL(v) v.begin(),v.end()
constexpr ll MOD=998244353;
constexpr ll INF=2e18;

int main(){
    int n, m; cin >> n >> m;
    vector<P> p(n); int a;
    REP(i,n){
        cin >> a;
        p[i]={a,i};
    }
    sort(ALL(p));
    VVI g(110000);
    int u, v;
    REP(i,m){
        cin >> u >> v;
        u--, v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    VI f(n,0);
    int k; cin >> k;
    int b;
    REP(i,k){
        cin >> b;
        f[b-1]=1;
    }
    int z=0; VI ans;
    REP(i,n){
        if(f[p[i].second]){
            z++;
            ans.push_back(p[i].second+1);
            for(auto to:g[p[i].second]){
                f[to]=!f[to];
            }
        }
    }
    cout << z << endl;
    for(auto i:ans)
        cout << i << endl;
    return 0;
}
0