結果

問題 No.205 マージして辞書順最小
ユーザー 158b158b
提出日時 2015-05-09 01:07:11
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 1,195 ms
コンパイル使用メモリ 64,420 KB
実行使用メモリ 4,508 KB
最終ジャッジ日時 2023-09-19 09:12:32
合計ジャッジ時間 1,526 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 << data[mind].size();
	}
	
	cout << answer << endl;
	return 0;
}
0