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