結果
問題 | No.775 tatyamと素数大富豪(hard) |
ユーザー | comavius |
提出日時 | 2023-07-11 15:14:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,358 bytes |
コンパイル時間 | 2,696 ms |
コンパイル使用メモリ | 219,520 KB |
実行使用メモリ | 499,324 KB |
最終ジャッジ日時 | 2024-09-13 05:33:52 |
合計ジャッジ時間 | 19,496 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 282 ms
141,680 KB |
testcase_01 | AC | 762 ms
134,420 KB |
testcase_02 | AC | 732 ms
135,436 KB |
testcase_03 | AC | 1,216 ms
253,552 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 1,729 ms
315,712 KB |
testcase_06 | AC | 1,778 ms
316,204 KB |
testcase_07 | AC | 1,763 ms
315,764 KB |
testcase_08 | AC | 1,739 ms
315,724 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#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 < 4000000; 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; }