結果
問題 | No.165 四角で囲え! |
ユーザー | fiord |
提出日時 | 2015-08-26 08:44:21 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,009 bytes |
コンパイル時間 | 1,525 ms |
コンパイル使用メモリ | 171,996 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 14:40:54 |
合計ジャッジ時間 | 30,355 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,247 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1,924 ms
5,376 KB |
testcase_06 | AC | 362 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 737 ms
5,376 KB |
testcase_12 | AC | 312 ms
5,376 KB |
testcase_13 | AC | 364 ms
5,376 KB |
testcase_14 | AC | 423 ms
5,376 KB |
testcase_15 | AC | 380 ms
5,376 KB |
testcase_16 | AC | 3,075 ms
5,376 KB |
testcase_17 | AC | 2,511 ms
5,376 KB |
testcase_18 | TLE | - |
testcase_19 | AC | 2,697 ms
5,376 KB |
testcase_20 | AC | 2,546 ms
5,376 KB |
testcase_21 | AC | 2,438 ms
5,376 KB |
testcase_22 | AC | 2,415 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; map<int,int> mx,my; vector<pair<int,int>> ls[402]; int main(){ int n,b; cin>>n>>b; int x[n],y[n],p[n]; for(int i=0;i<n;i++) cin>>x[i]>>y[i]>>p[i],mx[x[i]]=my[y[i]]=0; mx[(1<<30)]=mx[-(1<<30)]=my[(1<<30)]=my[-(1<<30)]=0; int cnt=0; for(auto it=mx.begin();it!=mx.end();it++) it->second=cnt++; cnt=0; for(auto it=my.begin();it!=my.end();it++) it->second=cnt++; for(int i=0;i<n;i++) ls[my[y[i]]].push_back(make_pair(x[i],p[i])); int ans=0; for(int x1=0;x1<(int)mx.size();x1++){ for(int x2=x1;x2<(int)mx.size();x2++){ int y1=0,point=0,tmp=0; for(int y2=0;y2<(int)my.size();y2++){ for(auto it=ls[y2].begin();it!=ls[y2].end();it++){ if(x1<=mx[it->first]&&mx[it->first]<=x2) point+=it->second,tmp++; } while(point>b){ for(auto it=ls[y1].begin();it!=ls[y1].end();it++){ if(x1<=mx[it->first]&&mx[it->first]<=x2) point-=it->second,tmp--; } y1++; } ans=max(ans,tmp); } } } cout<<ans<<endl; return 0; }