結果
問題 | No.165 四角で囲え! |
ユーザー | sugim48 |
提出日時 | 2015-03-13 00:31:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 209 ms / 5,000 ms |
コード長 | 1,946 bytes |
コンパイル時間 | 1,102 ms |
コンパイル使用メモリ | 92,344 KB |
実行使用メモリ | 6,016 KB |
最終ジャッジ日時 | 2024-06-07 18:57:59 |
合計ジャッジ時間 | 3,329 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 90 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 129 ms
5,376 KB |
testcase_06 | AC | 27 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 52 ms
5,376 KB |
testcase_12 | AC | 20 ms
5,376 KB |
testcase_13 | AC | 20 ms
5,376 KB |
testcase_14 | AC | 16 ms
5,376 KB |
testcase_15 | AC | 14 ms
5,376 KB |
testcase_16 | AC | 175 ms
6,016 KB |
testcase_17 | AC | 130 ms
5,760 KB |
testcase_18 | AC | 209 ms
5,888 KB |
testcase_19 | AC | 167 ms
6,016 KB |
testcase_20 | AC | 140 ms
6,016 KB |
testcase_21 | AC | 142 ms
6,016 KB |
testcase_22 | AC | 138 ms
6,016 KB |
ソースコード
#define _USE_MATH_DEFINES #include <algorithm> #include <cstdio> #include <functional> #include <iostream> #include <cfloat> #include <climits> #include <cstring> #include <cmath> #include <complex> #include <list> #include <map> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <time.h> #include <vector> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> i_i; typedef pair<ll, int> ll_i; typedef pair<double, int> d_i; typedef pair<ll, ll> ll_ll; typedef pair<double, double> d_d; struct edge { int v, w; }; ll MOD = 1000000007; ll _MOD = 1000000009; double EPS = 1e-10; int compress(vector<int>& X) { vector<int> x = X; sort(x.begin(), x.end()); x.erase(unique(x.begin(), x.end()), x.end()); for (int i = 0; i < X.size(); i++) X[i] = lower_bound(x.begin(), x.end(), X[i]) - x.begin(); return x.size(); } int calc(int l, int r, int u, int d, vector<vector<int> >& sum) { return sum[d][r] - sum[d][l] - sum[u][r] + sum[u][l]; } 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]; int w = compress(X), h = compress(Y); vector<vector<int> > a(h, vector<int>(w)), p(h, vector<int>(w)); for (int i = 0; i < N; i++) { a[Y[i]][X[i]]++; p[Y[i]][X[i]] += P[i]; } vector<vector<int> > asum(h + 1, vector<int>(w + 1)), psum(h + 1, vector<int>(w + 1)); for (int y = 1; y <= h; y++) for (int x = 1; x <= w; x++) { asum[y][x] = asum[y][x - 1] + asum[y - 1][x] - asum[y - 1][x - 1] + a[y - 1][x - 1]; psum[y][x] = psum[y][x - 1] + psum[y - 1][x] - psum[y - 1][x - 1] + p[y - 1][x - 1]; } int maxi = 0; for (int l = 0; l <= w; l++) for (int r = l; r <= w; r++) { int d = 0; for (int u = 0; u <= h; u++) while (d <= h && calc(l, r, u, d, psum) <= B) { maxi = max(maxi, calc(l, r, u, d, asum)); d++; } } cout << maxi << endl; }