結果

問題 No.205 マージして辞書順最小
ユーザー tatuyan_edsontatuyan_edson
提出日時 2015-06-08 19:13:48
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 540 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 24,952 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-20 19:56:05
合計ジャッジ時間 1,653 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
4,376 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 0 ms
4,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,376 KB
testcase_14 AC 0 ms
4,380 KB
testcase_15 AC 1 ms
4,376 KB
testcase_16 AC 0 ms
4,376 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>

int main(void){
  char str[50][51],flg[50],len[50];
  int min,i,j,k,N,sum=0;

  scanf("%d%*c",&N);
  for(i=0;i<N;i++) scanf("%s%*c",str[i]);
  for(i=0;i<N;i++){
    len[i]=strlen(str[i]);
    sum+=len[i];
  }
  memset(flg,0,sizeof(flg));
  
  for(i=0;i<sum;i++){
    min=-1;
    for(j=0;j<N;j++){
      if(flg[j]==len[j]) continue;
      if(min==-1) min=j;
      else if(str[min][flg[min]]>str[j][flg[j]]) min=j;
    }
    putchar(str[min][flg[min]]);
    flg[min]++;
  }
  putchar('\n');
  return 0;
}
0