結果

問題 No.1477 Lamps on Graph
ユーザー ShibuyapShibuyap
提出日時 2021-05-03 14:02:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 267 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 2,606 ms
コンパイル使用メモリ 210,184 KB
実行使用メモリ 14,048 KB
最終ジャッジ日時 2024-07-22 04:17:53
合計ジャッジ時間 8,948 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
8,192 KB
testcase_01 AC 6 ms
8,192 KB
testcase_02 AC 5 ms
8,192 KB
testcase_03 AC 5 ms
8,192 KB
testcase_04 AC 5 ms
8,192 KB
testcase_05 AC 5 ms
8,192 KB
testcase_06 AC 6 ms
8,192 KB
testcase_07 AC 6 ms
8,192 KB
testcase_08 AC 6 ms
8,192 KB
testcase_09 AC 6 ms
8,192 KB
testcase_10 AC 6 ms
8,320 KB
testcase_11 AC 5 ms
8,192 KB
testcase_12 AC 124 ms
10,684 KB
testcase_13 AC 132 ms
10,340 KB
testcase_14 AC 153 ms
11,132 KB
testcase_15 AC 67 ms
9,556 KB
testcase_16 AC 46 ms
9,472 KB
testcase_17 AC 49 ms
9,216 KB
testcase_18 AC 173 ms
11,036 KB
testcase_19 AC 117 ms
10,512 KB
testcase_20 AC 45 ms
9,088 KB
testcase_21 AC 155 ms
10,360 KB
testcase_22 AC 29 ms
8,832 KB
testcase_23 AC 82 ms
9,856 KB
testcase_24 AC 184 ms
11,480 KB
testcase_25 AC 59 ms
9,472 KB
testcase_26 AC 180 ms
11,528 KB
testcase_27 AC 73 ms
9,856 KB
testcase_28 AC 91 ms
10,316 KB
testcase_29 AC 92 ms
9,956 KB
testcase_30 AC 99 ms
9,192 KB
testcase_31 AC 64 ms
9,216 KB
testcase_32 AC 267 ms
14,048 KB
testcase_33 AC 223 ms
13,536 KB
testcase_34 AC 260 ms
13,920 KB
testcase_35 AC 241 ms
13,128 KB
testcase_36 AC 229 ms
13,128 KB
testcase_37 AC 186 ms
12,992 KB
testcase_38 AC 207 ms
13,124 KB
testcase_39 AC 231 ms
13,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define srep(i,s,t) for (int i = s; i < t; ++i)
#define drep(i,n) for(int i = (n)-1; i >= 0; --i)
using namespace std;
typedef long long int ll;
typedef pair<int,int> P;
#define yn {puts("YES");}else{puts("NO");}
#define MAX_N 200005

vector<int> G[MAX_N];

int main() {
    int n, m;
    cin >> n >> m;
    int a[n] = {};
    rep(i,n) cin >> a[i];
    rep(i,m){
        int u, v;
        cin >> u >> v;
        u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    vector<P> v;
    rep(i,n){
        v.push_back(P(a[i],i));
    }
    sort(v.begin(), v.end());
    int f[n] = {};
    int k; cin >> k;
    rep(i,k){
        int b; cin >> b;
        b--;
        f[b] = 1;
    }
    vector<int> ans;

    rep(i,n){
        int x = v[i].second;
        if(f[x] == 1){
            ans.push_back(x+1);
            f[x] = 0;
            rep(j,G[x].size()){
                int y = G[x][j];
                if(a[x] < a[y]) f[y] = 1 - f[y];
            }
        }
    }

    cout << ans.size() << endl;
    rep(i,ans.size()){
        cout << ans[i] << endl;
    }
    return 0;
}
 
 
0