結果

問題 No.2431 Viral Hotel
ユーザー planesplanes
提出日時 2023-08-18 22:45:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 1,076 bytes
コンパイル時間 1,967 ms
コンパイル使用メモリ 178,428 KB
実行使用メモリ 13,468 KB
最終ジャッジ日時 2024-05-06 05:09:12
合計ジャッジ時間 5,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
11,132 KB
testcase_01 AC 54 ms
10,240 KB
testcase_02 AC 53 ms
10,368 KB
testcase_03 AC 61 ms
12,160 KB
testcase_04 AC 67 ms
12,376 KB
testcase_05 AC 79 ms
12,888 KB
testcase_06 AC 16 ms
5,376 KB
testcase_07 AC 16 ms
5,376 KB
testcase_08 AC 16 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 79 ms
13,468 KB
testcase_13 AC 68 ms
11,904 KB
testcase_14 AC 31 ms
8,116 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 37 ms
9,992 KB
testcase_17 AC 28 ms
6,844 KB
testcase_18 AC 64 ms
11,796 KB
testcase_19 AC 41 ms
9,368 KB
testcase_20 AC 20 ms
6,784 KB
testcase_21 AC 15 ms
5,504 KB
testcase_22 AC 41 ms
8,864 KB
testcase_23 AC 44 ms
8,960 KB
testcase_24 AC 26 ms
7,936 KB
testcase_25 AC 57 ms
10,880 KB
testcase_26 AC 35 ms
9,088 KB
testcase_27 AC 41 ms
8,704 KB
testcase_28 AC 32 ms
7,552 KB
testcase_29 AC 32 ms
7,552 KB
testcase_30 AC 37 ms
8,192 KB
testcase_31 AC 48 ms
10,624 KB
testcase_32 AC 15 ms
5,504 KB
testcase_33 AC 31 ms
7,424 KB
testcase_34 AC 5 ms
5,376 KB
testcase_35 AC 10 ms
5,376 KB
testcase_36 AC 54 ms
10,776 KB
testcase_37 AC 35 ms
8,436 KB
testcase_38 AC 20 ms
7,040 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 71 ms
12,788 KB
testcase_44 AC 43 ms
9,252 KB
testcase_45 AC 29 ms
7,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll INF=2e18;


int main() {
    ios::sync_with_stdio(false);
  cin.tie(0);

ll N,K,M,P;cin>>N>>K>>M>>P;
vector<vector<ll>> vec(N,vector<ll> (0));
for(ll i=0;i<M;i++) {
  ll u,v;cin>>u>>v;
  u--;v--;
  vec[u].push_back(v);
  vec[v].push_back(u);
}

vector<ll> s(N);
for(ll i=0;i<N;i++) cin>>s[i];

priority_queue<pair<ll,ll>,vector<pair<ll,ll>>,greater<pair<ll,ll>>> S;

vector<ll> when(N,-1);
vector<ll> ken(N,INF);

ll ans=0;
for(ll i=0;i<K;i++) {
  ll x;cin>>x;
  x--;
  when[x]=0;
  S.push(make_pair(s[x],x));
}

while(!S.empty()) {
  auto v=S.top();
  S.pop();
  if(ken[v.second]<v.first) continue;
  
  for(auto x:vec[v.second]) {
     if(ken[x]!=INF) continue;
    if(when[x]!=-1&&when[x]+P<=v.first) continue;
     if(when[x]!=-1) {
      ken[x]=v.first;
      ans++;
    }
    else {
      when[x]=v.first;
      S.push(make_pair(s[x]+v.first,x));
    }
  }
}

cout<<ans<<endl;

}
0