結果
問題 | No.583 鉄道同好会 |
ユーザー | ianlinathome |
提出日時 | 2017-11-10 06:47:39 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 433 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 23,936 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-03 11:18:59 |
合計ジャッジ時間 | 940 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 0 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 8 ms
5,376 KB |
testcase_13 | AC | 8 ms
5,376 KB |
testcase_14 | AC | 8 ms
5,376 KB |
testcase_15 | AC | 9 ms
5,376 KB |
testcase_16 | AC | 17 ms
5,376 KB |
testcase_17 | AC | 21 ms
5,376 KB |
testcase_18 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:8:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 8 | scanf("%d%d",&n,&m); | ~~~~~^~~~~~~~~~~~~~ main.cpp:11:6: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 11 | scanf("%d%d",&l,&r); | ~~~~~^~~~~~~~~~~~~~
ソースコード
#include <stdio.h> int find(int n,int p[]){ if(p[n]==n)return n; return p[n]=find(p[n],p); } int main(){ int p[1000],n,m,l,r,ans=-1; scanf("%d%d",&n,&m); for(int i=0;i<n;i++)p[i]=-1; for(int i=0;i<m;i++){ scanf("%d%d",&l,&r); if(p[l]==-1)p[l]=l; if(p[r]==-1)p[r]=r; l=find(l,p); r=find(r,p); if(l>r)p[l]=r; else p[r]=l; } for(int i=0;i<n;i++){ if(p[i]!=-1&&p[i]!=ans){ printf("NO\n"); return 0; } else ans=p[i]; } printf("YES\n"); }