結果
問題 | No.270 next_permutation (1) |
ユーザー | ishizu |
提出日時 | 2015-08-29 12:05:53 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,100 bytes |
コンパイル時間 | 556 ms |
コンパイル使用メモリ | 69,276 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-18 15:30:42 |
合計ジャッジ時間 | 1,492 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,944 KB |
testcase_10 | AC | 20 ms
6,940 KB |
testcase_11 | AC | 19 ms
6,944 KB |
testcase_12 | AC | 19 ms
6,944 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
#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; ll r=0; bool operator < (t i,t j){return p[i.i]<p[j.i];} void swap(t i,t j){ ans-=1LL*r*abs(b[i.i]-p[i.i]); ans-=1LL*r*abs(b[j.i]-p[j.i]); swap(i.i,j.i); ans+=1LL*r*abs(b[i.i]-p[i.i]); ans+=1LL*r*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){ r=k-1-i; next_permutation(id,id+n); } cout<<ans<<endl; }