結果
問題 | No.168 ものさし |
ユーザー | 0w1 |
提出日時 | 2016-12-05 13:57:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,080 bytes |
コンパイル時間 | 1,626 ms |
コンパイル使用メモリ | 182,668 KB |
実行使用メモリ | 11,760 KB |
最終ジャッジ日時 | 2024-11-27 21:18:18 |
合計ジャッジ時間 | 2,741 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
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 | AC | 58 ms
11,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 58 ms
11,504 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair< int, int > pii; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef vector< pii > vp; typedef vector< vp > vvp; typedef vector< string > vs; typedef vector< double > vd; typedef vector< vd > vvd; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int N; vi X, Y; void init(){ cin >> N; X = Y = vi( N ); for( int i = 0; i < N; ++i ) cin >> X[ i ] >> Y[ i ]; } vector< tuple< ll, int, int > > edge; ll eu_dis2( int x, int y, int a, int b ){ ll dx = x - a; ll dy = y - b; return dx * dx + dy * dy; } struct dsu{ vi fa; dsu( int sz ){ fa = vi( sz ); for( int i = 0; i < sz; ++i ) fa[ i ] = i; } int find( int x ){ return fa[ x ] == x ? x : fa[ x ] = find( fa[ x ] ); } int merge( int x, int y ){ int a = find( x ); int b = find( y ); if( a == b ) return 0; fa[ b ] = a; return 1; } }; void preprocess(){ for( int i = 0; i < N; ++i ) for( int j = i + 1; j < N; ++j ){ ll dis2 = eu_dis2( X[ i ], Y[ i ], X[ j ], Y[ j ] ); edge.emplace_back( dis2, i, j ); } sort( edge.begin(), edge.end() ); dsu *uf = new dsu( N ); for( int i = 0; i < edge.size(); ++i ){ ll d; int x, y; tie( d, x, y ) = edge[ i ]; uf->merge( x, y ); if( uf->find( 0 ) == uf->find( N - 1 ) ){ int ans = -1; for( int lb = 10, ub = ( int ) 1e9; lb <= ub; ){ int mid = lb + ub >> 1; if( 1LL * mid * mid >= d ) ans = mid, ub = mid - 10; else lb = mid + 10; } if( ans % 10 > 0 ) ans = ans / 10 * 10 + 10; cout << ans << endl; exit( 0 ); } } } void solve(){ } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }