結果
問題 | No.270 next_permutation (1) |
ユーザー | sugim48 |
提出日時 | 2015-08-21 23:06:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 1,199 bytes |
コンパイル時間 | 934 ms |
コンパイル使用メモリ | 83,124 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-10 04:58:43 |
合計ジャッジ時間 | 1,595 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 26 ms
5,376 KB |
testcase_11 | AC | 26 ms
5,376 KB |
testcase_12 | AC | 28 ms
5,376 KB |
testcase_13 | AC | 25 ms
5,376 KB |
testcase_14 | AC | 25 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:39:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 39 | scanf("%d", &p[i]); | ~~~~~^~~~~~~~~~~~~ main.cpp:41:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 41 | scanf("%d", &B[i]); | ~~~~~^~~~~~~~~~~~~
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstdlib> #include <cstring> #include <cmath> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int u, v; ll w; }; ll MOD = 1000000007; ll _MOD = 1000000009; double EPS = 1e-10; int INF = INT_MAX / 10; int main() { int N, K; cin >> N >> K; vector<int> p(N), B(N); for (int i = 0; i < N; i++) scanf("%d", &p[i]); for (int i = 0; i < N; i++) scanf("%d", &B[i]); ll ans = 0, sum = 0; for (int i = 0; i < N; i++) sum += abs(p[i] - B[i]); while (K--) { ans += sum; int i; for (i = N - 2; i > 0 && p[i] > p[i + 1]; i--); for (int j = i; j < N; j++) sum -= abs(p[j] - B[j]); next_permutation(p.begin(), p.end()); for (int j = i; j < N; j++) sum += abs(p[j] - B[j]); } cout << ans << endl; }