結果

問題 No.205 マージして辞書順最小
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-08-16 21:47:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 528 bytes
コンパイル時間 718 ms
コンパイル使用メモリ 68,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-25 08:02:17
合計ジャッジ時間 1,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <string>
#include <cstring>
#include <algorithm>
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)


int main(void){
	int n; cin >> n;
	vector<string> s(n);
	rep(i, n) cin >> s[i];
	string t;

	int sum = 0;
	rep(i, n){
		sum += s[i].size();
	}

	sort(s.begin(), s.end());
	rep(i, sum){
		rep(j, n){
			if(!s[j].empty()){
				t += s[j][0];
				s[j].erase(s[j].begin());
				break;
			}
		}
		sort(s.begin(), s.end());
	}
	cout << t << endl;
	return 0;
}
0