結果

問題 No.1251 絶対に間違ってはいけない最小化問題
ユーザー kenta255kenta255
提出日時 2020-10-09 22:38:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 206,824 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-07-20 13:03:34
合計ジャッジ時間 14,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 138 ms
6,272 KB
testcase_19 AC 120 ms
6,144 KB
testcase_20 AC 69 ms
5,376 KB
testcase_21 AC 11 ms
5,376 KB
testcase_22 AC 77 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
testcase_24 AC 98 ms
5,632 KB
testcase_25 AC 72 ms
5,376 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 131 ms
6,400 KB
testcase_29 AC 132 ms
6,400 KB
testcase_30 AC 132 ms
6,528 KB
testcase_31 AC 134 ms
6,400 KB
testcase_32 AC 132 ms
6,400 KB
testcase_33 AC 132 ms
6,400 KB
testcase_34 AC 130 ms
6,400 KB
testcase_35 AC 135 ms
6,400 KB
testcase_36 AC 132 ms
6,400 KB
testcase_37 AC 129 ms
6,400 KB
testcase_38 AC 132 ms
6,528 KB
testcase_39 AC 130 ms
6,400 KB
testcase_40 AC 130 ms
6,400 KB
testcase_41 AC 129 ms
6,400 KB
testcase_42 AC 129 ms
6,528 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define FOR(I,A,B) for(int I = int(A); I < int(B); ++I)
#define FORR(I,A,B) for(ll I = ll((B)-1); I >= ll(A); --I)
const ll MOD=1000000007LL;
#define out(a) cout<<fixed<<setprecision((a))
ll gcd_(ll a,ll b){if(a%b==0)return b;return gcd_(b,a%b);}
ll lcm_(ll a,ll b){ll c=gcd_(a,b);return ((a/c)*b);}



int main(){

	ll N;
	cin >> N;
	vector<pair<ll,ll>> AB(N);
	FOR(i,0,N) cin >> AB[i].first;
	FOR(i,0,N) cin >> AB[i].second;

	sort(AB.begin(), AB.end());

	ll f=0,X=AB[0].first;

	ll add = 0;
	FOR(i,1,N){
		f += AB[i].second * (AB[i].first - X);
		add += -AB[i].second; 
	}

	ll ansf = f, ansX = X;

	add += AB[0].second;

	FOR(i,1,N){
		f += add * (AB[i].first - AB[i-1].first);
		if(f < ansf) {
			ansf = f;
			ansX = AB[i].first;
		}
		add += 2*AB[i].second;
	}

	cout << ansX << " " << ansf << endl;

}
0