結果

問題 No.775 tatyamと素数大富豪(hard)
ユーザー pekempeypekempey
提出日時 2018-12-22 01:06:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 848 bytes
コンパイル時間 1,129 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 14,800 KB
最終ジャッジ日時 2024-10-14 01:28:51
合計ジャッジ時間 2,721 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
5,324 KB
testcase_01 AC 25 ms
5,448 KB
testcase_02 AC 26 ms
5,448 KB
testcase_03 AC 33 ms
6,224 KB
testcase_04 AC 119 ms
7,884 KB
testcase_05 AC 40 ms
7,116 KB
testcase_06 AC 39 ms
6,988 KB
testcase_07 AC 42 ms
7,052 KB
testcase_08 AC 41 ms
7,116 KB
testcase_09 AC 97 ms
14,800 KB
testcase_10 AC 98 ms
14,796 KB
testcase_11 AC 12 ms
5,452 KB
testcase_12 AC 12 ms
5,456 KB
testcase_13 AC 31 ms
5,452 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
}

bool cmp2(string x, string y) {
    return x + y > y + x;
}

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 < 50000; ii++) {
        string s;
        for (int i = 0; i < n; i++) {
            s += a[i];
        }
        ans.push_back(s);
        next_permutation(a, a + n, cmp2);
    }
    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