結果

問題 No.270 next_permutation (1)
ユーザー ishizuishizu
提出日時 2015-08-22 15:27:29
言語 C++11
(gcc 11.4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,051 bytes
コンパイル時間 629 ms
コンパイル使用メモリ 69,960 KB
実行使用メモリ 4,812 KB
最終ジャッジ日時 2023-09-25 16:11:27
合計ジャッジ時間 1,694 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 4 ms
4,384 KB
testcase_10 AC 21 ms
4,812 KB
testcase_11 AC 21 ms
4,544 KB
testcase_12 AC 21 ms
4,584 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<vector>
#include<queue>
#include<map>
#include<set>
#include<string>
#include<algorithm>
#include<functional>
using namespace std;
#define FOR(i,a,b) for (int i=(a);i<(b);i++)
#define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--)
#define REP(i,n) for (int i=0;i<(n);i++)
#define RREP(i,n) for (int i=(n)-1;i>=0;i--)
#define INF 1<<30
#define MP make_pair
#define mp make_pair
#define pb push_back
#define PB push_back
#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define ll long long
#define ull unsigned long long

struct t{int i;};
int p[100010];
int b[100010];
t id[100010];
ll ans;
bool operator < (t i,t j){return p[i.i]<p[j.i];}
void swap(t i,t j){
	ans-=abs(b[i.i]-p[i.i]);
	ans-=abs(b[j.i]-p[j.i]);
	swap(i.i,j.i);
	ans+=abs(b[i.i]-p[i.i]);
	ans+=abs(b[j.i]-p[j.i]);
}

int main(){
	cin.tie(0);
	ios::sync_with_stdio(false);
	int n,k;cin>>n>>k;
	REP(i,n) cin>>p[i];
	REP(i,n) cin>>b[i];
	REP(i,n) id[i].i=i;
	REP(i,n) ans+=1LL*k*abs(p[i]-b[i]);
	REP(i,k-1) next_permutation(id,id+n);
	cout<<ans<<endl;
	 

}
0