結果
問題 | No.165 四角で囲え! |
ユーザー | face4 |
提出日時 | 2019-09-28 10:40:45 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,533 bytes |
コンパイル時間 | 982 ms |
コンパイル使用メモリ | 92,276 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 15:20:39 |
合計ジャッジ時間 | 23,883 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 835 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1,047 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 1 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 1,609 ms
5,248 KB |
testcase_13 | AC | 1,687 ms
5,248 KB |
testcase_14 | AC | 1,258 ms
5,248 KB |
testcase_15 | AC | 1,263 ms
5,248 KB |
testcase_16 | AC | 1,640 ms
5,248 KB |
testcase_17 | AC | 1,854 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | AC | 1,638 ms
5,248 KB |
testcase_20 | AC | 1,635 ms
5,248 KB |
testcase_21 | AC | 1,629 ms
5,248 KB |
testcase_22 | AC | 1,616 ms
5,248 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<map> using namespace std; #define inRange(x,a,b) (a <= x && x <= b) typedef pair<int,int> pii; int main(){ cin.tie(0); ios::sync_with_stdio(false); int n, b; cin >> n >> b; vector<pair<pii,int>> vp; for(int i = 0; i < n; i++){ int x, y, p; cin >> x >> y >> p; vp.push_back({{x,y},p}); } sort(vp.begin(), vp.end()); int ans = 0; for(int i = 0; i < n; i++){ for(int j = i+1; j < n; j++){ int low = vp[i].first.second, high = vp[j].first.second; if(low > high) swap(low, high); map<int,int> ms, mv; for(int k = 0; k < n; k++){ if(inRange(vp[k].first.second, low, high)){ ms[vp[k].first.first] += (vp[k].second); mv[vp[k].first.first]++; } } vector<int> vs, vv; for(auto p : ms) vs.push_back(p.second); for(auto p : mv) vv.push_back(p.second); int l = 0, r = 0, sum = 0, cnt = 0; while(l < vs.size()){ while(r < vs.size() && sum+vs[r] <= b){ sum += vs[r]; cnt += vv[r]; r++; } ans = max(ans, cnt); sum -= vs[l]; cnt -= vv[l]; l++; if(vs[r] > b) l = ++r; } } } cout << ans << endl; return 0; }