結果

問題 No.205 マージして辞書順最小
ユーザー 158b158b
提出日時 2015-05-09 01:08:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3 ms / 5,000 ms
コード長 806 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 65,768 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-19 09:12:34
合計ジャッジ時間 1,509 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
using namespace std;

int main(){
	int max;
	//string *mind;
	//char *go;
	int mind;
	int len = 0;
	
	string data[100];
	string answer("");
	
	cin >> max;
	for(int i=0; i<max; i++){
		cin >> data[i];
		len += data[i].length();
		data[i].resize(data[i].length()+1, '{');
	}
	
	for(int leni=0; leni<len; leni++){
		//次に追加すべき番目を求める
		mind = 0;
		for(int i=1; i<max; i++){
			if(data[i] < data[mind]){
				mind = i;
			}
		}
		
		//移動させる
		answer += data[mind].substr(0, 1);
		//data[mind].erase(data[mind][0]);
		for(int ai=0; ai<data[mind].length()-1; ai++){
			data[mind][ai] = data[mind][ai + 1];
		}
		data[mind].resize(data[mind].length() - 1);
	}
	
	cout << answer << endl;
	return 0;
}
0