結果

問題 No.2376 障害物競プロ
ユーザー umezoumezo
提出日時 2023-07-10 05:34:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 4,000 ms
コード長 1,126 bytes
コンパイル時間 2,213 ms
コンパイル使用メモリ 201,876 KB
実行使用メモリ 7,624 KB
最終ジャッジ日時 2024-07-26 21:10:14
合計ジャッジ時間 51,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 233 ms
5,888 KB
testcase_05 AC 312 ms
6,948 KB
testcase_06 AC 133 ms
5,376 KB
testcase_07 AC 411 ms
7,368 KB
testcase_08 AC 412 ms
7,624 KB
testcase_09 AC 408 ms
7,552 KB
testcase_10 AC 400 ms
7,476 KB
testcase_11 AC 349 ms
7,552 KB
testcase_12 AC 338 ms
7,524 KB
testcase_13 AC 407 ms
7,488 KB
testcase_14 AC 403 ms
7,552 KB
testcase_15 AC 375 ms
7,424 KB
testcase_16 AC 418 ms
7,424 KB
testcase_17 AC 358 ms
7,568 KB
testcase_18 AC 344 ms
7,496 KB
testcase_19 AC 384 ms
7,600 KB
testcase_20 AC 390 ms
7,592 KB
testcase_21 AC 396 ms
7,552 KB
testcase_22 AC 342 ms
6,912 KB
testcase_23 AC 241 ms
5,888 KB
testcase_24 AC 227 ms
6,144 KB
testcase_25 AC 113 ms
5,376 KB
testcase_26 AC 253 ms
6,272 KB
testcase_27 AC 223 ms
6,016 KB
testcase_28 AC 137 ms
5,376 KB
testcase_29 AC 112 ms
5,376 KB
testcase_30 AC 143 ms
5,376 KB
testcase_31 AC 147 ms
5,376 KB
testcase_32 AC 20 ms
5,376 KB
testcase_33 AC 62 ms
5,376 KB
testcase_34 AC 78 ms
5,376 KB
testcase_35 AC 45 ms
5,376 KB
testcase_36 AC 257 ms
6,016 KB
testcase_37 AC 295 ms
6,784 KB
testcase_38 AC 109 ms
5,376 KB
testcase_39 AC 320 ms
6,784 KB
testcase_40 AC 116 ms
5,376 KB
testcase_41 AC 102 ms
5,376 KB
testcase_42 AC 418 ms
7,624 KB
testcase_43 AC 409 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#include <bits/stdc++.h>
using namespace std;

double EPS=1e-9,dis[310][310],X[310],Y[310];
int n,m,A[200200][4],INF=1e9+7;

void floyd(){
  rep(k,2*n){
    rep(i,2*n){
      if(dis[i][k]>INF-EPS) continue;
      rep(j,2*n){
        if(dis[k][j]>INF-EPS) continue;
        dis[i][j]=min(dis[i][j],dis[i][k]+dis[k][j]);
      }
    }
  }
}

int main(){
  cin>>n>>m;
  rep(i,2*n){
    rep(j,2*n) if(i!=j) dis[i][j]=INF;
    cin>>X[i]>>Y[i];
  }
  rep(i,m) rep(j,4) cin>>A[i][j];
  
  auto cr=[&](int a,int b,int c)->double{
    return (X[b]-X[a])*(Y[c]-Y[a])-(Y[b]-Y[a])*(X[c]-X[a]);
  };
  auto f=[&](int a,int b,int c,int d)->int{
    return (cr(a,b,c)*cr(a,b,d)<0 && cr(c,d,a)*cr(c,d,b)<0)?0:1;
  }; 
  
  rep(i,2*n){
    for(int j=i+1;j<2*n;j++){
      int e=1;
      rep(k,n){
        if(k==i/2 || k==j/2) continue;
        if(f(i,j,2*k,2*k+1)==0) e=0;
      }
      if(e){
        double p=X[i]-X[j],q=Y[i]-Y[j];
        dis[j][i]=dis[i][j]=sqrt(p*p+q*q);
      }
    }
  }
  floyd();
  rep(i,m) printf("%.10f\n",dis[2*A[i][0]+A[i][1]-3][2*A[i][2]+A[i][3]-3]);
  
  return 0;
}
0