結果

問題 No.1477 Lamps on Graph
ユーザー abc3abc3
提出日時 2021-04-16 23:32:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 1,404 bytes
コンパイル時間 2,509 ms
コンパイル使用メモリ 218,376 KB
実行使用メモリ 16,540 KB
最終ジャッジ日時 2024-07-03 04:30:47
合計ジャッジ時間 8,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 130 ms
9,216 KB
testcase_13 AC 141 ms
8,960 KB
testcase_14 AC 161 ms
10,112 KB
testcase_15 AC 61 ms
5,760 KB
testcase_16 AC 47 ms
7,040 KB
testcase_17 AC 53 ms
6,656 KB
testcase_18 AC 205 ms
12,800 KB
testcase_19 AC 127 ms
10,112 KB
testcase_20 AC 43 ms
5,376 KB
testcase_21 AC 184 ms
10,880 KB
testcase_22 AC 25 ms
5,376 KB
testcase_23 AC 80 ms
6,144 KB
testcase_24 AC 217 ms
11,520 KB
testcase_25 AC 63 ms
5,504 KB
testcase_26 AC 211 ms
12,672 KB
testcase_27 AC 69 ms
6,784 KB
testcase_28 AC 93 ms
8,832 KB
testcase_29 AC 98 ms
7,296 KB
testcase_30 AC 114 ms
7,936 KB
testcase_31 AC 69 ms
7,040 KB
testcase_32 AC 325 ms
16,540 KB
testcase_33 AC 281 ms
16,284 KB
testcase_34 AC 274 ms
16,540 KB
testcase_35 AC 273 ms
15,616 KB
testcase_36 AC 279 ms
15,616 KB
testcase_37 AC 208 ms
15,616 KB
testcase_38 AC 236 ms
15,616 KB
testcase_39 AC 269 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

    #include <bits/stdc++.h>
    using namespace std;
    #include <math.h>
    #include <iomanip>
    #include <cstdint>
    #include <string>
    #include <sstream>
    template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
    template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
    #define rep(i,n) for (int i = 0; i < (n); ++i)
    typedef long long ll;
    using P=pair<ll,ll>;
    const int INF=1001001001;
    const int mod=998244353;

    int main(){
      int n,m;
      cin>>n>>m;
      vector<int>a(n);
      vector<P>p(n);
      rep(i,n){
        cin>>a[i];
        p[i]=P(a[i],i);
      }
      vector<vector<int>>G(n);
      rep(i,m){
        int u,v;
        cin>>u>>v;
        u--;v--;
        G[u].push_back(v);
        G[v].push_back(u);
      }
      int k;
      cin>>k;
      map<int,int>mp;
      rep(i,k){
        int b;
        cin>>b;
        b--;
        mp[b]=1;
      }
      sort(p.begin(),p.end());
      
      int z=0;
      vector<int>x;
      rep(i,n){
        int val=p[i].first,j=p[i].second;
        if(mp[j]){
          x.push_back(j+1);
          mp[j]=0;
          z++;
          for(int u:G[j]){
            if(a[u]>val){
              mp[u]^=1;
            }
          }
        }
      }
      cout<<z<<endl;
      for(int u:x){
        cout<<u<<endl;
      }
      return 0;
    }
0