結果

問題 No.168 ものさし
コンテスト
ユーザー firiexp
提出日時 2019-10-29 19:00:54
言語 C++17(gcc12)
(gcc 12.4.0 + boost 1.89.0)
コンパイル:
g++-12 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,782 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 558 ms
コンパイル使用メモリ 105,700 KB
最終ジャッジ日時 2026-03-08 21:45:20
合計ジャッジ時間 1,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:57:86: error: invalid use of incomplete type ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<long long int, 3> >, std::array<long long int, 3> >::value_type’ {aka ‘struct std::array<long long int, 3>’}
   57 |             v[i*n+j] = {(xs[i]-xs[j])*(xs[i]-xs[j])+(ys[i]-ys[j])*(ys[i]-ys[j]), i, j};
      |                                                                                      ^
In file included from /usr/include/c++/12/bits/stl_map.h:63,
                 from /usr/include/c++/12/map:61,
                 from main.cpp:4:
/usr/include/c++/12/tuple:1610:45: note: declaration of ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<long long int, 3> >, std::array<long long int, 3> >::value_type’ {aka ‘struct std::array<long long int, 3>’}
 1610 |   template<typename _Tp, size_t _Nm> struct array;
      |                                             ^~~~~
main.cpp:64:25: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<long long int, 3> >, std::array<long long int, 3> >::value_type’ {aka ‘std::array<long long int, 3>’} and ‘int’)
   64 |         if(uf.unite(v[i][1], v[i][2])){
      |                         ^
main.cpp:64:34: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<long long int, 3> >, std::array<long long int, 3> >::value_type’ {aka ‘std::array<long long int, 3>’} and ‘int’)
   64 |         if(uf.unite(v[i][1], v[i][2])){
      |                                  ^
main.cpp:65:32: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<long long int, 3> >, std::array<long long int, 3> >::value_type’ {aka ‘std::array<long long int, 3>’} and ‘int’)
   65 |             ans = max(ans, v[i][0]);
      |                                ^
In file included from /usr/include/c++/12/vector

ソースコード

diff #
raw source code

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

class UnionFind {
    int n;
    vector<int> uni;
    int forest_size;
public:
    explicit UnionFind(int n) : n(n), uni(static_cast<u32>(n), -1), forest_size(n) {};

    int root(int a){
        if (uni[a] < 0) return a;
        else return (uni[a] = root(uni[a]));
    }

    bool unite(int a, int b) {
        a = root(a);
        b = root(b);
        if(a == b) return false;
        if(uni[a] > uni[b]) swap(a, b);
        uni[a] += uni[b];
        uni[b] = a;
        forest_size--;
        return true;
    }
    int size(){ return forest_size; }
    int size(int i){ return -uni[root(i)]; }
    bool same(int a, int b) { return root(a) == root(b); }
};

int main() {
    int n;
    cin >> n;
    vector<ll> xs(n), ys(n);
    for (int i = 0; i < n; ++i) {
        scanf("%lld %lld", &xs[i], &ys[i]);
    }
    UnionFind uf(n);
    vector<array<ll, 3>> v(n*n);
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < n; ++j) {
            v[i*n+j] = {(xs[i]-xs[j])*(xs[i]-xs[j])+(ys[i]-ys[j])*(ys[i]-ys[j]), i, j};
        }
    }
    ll ans = 0;
    sort(v.begin(),v.end());
    for (int i = n; i < n*n; ++i) {
        if(uf.same(0, n-1)) break;
        if(uf.unite(v[i][1], v[i][2])){
            ans = max(ans, v[i][0]);
        }
    }
    ll ng = 0, ok = 142000000;
    while(ok-ng > 1){
        ll mid = (ok+ng)/2;
        (mid*mid*100 >= ans ? ok : ng) = mid;
    }
    cout << ok*10 << "\n";
    return 0;
}
0