結果
問題 | No.205 マージして辞書順最小 |
ユーザー | kakira9618 |
提出日時 | 2015-05-15 22:08:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,752 bytes |
コンパイル時間 | 617 ms |
コンパイル使用メモリ | 88,568 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 03:59:34 |
合計ジャッジ時間 | 1,217 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:70:23: warning: ‘mincj’ may be used uninitialized in this function [-Wmaybe-uninitialized] 70 | ans += v[mincj][0]; | ^
ソースコード
#include <map> #include <set> #include <list> #include <cmath> #include <queue> #include <stack> #include <cstdio> #include <string> #include <vector> #include <complex> #include <cstdlib> #include <cstring> #include <numeric> #include <sstream> #include <iostream> #include <algorithm> #include <functional> #define mp make_pair #define pb push_back #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int i=0;i<(n);i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef vector<bool> vb; typedef vector<int> vi; typedef vector<vb> vvb; typedef vector<vi> vvi; typedef pair<int,int> pii; const int INF=1<<29; const double EPS=1e-9; const int dx[]={1,0,-1,0,1,1,-1,-1},dy[]={0,-1,0,1,1,-1,-1,1}; int main() { int N; cin >> N; std::vector<string> v; int maxsize = 0; int sum = 0; for (int i = 0; i < N; i++) { string temp; cin >> temp; int n = temp.size(); sum += n; maxsize = max(maxsize, n); v.push_back(temp); } for (int i = 0; i < N; i++) { string add(maxsize - v[i].size() + 1, 'z' + 1); v[i] += add; } string ans = ""; for (int i = 0; i < sum; i++) { char minc = 'z' + 1; int mincj; int maxsize = 0; for (int j = 0; j < N; j++) { if (v[j][0] < minc || (v[j][0] == minc && v[j].size() > maxsize)) { minc = v[j][0]; mincj = j; maxsize = v[j].size(); } } ans += v[mincj][0]; v[mincj] = v[mincj].substr(1, v[mincj].size() - 1); } cout << ans << endl; return 0; }