結果

問題 No.205 マージして辞書順最小
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-04-24 21:25:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 804 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 196,664 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-24 21:25:45
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    cin >> n;
    vector<string> s(n);
    for (int i = 0; i < n; i++) {
        cin >> s[i];
        reverse(s[i].begin(), s[i].end());
    }
    string ans = "";
    while (true) {
        bool non_empty = false;
        int mi_idx = -1;
        for (int i = 0; i < n; i++) {
            if (!s[i].empty()) {
                if (!non_empty || s[i].back() < s[mi_idx].back()) {
                    mi_idx = i;
                }
                non_empty = true;
            }
        }
        if (!non_empty) {
            break;
        }
        ans += s[mi_idx].back();
        s[mi_idx].pop_back();
    }
    cout << ans << endl;
}
0