結果
問題 | No.165 四角で囲え! |
ユーザー | togatoga |
提出日時 | 2015-04-06 08:00:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 784 ms / 5,000 ms |
コード長 | 1,680 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 164,932 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 19:05:08 |
合計ジャッジ時間 | 10,927 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 390 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 501 ms
5,376 KB |
testcase_06 | AC | 87 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 | 366 ms
5,376 KB |
testcase_12 | AC | 362 ms
5,376 KB |
testcase_13 | AC | 342 ms
5,376 KB |
testcase_14 | AC | 563 ms
5,376 KB |
testcase_15 | AC | 506 ms
5,376 KB |
testcase_16 | AC | 747 ms
5,376 KB |
testcase_17 | AC | 743 ms
5,376 KB |
testcase_18 | AC | 709 ms
5,376 KB |
testcase_19 | AC | 784 ms
5,376 KB |
testcase_20 | AC | 766 ms
5,376 KB |
testcase_21 | AC | 751 ms
5,376 KB |
testcase_22 | AC | 735 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #define mp make_pair #define mt make_tuple #define pb push_back #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> pii; typedef pair<long, long> pll; const int INF = 1 << 29; const double EPS = 1e-9; const int MOD = 100000007; const int dx[] = {1, 0, -1, 0}, dy[] = {0, -1, 0, 1}; class Data { public: int x, y, p; bool operator<(const Data &d) const { if (x == d.x){ return y < d.y; }else{ return x < d.x; } } }; int main() { int n, b; cin >> n >> b; vector<Data> d(n); for (int i = 0; i < n; i++) { cin >> d[i].x >> d[i].y >> d[i].p; } sort(d.begin(), d.end()); int ans = 0; for (int s = 0; s < n; s++) { for (int t = 0; t < n; t++) { int y1 = d[s].y; int y2 = d[t].y; int l = 0, r = 0; int sum = 0; int cnt = 0; int lastl,lastr; lastl = lastr = -1; while (1){ while (r < n && sum <= b){ if (sum <= b){ ans = max(ans, cnt); } lastr = r; while (r < n&& d[lastr].x == d[r].x){ if (y1 <= d[r].y && d[r].y <= y2){ cnt++; sum += d[r].p; } r++; } } if (sum <= b)ans = max(ans, cnt); if (l >= r)break; lastl = l; while (l < n && d[lastl].x == d[l].x) { if (y1 <= d[l].y && d[l].y <= y2){ cnt--; sum -= d[l].p; } l++; } if (sum <= b)ans = max(ans, cnt); } } } cout << ans << endl; return 0; }