結果
問題 | No.270 next_permutation (1) |
ユーザー | kimiyuki |
提出日時 | 2016-11-15 22:12:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 70 ms / 2,000 ms |
コード長 | 900 bytes |
コンパイル時間 | 754 ms |
コンパイル使用メモリ | 73,728 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 03:53:37 |
合計ジャッジ時間 | 2,220 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 69 ms
5,376 KB |
testcase_11 | AC | 69 ms
5,376 KB |
testcase_12 | AC | 70 ms
5,376 KB |
testcase_13 | AC | 67 ms
5,376 KB |
testcase_14 | AC | 66 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #define repeat(i,n) for (int i = 0; (i) < (n); ++(i)) #define repeat_from(i,m,n) for (int i = (m); (i) < (n); ++(i)) typedef long long ll; using namespace std; int main() { int n, k; cin >> n >> k; vector<int> a(n); repeat (i,n) cin >> a[i]; vector<int> b(n); repeat (i,n) cin >> b[i]; ll ans = 0; int l = max(0, n - 20); // 20! = 2.4e18 ll base = 0; repeat (i,l) base += abs(a[i] - b[i]); while (k --) { ans += base; repeat_from (i,l,n) ans += abs(a[i] - b[i]); bool is_not_overflow = next_permutation(a.begin() + l, a.end()); if (not is_not_overflow) { prev_permutation(a.begin() + l, a.end()); next_permutation(a.begin(), a.end()); base = 0; repeat (i,l) base += abs(a[i] - b[i]); } } cout << ans << endl; return 0; }