結果

問題 No.775 tatyamと素数大富豪(hard)
ユーザー comaviuscomavius
提出日時 2023-07-11 15:13:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,357 bytes
コンパイル時間 2,641 ms
コンパイル使用メモリ 214,088 KB
実行使用メモリ 26,760 KB
最終ジャッジ日時 2023-10-11 06:18:01
合計ジャッジ時間 4,974 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
8,500 KB
testcase_01 AC 22 ms
9,064 KB
testcase_02 AC 24 ms
8,744 KB
testcase_03 AC 34 ms
9,860 KB
testcase_04 AC 68 ms
12,752 KB
testcase_05 AC 44 ms
11,008 KB
testcase_06 AC 45 ms
11,088 KB
testcase_07 AC 48 ms
11,220 KB
testcase_08 AC 47 ms
11,588 KB
testcase_09 AC 136 ms
26,472 KB
testcase_10 AC 141 ms
26,760 KB
testcase_11 AC 10 ms
8,236 KB
testcase_12 AC 10 ms
7,644 KB
testcase_13 AC 33 ms
8,436 KB
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;



bool adhoc_comparator(const pair<string, ll> &a, const pair<string, ll> &b) {
    ll check_len = min(a.first.size(), b.first.size());
    for (ll i = 0; i < check_len; i++) {
        if (a.first[i] != b.first[i]) {
            return a.first[i] > b.first[i];
        }
    }
    if (a.first.size() < b.first.size()){
        return adhoc_comparator(a, {b.first.substr(check_len), b.second});
    }
    if (a.first.size() > b.first.size()){
        return adhoc_comparator({a.first.substr(check_len), a.second}, b);
    }
    else {
        return a.second > b.second;
    }
}

int main() {
    ll n, k;
    cin >> n >> k;
    vector<pair<string, ll>> v(n);
    for (ll i = 0; i < n; i++) {
        cin >> v[i].first;
        v[i].second = v[i].first.size();
    }
    sort(v.begin(), v.end(), adhoc_comparator);
    priority_queue<string> pq;
    for (ll i = 0; i < 100000; i++) {
        string s;
        for (ll j = 0; j < n; j++) {
            s += v[j].first;
        }
        pq.push(s);
        next_permutation(v.begin(), v.end(), adhoc_comparator);
    }
    string now = "z";
    for (ll i = 0; i < k; i++){
        while (now <= pq.top()){
            pq.pop();
        }
        cout << pq.top() << "\n";
        now = pq.top();
        pq.pop();
    }
    cout << flush;
}
0