結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
11,124 KB
testcase_01 AC 49 ms
10,240 KB
testcase_02 AC 48 ms
10,240 KB
testcase_03 AC 61 ms
12,160 KB
testcase_04 AC 61 ms
12,252 KB
testcase_05 AC 72 ms
12,764 KB
testcase_06 AC 15 ms
5,248 KB
testcase_07 AC 14 ms
5,248 KB
testcase_08 AC 15 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 75 ms
13,464 KB
testcase_13 AC 61 ms
12,032 KB
testcase_14 AC 29 ms
8,112 KB
testcase_15 AC 12 ms
5,248 KB
testcase_16 AC 37 ms
9,868 KB
testcase_17 AC 25 ms
6,912 KB
testcase_18 AC 58 ms
11,800 KB
testcase_19 AC 35 ms
9,496 KB
testcase_20 AC 18 ms
6,656 KB
testcase_21 AC 14 ms
5,504 KB
testcase_22 AC 38 ms
8,792 KB
testcase_23 AC 40 ms
8,960 KB
testcase_24 AC 23 ms
7,936 KB
testcase_25 AC 54 ms
11,008 KB
testcase_26 AC 32 ms
9,088 KB
testcase_27 AC 38 ms
8,576 KB
testcase_28 AC 29 ms
7,552 KB
testcase_29 AC 30 ms
7,680 KB
testcase_30 AC 34 ms
8,192 KB
testcase_31 AC 45 ms
10,748 KB
testcase_32 AC 15 ms
5,376 KB
testcase_33 AC 30 ms
7,296 KB
testcase_34 AC 4 ms
5,248 KB
testcase_35 AC 12 ms
5,248 KB
testcase_36 AC 52 ms
10,652 KB
testcase_37 AC 35 ms
8,308 KB
testcase_38 AC 18 ms
7,040 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 1 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 AC 66 ms
12,536 KB
testcase_44 AC 38 ms
9,128 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