結果
問題 | No.165 四角で囲え! |
ユーザー | 🍮かんプリン |
提出日時 | 2020-05-24 19:46:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,385 bytes |
コンパイル時間 | 1,654 ms |
コンパイル使用メモリ | 173,436 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 03:56:38 |
合計ジャッジ時間 | 4,730 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
6,820 KB |
testcase_08 | AC | 1 ms
6,824 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
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 | AC | 171 ms
6,816 KB |
testcase_21 | AC | 169 ms
6,816 KB |
testcase_22 | AC | 169 ms
6,816 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2020.05.24 19:46:45 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; int main() { int n, b; cin >> n >> b; vector< tuple< int, int, int > > a(n); // y,x,p vector< int > x(n); for (int i = 0; i < n; i++) { int s, t, u; cin >> s >> t >> u; a[i] = make_tuple(t, s, u); x[i] = s; } sort(x.begin(), x.end()); sort(a.begin(), a.end()); // puts("///"); // for (int i = 0; i < n; i++) { // cout << get<1>(a[i]) << " " << get<0>(a[i]) << " " << get<2>(a[i]) << endl; // } int ans = 0; for (int i = 0; i < n; i++) { for (int j = i; j < n; j++) { // x[i] <= X <= x[j] vector< tuple< int, int, int > > vv; // y値,数,スコア for (int k = 0; k < n; k++) { if (x[i] <= get< 1 >(a[k]) && get< 1 >(a[k]) <= x[j]) { if (vv.size() == 0) { vv.push_back({get< 0 >(a[k]), 1, get< 2 >(a[k])}); } else if (get< 0 >(vv[vv.size() - 1]) == get< 0 >(a[k])) { vv[vv.size() - 1] = make_tuple(get< 0 >(vv[vv.size() - 1]), get< 1 >(vv[vv.size() - 1]) + 1, get< 2 >(vv[vv.size() - 1]) + get< 2 >(a[k])); } else { vv.push_back({get< 0 >(a[k]), 1, get< 2 >(a[k])}); } } } int rit = 0; int sum = 0; int cnt = 0; for (int lef = 0; lef < vv.size(); lef++) { while (rit < vv.size()) { if (sum + get< 2 >(vv[rit]) <= b) { sum += get< 2 >(vv[rit]); cnt += get< 1 >(vv[rit]); rit++; } else { rit++; break; } } ans = max(ans, cnt); // cout << x[i] << "-" << x[j] << " " << lef << "->" << rit << " " << ans << endl; if (rit == lef) { rit++; cnt = 0; } else { sum -= get< 2 >(vv[lef]); cnt -= get< 1 >(vv[lef]); } } } } cout << ans << endl; return 0; }