結果
問題 | No.2520 L1 Explosion |
ユーザー | MasKoaTS |
提出日時 | 2022-02-20 13:09:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,491 bytes |
コンパイル時間 | 997 ms |
コンパイル使用メモリ | 94,476 KB |
実行使用メモリ | 98,944 KB |
最終ジャッジ日時 | 2024-09-24 19:38:04 |
合計ジャッジ時間 | 14,145 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <set> #define rep(i, l, n) for (int i = (l); i < (n); i++) using namespace std; using Pair = pair<int, int>; template <class T> using V = vector<T>; template <class T> using VV = V<V<T> >; bool func(int N, VV<Pair>&route, V<int>&lis, int k) { V<int> c(N); rep(v, 0, N) { if (c[v]) { continue; } c[v] = 1; V<int> que = { v }; while (que.empty() == false) { int now = que[que.size() - 1]; que.pop_back(); for (auto& r : route[now]) { int nv = r.first, nd = r.second; if (nd <= lis[k]) { continue; } if (c[nv] == 0) { c[nv] = -c[now]; que.push_back(nv); } else if (c[nv] == c[now]) { return false; } } } } return true; } int main(void) { int N; cin >> N; VV<int> P(N, V<int>(2)); rep(i, 0, N) { cin >> P[i][0] >> P[i][1]; } set<int> st = { 0 }; VV<int> dist(N, V<int>(N)); VV<Pair> route(N, V<Pair>(0)); rep(i, 0, N - 1) { rep(j, i + 1, N) { dist[i][j] = dist[j][i] = abs(P[i][0] - P[j][0]) + abs(P[i][1] - P[j][1]); route[i].push_back({ j,dist[i][j] }); route[j].push_back({ i,dist[i][j] }); st.insert(-dist[i][j]); } } V<int> lis = {}; for (auto itr = st.begin(); itr != st.end(); itr++) { lis.push_back(-(*itr)); } int ok = 0, ng = lis.size(); while (ng - ok > 1) { int k = (ok + ng) / 2; if (func(N, route, lis, k)) { ok = k; } else { ng = k; } } int ans = lis[ok] / 2; cout << ans << endl; return 0; }