結果
問題 | No.168 ものさし |
ユーザー | srjywrdnprkt |
提出日時 | 2022-12-25 19:24:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,841 bytes |
コンパイル時間 | 1,433 ms |
コンパイル使用メモリ | 120,448 KB |
実行使用メモリ | 17,684 KB |
最終ジャッジ日時 | 2024-11-19 09:36:03 |
合計ジャッジ時間 | 3,104 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
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 | AC | 3 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:83:9: warning: 'ans' may be used uninitialized [-Wmaybe-uninitialized] 83 | if(solve(c, ans)) r=c; | ^~ main.cpp:57:21: note: 'ans' was declared here 57 | long long N, c, ans, x, y, sq; | ^~~
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> using namespace std; struct UnionFind { vector<long long> par; vector<long long> siz; UnionFind(long long N) : par(N), siz(N) { for(long long i = 0; i < N; i++){ par[i] = i; siz[i] = 1; } } long long root(long long x) { if (par[x] == x) return x; return par[x] = root(par[x]); } void unite(long long x, long long y) { long long rx = root(x); long long ry = root(y); if (rx == ry) return; par[rx] = ry; siz[ry] += siz[rx]; } bool same(long long x, long long y) { long long rx = root(x); long long ry = root(y); return rx == ry; } long long size(long long x){ return siz[root(x)]; } }; template<typename T> using pq = priority_queue<T, vector<T>, greater<T>>; bool solve(long long n, long long m){ return n*n*100 >= m; } int main(){ long long N, c, ans, x, y, sq; cin >> N; pq<tuple<long long, long long, long long>> que; vector<long long> X(N), Y(N); for (int i=0; i<N; i++) cin >> X[i] >> Y[i]; UnionFind tree(N); for (int i=0; i<N; i++){ for (int j=i+1; j<N; j++){ c = (X[i]-X[j])*(X[i]-X[j]) + (Y[i]-Y[j])*(Y[i]-Y[j]); que.push({c, i, j}); } } while(!que.empty()){ tie(c, x, y) = que.top(); que.pop(); if (!tree.same(x, y)){ ans = c; tree.unite(x, y); } } long long l=0, r=2e8; while(r-l>1){ c = (l+r)/2; if(solve(c, ans)) r=c; else l=c; } cout << r*10 << endl; return 0; }