結果

問題 No.1069 電柱 / Pole (Hard)
ユーザー beetbeet
提出日時 2020-05-29 22:16:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 2,569 bytes
コンパイル時間 2,817 ms
コンパイル使用メモリ 222,688 KB
実行使用メモリ 104,688 KB
最終ジャッジ日時 2024-11-06 12:03:58
合計ジャッジ時間 6,441 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
35,520 KB
testcase_01 AC 12 ms
35,604 KB
testcase_02 AC 12 ms
35,580 KB
testcase_03 AC 12 ms
35,592 KB
testcase_04 AC 220 ms
104,688 KB
testcase_05 WA -
testcase_06 AC 19 ms
37,296 KB
testcase_07 AC 24 ms
37,340 KB
testcase_08 AC 23 ms
38,288 KB
testcase_09 AC 22 ms
38,240 KB
testcase_10 AC 15 ms
36,424 KB
testcase_11 AC 12 ms
35,716 KB
testcase_12 AC 13 ms
35,920 KB
testcase_13 AC 32 ms
39,708 KB
testcase_14 AC 38 ms
38,464 KB
testcase_15 AC 28 ms
39,664 KB
testcase_16 AC 16 ms
36,884 KB
testcase_17 AC 19 ms
37,596 KB
testcase_18 AC 17 ms
37,188 KB
testcase_19 AC 31 ms
39,692 KB
testcase_20 AC 37 ms
40,744 KB
testcase_21 AC 24 ms
38,428 KB
testcase_22 AC 42 ms
38,804 KB
testcase_23 AC 41 ms
40,920 KB
testcase_24 AC 19 ms
38,052 KB
testcase_25 AC 21 ms
37,972 KB
testcase_26 AC 21 ms
37,864 KB
testcase_27 AC 22 ms
38,120 KB
testcase_28 AC 21 ms
38,116 KB
testcase_29 AC 13 ms
36,024 KB
testcase_30 AC 12 ms
35,604 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 12 ms
35,544 KB
testcase_34 AC 12 ms
35,604 KB
testcase_35 AC 11 ms
35,448 KB
testcase_36 AC 12 ms
35,380 KB
testcase_37 AC 19 ms
37,312 KB
testcase_38 AC 16 ms
36,752 KB
testcase_39 AC 11 ms
35,656 KB
testcase_40 AC 14 ms
36,380 KB
testcase_41 AC 21 ms
37,836 KB
testcase_42 AC 16 ms
36,876 KB
testcase_43 AC 13 ms
35,872 KB
testcase_44 AC 23 ms
38,360 KB
testcase_45 AC 25 ms
38,980 KB
testcase_46 AC 27 ms
39,072 KB
testcase_47 AC 19 ms
37,676 KB
testcase_48 AC 25 ms
38,296 KB
testcase_49 AC 17 ms
37,116 KB
testcase_50 AC 14 ms
36,416 KB
testcase_51 AC 21 ms
37,872 KB
testcase_52 AC 13 ms
36,200 KB
testcase_53 AC 19 ms
37,228 KB
testcase_54 AC 12 ms
35,448 KB
testcase_55 AC 11 ms
35,748 KB
testcase_56 AC 12 ms
35,496 KB
testcase_57 AC 12 ms
35,692 KB
testcase_58 AC 11 ms
35,588 KB
testcase_59 AC 12 ms
35,680 KB
testcase_60 AC 11 ms
35,636 KB
testcase_61 AC 12 ms
35,488 KB
testcase_62 AC 11 ms
35,436 KB
testcase_63 AC 11 ms
35,496 KB
testcase_64 AC 12 ms
35,676 KB
testcase_65 AC 11 ms
35,648 KB
testcase_66 AC 11 ms
35,636 KB
testcase_67 AC 11 ms
35,752 KB
testcase_68 AC 12 ms
35,572 KB
testcase_69 AC 14 ms
36,192 KB
testcase_70 AC 13 ms
35,816 KB
testcase_71 AC 14 ms
36,052 KB
testcase_72 AC 14 ms
35,872 KB
testcase_73 AC 13 ms
35,712 KB
testcase_74 AC 14 ms
36,204 KB
testcase_75 AC 14 ms
36,288 KB
testcase_76 AC 20 ms
37,932 KB
testcase_77 AC 21 ms
37,660 KB
testcase_78 AC 12 ms
35,596 KB
testcase_79 AC 32 ms
39,836 KB
testcase_80 AC 23 ms
38,052 KB
testcase_81 AC 21 ms
38,236 KB
testcase_82 AC 39 ms
40,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}
using Int = long long;
const char newl = '\n';

struct Precision{
  Precision(){
    cout<<fixed<<setprecision(12);
  }
}precision_beet;

//INSERT ABOVE HERE

using D = double;
const int MAX = 2020;
D dist[MAX][MAX];

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

  int n,m,k;
  cin>>n>>m>>k;
  int x,y;
  cin>>x>>y;
  x--;y--;

  for(int i=0;i<MAX;i++)
    for(int j=0;j<MAX;j++)
      dist[i][j]=-1;

  vector<D> ps(n),qs(n);
  for(int i=0;i<n;i++) cin>>ps[i]>>qs[i];

  vector<vector<int>> G(n);
  for(int i=0;i<m;i++){
    int u,v;
    cin>>u>>v;
    u--;v--;
    D d=hypot(ps[u]-ps[v],qs[u]-qs[v]);
    dist[u][v]=dist[v][u]=d;
    G[u].emplace_back(v);
    G[v].emplace_back(u);
  }

  struct Path{
    vector<int> vs;
    bool isvalid(int nxt){
      assert(!vs.empty());
      //cerr<<"sz:"<<vs.size()<<endl;
      //cerr<<vs.back()<<' '<<nxt<<endl;
      //cerr<<dist[vs.back()][nxt]<<endl;
      if(dist[vs.back()][nxt]<0) return false;
      //cerr<<"sz:"<<vs.size()<<endl;
      if(count(vs.begin(),vs.end(),nxt)) return false;
      //cerr<<"sz:"<<vs.size()<<endl;
      return true;
      //cerr<<"sz:"<<vs.size()<<endl;
    }
    D len;
    bool operator<(const Path &o)const{
      if(len!=o.len) return len<o.len;
      return vs<o.vs;
    };
    bool operator>(const Path &o)const{
      if(len!=o.len) return len>o.len;
      return vs>o.vs;
    };
  };

  priority_queue<Path, vector<Path>, greater<Path>> pq;
  vector<set<Path>> dp(n);

  auto push=[&](Path p){
    // cerr<<p.vs.back()<<endl;
    // cerr<<dp[p.vs.back()].size()<<endl;
    if(dp[p.vs.back()].count(p)) return;
    dp[p.vs.back()].emplace(p);
    pq.emplace(p);
  };

  {
    Path p;
    p.vs.emplace_back(x);
    p.len=0;
    push(p);
  }

  vector<int> cnt(n,0);
  while(!pq.empty()){
    Path p=pq.top();pq.pop();
    int v=p.vs.back();

    // cerr<<v<<' '<<p.len<<endl;

    cnt[v]++;
    if(cnt[y]==k) break;
    if(cnt[v]>k) continue;

    for(int u:G[v]){
      // cerr<<v<<"->"<<u<<endl;
      if(!p.isvalid(u)) continue;
      // cerr<<v<<"->"<<u<<endl;
      p.vs.emplace_back(u);
      p.len+=dist[v][u];
      push(p);
      p.vs.pop_back();
      p.len-=dist[v][u];
    }
  }

  for(int i=0;i<k;i++){
    if(dp[y].empty()){
      cout<<-1<<newl;
      continue;
    }
    cout<<dp[y].begin()->len<<newl;
    dp[y].erase(dp[y].begin());
  }
  return 0;
}
0