結果

問題 No.2375 watasou and hibit's baseball
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-07-07 22:19:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,315 bytes
コンパイル時間 2,212 ms
コンパイル使用メモリ 204,788 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-21 18:26:09
合計ジャッジ時間 4,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 7 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 21 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N, A, B;
	cin >> N >> A >> B;
	int X[20], Y[20], K[20];
	for (int i = 0; i < N; i ++) cin >> X[i] >> Y[i] >> K[i];
	bool dp[(1 << 14)][14][14];
	std::vector<int> P;
	for (auto& a : dp) {
		for (auto& b : a) {
			for (auto& c : b) {
				c = false;
			}
		}
	}
	auto dst = [&](int a, int b) -> int{
		return abs(X[a] - X[b]) + abs(Y[a] - Y[b]);
	};
	int ans = 1;
	for (int i = 0; i < (1 << N); i ++) {
		P.clear();
		for (int j = 0; j < N; j ++) {
			if ((i >> j) & 1) {
				P.push_back(j);
			}
		}
		if (P.size() < 2) {
		} else if (P.size() == 2) {
			int a = P[0], b = P[1];
			dp[i][a][b] = dp[i][b][a] = (dst(a, b) >= A && abs(K[a] - K[b]) >= B);
			if (dp[i][a][b]) {
				ans = max(ans, 2);
			}
		} else {
			for (int a = 0; a < P.size(); a ++) {
				for (int b = a + 1; b < P.size(); b ++) {
					for (int c = 0; c < P.size(); c ++) {
						if (a == c || b == c) continue;
						int p = P[a], q = P[b], r = P[c];
						if (dst(p, r) + dst(q, r) >= A && abs(K[r] - K[q] >= B)) {
							dp[i][r][q] = dp[i][r][q] || dp[i ^ (1 << r)][q][p];
							dp[i][r][p] = dp[i][r][p] || dp[i ^ (1 << r)][p][q];
							if (dp[i][r][q] || dp[i][r][p]) {
								ans = max(ans, (int)P.size());
							}
						}
					}
				}
			}
		}
	}
	cout << ans << endl;
}
0