結果

問題 No.1139 Slime Race
ユーザー forest3forest3
提出日時 2023-07-16 18:03:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 1,559 ms
コンパイル使用メモリ 169,768 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-17 13:58:04
合計ジャッジ時間 3,951 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 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,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 54 ms
6,940 KB
testcase_11 AC 48 ms
6,940 KB
testcase_12 AC 66 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 53 ms
6,940 KB
testcase_15 AC 60 ms
6,940 KB
testcase_16 AC 64 ms
6,944 KB
testcase_17 AC 54 ms
6,940 KB
testcase_18 AC 47 ms
6,944 KB
testcase_19 AC 31 ms
6,944 KB
testcase_20 AC 29 ms
6,944 KB
testcase_21 AC 42 ms
6,944 KB
testcase_22 AC 55 ms
6,944 KB
testcase_23 AC 75 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int N;
	long long D;
	cin >> N >> D;
	vector<long long> x( N );
	for( int i = 0; i < N; i++ ) {
		cin >> x[i];
	}
	vector<long long> v( N );
	for( int i = 0; i < N; i++ ) {
		cin >> v[i];
	}

	const long long INF = INT64_MAX / 2;
	auto f = [&]( __int128_t t ) -> __int128_t
	{
		__int128_t res = 0;
		for( int i = 0; i < N; i++ ) {
			res += v[i] * t;
		}
		return res;
	};

	long long l = 0;
	long long r = INF;
	while( r - l > 1 ) {
		long long m = (l + r) / 2;
		if( f( m ) >= D ) r = m;
		else l = m;
	}
	long long ans = r;

	cout << ans << endl;
}
0