結果

問題 No.775 tatyamと素数大富豪(hard)
ユーザー pekempeypekempey
提出日時 2018-12-22 00:57:31
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 787 bytes
コンパイル時間 1,154 ms
コンパイル使用メモリ 80,312 KB
実行使用メモリ 120,404 KB
最終ジャッジ日時 2024-10-14 01:27:37
合計ジャッジ時間 9,856 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
19,760 KB
testcase_01 AC 297 ms
19,792 KB
testcase_02 AC 318 ms
19,656 KB
testcase_03 AC 405 ms
34,516 KB
testcase_04 AC 622 ms
50,084 KB
testcase_05 AC 466 ms
42,216 KB
testcase_06 AC 507 ms
42,196 KB
testcase_07 AC 470 ms
42,196 KB
testcase_08 AC 470 ms
42,320 KB
testcase_09 AC 1,117 ms
120,404 KB
testcase_10 AC 1,086 ms
120,276 KB
testcase_11 AC 122 ms
19,784 KB
testcase_12 AC 122 ms
19,660 KB
testcase_13 AC 367 ms
19,660 KB
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#include <cstdlib>

using namespace std;

int n, K;
string a[100];

bool cmp(string x, string y) {
    if (x + y != y + x) return x + y > y + x;
    return x.size() > y.size();
}

int main() {
    cin >> n >> K;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(a, a + n, cmp);
    vector<string> ans;
    for (int ii = 0; ii < 500000; ii++) {
        string s;
        for (int i = 0; i < n; i++) {
            s += a[i];
        }
        ans.push_back(s);
        next_permutation(a, a + n, cmp);
    }
    sort(ans.rbegin(), ans.rend());
    ans.erase(unique(ans.begin(), ans.end()), ans.end());
    for (int i = 0; i < K; i++) {
        cout << ans[i] << endl;
    }
}

0