結果
問題 | No.168 ものさし |
ユーザー | ciel |
提出日時 | 2015-03-20 02:31:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 112 ms / 2,000 ms |
コード長 | 1,057 bytes |
コンパイル時間 | 451 ms |
コンパイル使用メモリ | 55,552 KB |
実行使用メモリ | 26,752 KB |
最終ジャッジ日時 | 2024-06-06 14:51:53 |
合計ジャッジ時間 | 1,869 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
8,448 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 22 ms
7,808 KB |
testcase_12 | AC | 70 ms
19,456 KB |
testcase_13 | AC | 112 ms
26,496 KB |
testcase_14 | AC | 101 ms
26,496 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 6 ms
5,376 KB |
testcase_19 | AC | 97 ms
25,472 KB |
testcase_20 | AC | 100 ms
26,496 KB |
testcase_21 | AC | 101 ms
26,752 KB |
testcase_22 | AC | 101 ms
26,496 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d",&N); | ~~~~~^~~~~~~~~ main.cpp:27:42: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 27 | for(int i=0;i<N;i++)scanf("%lld%lld",&V[i].first,&V[i].second); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
//kruskal tree #include <vector> #include <algorithm> #include <cmath> #include <cstdio> using namespace std; #define M 1000000 int parent[M],a[M],b[M]; pair<long long,int>node[M]; int root(int a){return parent[a]==a?a:parent[a]=root(parent[a]);} int same(int a,int b){ int x=root(a),y=root(b); return x==y; } int unite(int a,int b){ int x=root(a),y=root(b); if(x==y)return 0; parent[x]=y; return 1; } int main(){ int N; scanf("%d",&N); vector<vector<long long> >v(N); { vector<pair<long long,long long> >V(N); for(int i=0;i<N;i++)scanf("%lld%lld",&V[i].first,&V[i].second); for(int i=0;i<N;i++){ parent[i]=i; for(int j=0;j<N;j++){ a[i*N+j]=i; b[i*N+j]=j; node[i*N+j].first=(V[i].first-V[j].first)*(V[i].first-V[j].first) + (V[i].second-V[j].second)*(V[i].second-V[j].second); node[i*N+j].second=i*N+j; } } } sort(node,node+N*N); long long ret=0; for(int q=0,i=0;/*q<N-1*/!same(0,N-1);i++)if(unite(a[node[i].second],b[node[i].second]))ret=max(ret,node[i].first),q++; printf("%.0Lf0\n",ceill(sqrtl(ret)/10)); }