結果

問題 No.91 赤、緑、青の石
ユーザー lapilapi
提出日時 2019-03-31 20:38:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,262 bytes
コンパイル時間 1,199 ms
コンパイル使用メモリ 103,856 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 00:22:58
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
testcase_04 WA -
testcase_05 WA -
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 WA -
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 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <stack>
#include <queue>
#include <list>
#include <set>
#include <map>
#include <numeric>
#include <regex>
#include <tuple>
#include<iomanip>
using namespace std;

typedef long long ll;
typedef pair<int, int> P;
#define MOD 1000000007 // 10^9 + 7
#define INF 1000000000 // 10^9
#define LLINF 1LL<<60



// n個作れるかどうか
bool canMake(int a, int b, int c, int n) {
	bool flag = true;

	if (c < n) flag = false;
	else {
		c -= n;
		if (b >= n) {
			b -= n;
			c += b;
			if (a + (c / 2) < n) flag = false;
		}
		else { // b < n
			c -= (n - b) * 2;
			if (c < 0) flag = false;
			else {
				if (a + (c / 2) < n) flag = false;
			}
		}
	}

	return flag;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	
	int num[3];
	cin >> num[0] >> num[1] >> num[2];
	sort(num, num + 3);

	
	int ans = num[0];
	num[2] -= num[0];
	num[1] -= num[0];
	num[0] = 0;

	// left <= 解 < right
	int left = 0;
	int right = num[2] + 1;

	
	while (left + 1 != right) {
		int mid = (left + right)/2;
		if (canMake(num[0],num[1],num[2],mid)) left = mid;
		else right = mid;
	}
	ans += left;
	cout << ans << endl;

	// cout << canMake(num[0], num[1], num[2], 10) << endl;

	return 0;
}
0