結果
問題 | No.1998 Manhattan Restaurant |
ユーザー | t98slider |
提出日時 | 2022-07-02 20:04:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,634 bytes |
コンパイル時間 | 2,053 ms |
コンパイル使用メモリ | 174,992 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 17:26:50 |
合計ジャッジ時間 | 5,828 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 8 ms
5,376 KB |
testcase_07 | AC | 13 ms
5,376 KB |
testcase_08 | AC | 13 ms
5,376 KB |
testcase_09 | AC | 14 ms
5,376 KB |
testcase_10 | AC | 7 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 11 ms
5,376 KB |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | AC | 673 ms
5,376 KB |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | TLE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; //重み付きUnion_Find(XOR) struct Weighted_dsu { public: Weighted_dsu() : _n(0) {} Weighted_dsu(int n) : _n(n), parent_or_size(n, -1),diff_weight(n,0) {} bool merge(int a, int b, int w) { int x = leader(a), y = leader(b); if(x==y){ if(diff(a,b)==w)return true; return false; } w ^= diff_weight[a], w ^= diff_weight[b]; if (-parent_or_size[x] < -parent_or_size[y]) std::swap(x, y); parent_or_size[x] += parent_or_size[y]; parent_or_size[y] = x; diff_weight[y] ^= w; return true; } int diff(int x, int y) { leader(x),leader(y); return diff_weight[y] ^ diff_weight[x]; } bool same(int a, int b) { return leader(a) == leader(b); } int leader(int a) { if (parent_or_size[a] < 0) return a; int r = leader(parent_or_size[a]); diff_weight[a] ^= diff_weight[parent_or_size[a]]; return parent_or_size[a] = r; } int size(int a) { return -parent_or_size[leader(a)]; } std::vector<std::vector<int>> groups() { std::vector<int> leader_buf(_n), group_size(_n); for (int i = 0; i < _n; i++) { leader_buf[i] = leader(i); group_size[leader_buf[i]]++; } std::vector<std::vector<int>> result(_n); for (int i = 0; i < _n; i++) { result[i].reserve(group_size[i]); } for (int i = 0; i < _n; i++) { result[leader_buf[i]].push_back(i); } result.erase( std::remove_if(result.begin(), result.end(), [&](const std::vector<int>& v) { return v.empty(); }), result.end()); return result; } private: int _n; std::vector<int> parent_or_size; std::vector<int> diff_weight; }; int main(){ int n; cin >> n; if(n >= 10000)return 1; vector<pair<ll,ll>> a(n); for(auto &&p:a)cin >> p.first >> p.second; auto dist = [&](int i, int j){ return abs(a[i].first - a[j].first) + abs(a[i].second - a[j].second); }; auto f = [&](ll lim){ Weighted_dsu uf(n); for(int i = 0; i < n; i++){ for(int j = 0; j < i; j++){ if(dist(i, j) > lim && !uf.merge(i, j, 1))return false; } } return true; }; ll ng = -1, ok = 1ll << 32, mid; while(ng + 1 < ok){ mid = (ng + ok) / 2; if(f(mid))ok = mid; else ng = mid; } cout << ok / 2 << '\n'; }