結果
問題 | No.165 四角で囲え! |
ユーザー | 古寺いろは |
提出日時 | 2015-03-23 16:50:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,190 bytes |
コンパイル時間 | 772 ms |
コンパイル使用メモリ | 79,504 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-29 00:23:28 |
合計ジャッジ時間 | 3,420 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 3 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 138 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 139 ms
5,376 KB |
testcase_22 | AC | 139 ms
5,376 KB |
ソースコード
#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]; } 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]); } } } cout << ans << endl; }