結果

問題 No.1069 電柱 / Pole (Hard)
ユーザー beetbeet
提出日時 2022-12-06 00:37:52
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,077 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 225,152 KB
実行使用メモリ 211,584 KB
最終ジャッジ日時 2024-10-12 20:29:14
合計ジャッジ時間 11,569 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
35,712 KB
testcase_01 AC 11 ms
35,712 KB
testcase_02 AC 12 ms
35,584 KB
testcase_03 AC 12 ms
35,456 KB
testcase_04 AC 677 ms
198,812 KB
testcase_05 WA -
testcase_06 AC 82 ms
50,992 KB
testcase_07 AC 129 ms
58,224 KB
testcase_08 AC 45 ms
43,912 KB
testcase_09 AC 143 ms
59,100 KB
testcase_10 AC 16 ms
37,236 KB
testcase_11 AC 15 ms
36,736 KB
testcase_12 AC 12 ms
35,968 KB
testcase_13 AC 216 ms
66,680 KB
testcase_14 AC 39 ms
42,532 KB
testcase_15 AC 45 ms
43,284 KB
testcase_16 AC 30 ms
40,620 KB
testcase_17 AC 27 ms
39,768 KB
testcase_18 AC 20 ms
38,392 KB
testcase_19 AC 286 ms
73,984 KB
testcase_20 AC 399 ms
87,804 KB
testcase_21 AC 149 ms
59,776 KB
testcase_22 AC 34 ms
42,020 KB
testcase_23 AC 391 ms
80,528 KB
testcase_24 AC 54 ms
49,124 KB
testcase_25 AC 129 ms
62,304 KB
testcase_26 AC 88 ms
62,184 KB
testcase_27 AC 86 ms
62,184 KB
testcase_28 AC 109 ms
62,188 KB
testcase_29 AC 14 ms
36,480 KB
testcase_30 AC 12 ms
35,784 KB
testcase_31 AC 12 ms
35,460 KB
testcase_32 AC 12 ms
35,676 KB
testcase_33 AC 13 ms
35,584 KB
testcase_34 AC 11 ms
35,456 KB
testcase_35 AC 11 ms
35,328 KB
testcase_36 AC 12 ms
35,712 KB
testcase_37 AC 105 ms
50,936 KB
testcase_38 AC 37 ms
41,236 KB
testcase_39 AC 12 ms
35,584 KB
testcase_40 AC 14 ms
36,444 KB
testcase_41 AC 35 ms
40,924 KB
testcase_42 AC 57 ms
44,212 KB
testcase_43 AC 39 ms
42,236 KB
testcase_44 AC 168 ms
63,932 KB
testcase_45 AC 95 ms
52,708 KB
testcase_46 AC 195 ms
65,968 KB
testcase_47 AC 93 ms
53,324 KB
testcase_48 AC 205 ms
63,636 KB
testcase_49 AC 19 ms
38,032 KB
testcase_50 AC 21 ms
37,940 KB
testcase_51 AC 110 ms
54,296 KB
testcase_52 AC 17 ms
36,992 KB
testcase_53 AC 35 ms
42,244 KB
testcase_54 AC 12 ms
35,584 KB
testcase_55 AC 12 ms
35,552 KB
testcase_56 AC 10 ms
35,328 KB
testcase_57 AC 11 ms
35,712 KB
testcase_58 AC 12 ms
35,456 KB
testcase_59 AC 12 ms
35,584 KB
testcase_60 AC 11 ms
35,708 KB
testcase_61 AC 22 ms
35,456 KB
testcase_62 AC 11 ms
35,328 KB
testcase_63 AC 12 ms
35,712 KB
testcase_64 AC 12 ms
35,716 KB
testcase_65 AC 11 ms
35,456 KB
testcase_66 AC 11 ms
35,456 KB
testcase_67 AC 10 ms
35,584 KB
testcase_68 AC 11 ms
35,456 KB
testcase_69 AC 12 ms
35,840 KB
testcase_70 AC 13 ms
35,912 KB
testcase_71 AC 14 ms
36,224 KB
testcase_72 AC 12 ms
35,840 KB
testcase_73 AC 12 ms
35,812 KB
testcase_74 AC 13 ms
36,224 KB
testcase_75 AC 14 ms
35,968 KB
testcase_76 AC 136 ms
58,180 KB
testcase_77 AC 141 ms
56,416 KB
testcase_78 AC 18 ms
36,992 KB
testcase_79 AC 307 ms
74,024 KB
testcase_80 AC 163 ms
56,444 KB
testcase_81 AC 77 ms
49,668 KB
testcase_82 AC 406 ms
78,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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<short> vs;
    bool isvalid(int nxt){
      if(dist[vs.back()][nxt]<0) return false;
      if(count(vs.begin(),vs.end(),nxt)) return false;
      return true;
    }
    D len;
    bool operator<(const Path &o)const{
      if(len!=o.len) return len<o.len;
      if(vs.size()!=o.vs.size()) 
        return vs.size()<o.vs.size();
      return vs<o.vs;
    };
    bool operator>(const Path &o)const{
      if(len!=o.len) return len>o.len;
      if(vs.size()!=o.vs.size()) 
        return vs.size()>o.vs.size();
      return vs>o.vs;
    };
  };

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

  auto push=[&](Path p){
    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();

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

    for(int u:G[v]){
      if(!p.isvalid(u)) continue;
      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<<endl;
      continue;
    }
    cout<<dp[y].begin()->len<<endl;
    dp[y].erase(dp[y].begin());
  }
  return 0;
}
0