結果

問題 No.165 四角で囲え!
ユーザー 古寺いろは古寺いろは
提出日時 2015-03-23 16:49:53
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,207 bytes
コンパイル時間 759 ms
コンパイル使用メモリ 78,584 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-11 09:45:14
合計ジャッジ時間 1,804 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<vector>
#include<map>
#include<algorithm>

using namespace std;

int main() {
	int N, B;
	cin >> N >> B;
	vector<int> x(N), y(N), p(N);
	for (int i = 0; i < N; i++)
	{
		cin >> x[i] >> y[i] >> p[i];
	}
	map<int, int> mx, my;

	vector<int> sx(x), sy(y);
	sort(sx.begin(), sx.end());
	sort(sy.begin(), sy.end());
	for (int i = 0; i < N; i++)
	{
		mx[sx[i]] = i;
		my[sy[i]] = i;
	}

	int dp[402][402] = {};
	int dp2[402][402] = {};
	for (int i = 0; i < N; i++)
	{
		x[i] = mx[x[i]] + 1;
		y[i] = my[y[i]] + 1;
		dp[y[i]][x[i]]++;
		dp2[y[i]][x[i]] += p[i];

		cout << y[i] << " " << x[i] << endl;
	}

	for (int i = 1; i <= N; i++)
	{
		for (int j = 1; j <= N; j++)
		{
			dp[i][j] += dp[i - 1][j];
			dp[i][j] += dp[i][j - 1];
			dp[i][j] -= dp[i - 1][j - 1];

			dp2[i][j] += dp2[i - 1][j];
			dp2[i][j] += dp2[i][j - 1];
			dp2[i][j] -= dp2[i - 1][j - 1];

		}
	}

	

	int ans = 0;

	for (int i = 0; i <= N; i++)
	{
		for (int j = 0; j <= N; j++)
		{
			int X = N + 1;
			for (int Y = i; Y <= N + 1; Y++)
			{
				while (X >= 0 && dp2[Y][X] - dp2[Y][j] - dp2[i][X] + dp2[i][j] > B) X--;
				if (X >= 0) ans = max(ans, dp[Y][X] - dp[Y][j] - dp[i][X] + dp[i][j]);
			}
		}
	}


}
0