結果
問題 | No.775 tatyamと素数大富豪(hard) |
ユーザー | Pachicobue |
提出日時 | 2018-12-22 17:40:33 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,818 bytes |
コンパイル時間 | 1,340 ms |
コンパイル使用メモリ | 132,160 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-07 18:21:31 |
合計ジャッジ時間 | 5,499 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 9 ms
5,376 KB |
testcase_06 | AC | 77 ms
5,376 KB |
testcase_07 | AC | 380 ms
5,376 KB |
testcase_08 | AC | 370 ms
5,376 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include <algorithm> #include <vector> #include <iostream> #include <numeric> using ll = long long; int main() { int N, K; std::cin >> N >> K; std::vector<std::string> a(N); for (int i = 0; i < N; i++) { std::cin >> a[i]; } auto comp = [](const std::string& s1, const std::string& s2) { return s1 + s2 == s2 + s1 ? s1.size() > s2.size() : s1 + s2 > s2 + s1; }; std::sort(a.begin(), a.end(), comp); std::vector<int> ind(N); std::iota(ind.begin(), ind.end(), 0); auto next = [&]() -> bool { std::string now; for (int i = 0; i < N; i++) { now += a[ind[i]]; } std::string max; std::vector<int> maxind; for (int i = N - 2, icnt = 0; i >= 0; i--) { if (ind[i] >= ind[i + 1]) { continue; } icnt++; for (int j = N - 1, jcnt = 0; j > i; j--) { if (ind[j] <= ind[i]) { continue; } jcnt++; std::swap(ind[i], ind[j]); std::reverse(ind.begin() + i + 1, ind.end()); for (int j = N - 1; j > i; j--) { std::swap(ind[i + 1], ind[j]); std::string s; for (int i = 0; i < N; i++) { s += a[ind[i]]; } if (s < now and max < s) { max = s, maxind = ind; } std::swap(ind[i + 1], ind[j]); } std::reverse(ind.begin() + i + 1, ind.end()); std::swap(ind[i], ind[j]); if (jcnt > 10) { break; } } if (icnt > 20) { break; } } return ind = maxind, (max != ""); }; for (int i = 0; i < K; i++) { for (int i = 0; i < N; i++) { std::cout << a[ind[i]]; } std::cout << std::endl; if (not next()) { break; } } return 0; }