結果
問題 | No.775 tatyamと素数大富豪(hard) |
ユーザー | Pachicobue |
提出日時 | 2018-12-22 16:54:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,851 bytes |
コンパイル時間 | 2,481 ms |
コンパイル使用メモリ | 214,092 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 01:39:45 |
合計ジャッジ時間 | 3,111 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | AC | 5 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 11 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
#include <bits/stdc++.h> using ll = long long; #define show(x) std::cerr << #x << " = " << (x) << std::endl template <typename T, typename A> std::ostream& operator<<(std::ostream& os, const std::vector<T, A>& v) { os << "["; for (const auto& p : v) { os << p << ","; } return (os << "]\n"); } 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; i >= 0; i--) { if (ind[i] >= ind[i + 1]) { continue; } for (int j = N - 1; j > i; j--) { if (ind[j] <= ind[i]) { continue; } auto index = ind; std::swap(index[i], index[j]); std::reverse(index.begin() + i + 1, index.end()); for (int j = i + 1; j < N; j++) { auto inde = index; std::swap(inde[i + 1], inde[j]); std::string s; for (int i = 0; i < N; i++) { s += a[inde[i]]; } if (s < now and max < s) { max = s, maxind = inde; } } break; } 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; }