結果

問題 No.2376 障害物競プロ
ユーザー SSRSSSRS
提出日時 2023-07-07 22:18:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 831 ms / 4,000 ms
コード長 1,632 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 175,564 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 18:25:08
合計ジャッジ時間 70,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 497 ms
5,376 KB
testcase_05 AC 719 ms
5,376 KB
testcase_06 AC 276 ms
5,376 KB
testcase_07 AC 818 ms
5,376 KB
testcase_08 AC 831 ms
6,940 KB
testcase_09 AC 826 ms
6,944 KB
testcase_10 AC 826 ms
6,940 KB
testcase_11 AC 757 ms
6,944 KB
testcase_12 AC 692 ms
6,944 KB
testcase_13 AC 811 ms
6,944 KB
testcase_14 AC 795 ms
6,944 KB
testcase_15 AC 746 ms
6,940 KB
testcase_16 AC 775 ms
6,940 KB
testcase_17 AC 713 ms
6,940 KB
testcase_18 AC 670 ms
6,944 KB
testcase_19 AC 719 ms
6,944 KB
testcase_20 AC 736 ms
6,944 KB
testcase_21 AC 713 ms
6,944 KB
testcase_22 AC 641 ms
6,940 KB
testcase_23 AC 411 ms
6,940 KB
testcase_24 AC 490 ms
6,940 KB
testcase_25 AC 232 ms
6,940 KB
testcase_26 AC 551 ms
6,940 KB
testcase_27 AC 473 ms
6,944 KB
testcase_28 AC 255 ms
6,940 KB
testcase_29 AC 240 ms
6,940 KB
testcase_30 AC 221 ms
6,940 KB
testcase_31 AC 299 ms
6,940 KB
testcase_32 AC 34 ms
6,944 KB
testcase_33 AC 98 ms
6,944 KB
testcase_34 AC 138 ms
6,940 KB
testcase_35 AC 93 ms
6,940 KB
testcase_36 AC 439 ms
6,940 KB
testcase_37 AC 623 ms
5,376 KB
testcase_38 AC 223 ms
5,376 KB
testcase_39 AC 582 ms
5,376 KB
testcase_40 AC 167 ms
6,940 KB
testcase_41 AC 229 ms
5,376 KB
testcase_42 AC 782 ms
5,376 KB
testcase_43 AC 786 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const double INF = 1000000000;
struct point{
  int x, y;
  point(){
  }
  point(int x, int y): x(x), y(y){
  }
  point operator -(point P){
    return point(x - P.x, y - P.y);
  }
};
double abs(point P){
  return hypot(P.x, P.y);
}
double dist(point P, point Q){
  return abs(Q - P);
}
int cross(point A, point B){
  return A.x * B.y - A.y * B.x;
}
int main(){
  cout << fixed << setprecision(20);
  int N, M;
  cin >> N >> M;
  vector<point> P(N * 2);
  for (int i = 0; i < N * 2; i++){
    cin >> P[i].x >> P[i].y;
  }
  vector<vector<double>> D(N * 2, vector<double>(N * 2, INF));
  for (int i = 0; i < N * 2; i++){
    for (int j = i + 1; j < N * 2; j++){
      bool ok = true;
      for (int k = 0; k < N; k++){
        long long a = cross(P[k * 2] - P[i], P[j] - P[i]);
        long long b = cross(P[k * 2 + 1] - P[i], P[j] - P[i]);
        if (a > 0 && b < 0 || a < 0 && b > 0){
          long long c = cross(P[i] - P[k * 2], P[k * 2 + 1] - P[k * 2]);
          long long d = cross(P[j] - P[k * 2], P[k * 2 + 1] - P[k * 2]);
          if (c > 0 && d < 0 || c < 0 && d > 0){
            ok = false;
          }
        }
      }
      if (ok){
        D[i][j] = dist(P[i], P[j]);
        D[j][i] = dist(P[i], P[j]);
      }
    }
  }
  for (int i = 0; i < N * 2; i++){
    for (int j = 0; j < N * 2; j++){
      for (int k = 0; k < N * 2; k++){
        D[j][k] = min(D[j][k], D[j][i] + D[i][k]);
      }
    }
  }
  for (int i = 0; i < M; i++){
    int a, b, c, d;
    cin >> a >> b >> c >> d;
    a--;
    b--;
    c--;
    d--;
    cout << D[a * 2 + b][c * 2 + d] << endl;
  }
}
0