結果

問題 No.1477 Lamps on Graph
ユーザー HaaHaa
提出日時 2021-04-16 20:10:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 1,019 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 178,252 KB
実行使用メモリ 14,352 KB
最終ジャッジ日時 2024-07-02 22:02:57
合計ジャッジ時間 8,138 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 4 ms
5,888 KB
testcase_02 AC 4 ms
5,760 KB
testcase_03 AC 4 ms
5,888 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 4 ms
5,888 KB
testcase_06 AC 4 ms
5,888 KB
testcase_07 AC 4 ms
5,760 KB
testcase_08 AC 4 ms
5,888 KB
testcase_09 AC 4 ms
5,760 KB
testcase_10 AC 4 ms
5,760 KB
testcase_11 AC 4 ms
5,888 KB
testcase_12 AC 129 ms
10,240 KB
testcase_13 AC 127 ms
9,600 KB
testcase_14 AC 154 ms
11,008 KB
testcase_15 AC 62 ms
8,320 KB
testcase_16 AC 45 ms
7,808 KB
testcase_17 AC 47 ms
7,680 KB
testcase_18 AC 174 ms
10,660 KB
testcase_19 AC 117 ms
9,600 KB
testcase_20 AC 45 ms
7,424 KB
testcase_21 AC 150 ms
9,568 KB
testcase_22 AC 28 ms
6,912 KB
testcase_23 AC 83 ms
8,832 KB
testcase_24 AC 188 ms
11,520 KB
testcase_25 AC 60 ms
7,936 KB
testcase_26 AC 177 ms
11,136 KB
testcase_27 AC 73 ms
8,576 KB
testcase_28 AC 92 ms
9,344 KB
testcase_29 AC 93 ms
8,832 KB
testcase_30 AC 98 ms
8,192 KB
testcase_31 AC 64 ms
7,936 KB
testcase_32 AC 268 ms
14,352 KB
testcase_33 AC 223 ms
13,984 KB
testcase_34 AC 258 ms
14,348 KB
testcase_35 AC 242 ms
13,440 KB
testcase_36 AC 230 ms
13,440 KB
testcase_37 AC 184 ms
13,056 KB
testcase_38 AC 205 ms
13,440 KB
testcase_39 AC 230 ms
13,312 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;
    VI a(n); vector<P> p(n);
    REP(i,n){
        cin >> a[i];
        p[i]={a[i],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]){
                if(p[i].first<a[to])
                    f[to]=!f[to];
            }
        }
    }
    cout << z << endl;
    for(auto i:ans)
        cout << i << endl;
    return 0;
}
0