結果

問題 No.330 Eigenvalue Decomposition
コンテスト
ユーザー rickytheta
提出日時 2015-12-23 12:58:41
言語 C(gnu17)
(gcc 15.2.0)
コンパイル:
gcc-15 -O2 -std=gnu17 -Wno-error=implicit-function-declaration -Wno-error=implicit-int -Wno-error=incompatible-pointer-types -Wno-error=int-conversion -DONLINE_JUDGE -o a.out _filename_ -lm
実行:
./a.out
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 265 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 323 ms
コンパイル使用メモリ 38,356 KB
最終ジャッジ日時 2026-02-23 20:15:49
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 5
other AC * 31
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:2:1: warning: data definition has no type or storage class
    2 | d[100010],i;
      | ^
main.c:2:1: warning: type defaults to 'int' in declaration of 'd' [-Wimplicit-int]
main.c:2:11: warning: type defaults to 'int' in declaration of 'i' [-Wimplicit-int]
    2 | d[100010],i;
      |           ^
main.c:3:1: warning: return type defaults to 'int' [-Wimplicit-int]
    3 | r(x){
      | ^
main.c: In function 'r':
main.c:3:1: warning: type of 'x' defaults to 'int' [-Wimplicit-int]
main.c: At top level:
main.c:6:1: warning: return type defaults to 'int' [-Wimplicit-int]
    6 | main(n,m,a,b,c){
      | ^~~~
main.c: In function 'main':
main.c:6:1: warning: type of 'n' defaults to 'int' [-Wimplicit-int]
main.c:6:1: warning: type of 'm' defaults to 'int' [-Wimplicit-int]
main.c:6:1: warning: type of 'a' defaults to 'int' [-Wimplicit-int]
main.c:6:1: warning: type of 'b' defaults to 'int' [-Wimplicit-int]
main.c:6:1: warning: type of 'c' defaults to 'int' [-Wimplicit-int]

ソースコード

diff #
raw source code

#include <stdio.h>
d[100010],i;
r(x){
  return d[x]<0?x:(d[x]=r(d[x]));
}
main(n,m,a,b,c){
  scanf("%d%d",&n,&m);
  for(i=n;i--;)d[i]=-1;
  for(;m--;){
    scanf("%d%d%d",&a,&b,&c);
    a=r(a-1);b=r(b-1);
    if(a-b)d[a]+=d[b],d[b]=a,--n;
  }
  printf("%d\n",n);
}
0