結果

問題 No.1477 Lamps on Graph
ユーザー 👑 NachiaNachia
提出日時 2021-04-16 20:54:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 902 bytes
コンパイル時間 949 ms
コンパイル使用メモリ 88,296 KB
実行使用メモリ 11,720 KB
最終ジャッジ日時 2024-07-02 23:36:05
合計ジャッジ時間 4,464 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 44 ms
7,156 KB
testcase_13 AC 36 ms
6,916 KB
testcase_14 AC 50 ms
7,680 KB
testcase_15 AC 25 ms
5,376 KB
testcase_16 AC 18 ms
5,632 KB
testcase_17 AC 17 ms
5,376 KB
testcase_18 AC 45 ms
8,584 KB
testcase_19 AC 36 ms
7,284 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 36 ms
7,616 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 30 ms
5,632 KB
testcase_24 AC 56 ms
8,464 KB
testcase_25 AC 21 ms
5,376 KB
testcase_26 AC 53 ms
8,900 KB
testcase_27 AC 29 ms
5,760 KB
testcase_28 AC 34 ms
6,912 KB
testcase_29 AC 30 ms
6,016 KB
testcase_30 AC 21 ms
5,824 KB
testcase_31 AC 19 ms
5,504 KB
testcase_32 AC 68 ms
11,716 KB
testcase_33 AC 60 ms
11,456 KB
testcase_34 AC 60 ms
11,720 KB
testcase_35 AC 74 ms
10,920 KB
testcase_36 AC 75 ms
10,928 KB
testcase_37 AC 67 ms
10,792 KB
testcase_38 AC 74 ms
10,924 KB
testcase_39 AC 73 ms
10,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
using ll=long long;
using ull=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N,M;
vector<vector<int>> E;
vector<int> A;
int K;
vector<int> X;

int main(){
  scanf("%d%d",&N,&M);
  A.resize(N);
  rep(i,N) scanf("%d",&A[i]);
  E.resize(N);
  rep(i,M){
    int u,v; scanf("%d%d",&u,&v); u--; v--;
    E[u].push_back(v);
    E[v].push_back(u);
  }
  scanf("%d",&K);
  X.assign(N,0);
  rep(i,N){ int b; scanf("%d",&b); b--; X[b]=1; }
  
  vector<pair<int,int>> Ord;
  rep(i,N) Ord.push_back({A[i],i});
  sort(Ord.begin(),Ord.end());

  vector<int> ans;
  rep(i,N){
    int p = Ord[i].second;
    if(X[p]==0) continue;
    ans.push_back(p);
    X[p] ^= 1;
    for(int e:E[p]) if(A[e]>A[p]) X[e] ^= 1;
  }

  printf("%d\n",(int)ans.size());
  for(int a:ans) printf("%d\n",a+1);
  return 0;
}
0