結果

問題 No.583 鉄道同好会
ユーザー ianlinathomeianlinathome
提出日時 2017-11-10 06:49:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 685 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 24,832 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 11:19:06
合計ジャッジ時間 961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 0 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 21 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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%d",&n,&m);
      |     ~~~~~^~~~~~~~~~~~~~
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);
      |         ~~~~~^~~~~~~~~~~~~~

ソースコード

diff #

#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(find(p[i],p)!=-1){
            if(ans==-1)ans=find(p[i],p);
            else if(ans!=find(p[i],p)){
                printf("NO\n");
                return 0;
            }
        }
        else ans=find(p[i],p);
    }
    printf("YES\n");
}
0