結果

問題 No.2431 Viral Hotel
ユーザー planes
提出日時 2023-08-18 22:45:56
言語 C++14
(gcc 13.3.0 + boost 1.87.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 42
権限があれば一括ダウンロードができます

ソースコード

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