結果
問題 | No.165 四角で囲え! |
ユーザー | nmnmnmnmnmnmnm |
提出日時 | 2014-12-21 21:00:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 178 ms / 5,000 ms |
コード長 | 1,936 bytes |
コンパイル時間 | 1,062 ms |
コンパイル使用メモリ | 104,696 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 18:52:08 |
合計ジャッジ時間 | 3,391 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 114 ms
5,376 KB |
testcase_06 | AC | 27 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 67 ms
5,376 KB |
testcase_12 | AC | 35 ms
5,376 KB |
testcase_13 | AC | 46 ms
5,376 KB |
testcase_14 | AC | 39 ms
5,376 KB |
testcase_15 | AC | 39 ms
5,376 KB |
testcase_16 | AC | 165 ms
5,376 KB |
testcase_17 | AC | 146 ms
5,376 KB |
testcase_18 | AC | 178 ms
5,376 KB |
testcase_19 | AC | 155 ms
5,376 KB |
testcase_20 | AC | 146 ms
5,376 KB |
testcase_21 | AC | 144 ms
5,376 KB |
testcase_22 | AC | 145 ms
5,376 KB |
ソースコード
#include <algorithm> #include <cfloat> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstdlib> #include <cstring> #include <functional> #include <iostream> #include <map> #include <memory> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; #define sz size() #define pb push_back #define mp make_pair #define fi first #define se second #define all(c) (c).begin(), (c).end() #define rep(i,a,b) for(long long i=(a);i<(b);++i) #define clr(a, b) memset((a), (b) ,sizeof(a)) #define MOD 1000000007 int main(){ int n,B; cin>>n>>B; vector<pair<int,pair<int,int> > > p; rep(i,0,n){ int a,b,c; cin>>a>>b>>c; p.pb(mp(a*2,mp(b*2,c))); } sort(all(p)); set<int> se; rep(i,0,p.sz){ se.insert(p[i].se.fi-1); } se.insert(2000000001); vector<int> d(all(se)); int mx = 0; rep(i,0,d.sz){ rep(j,i+1,d.sz){ vector<pair<int,int> > m; rep(k,0,p.sz){ if(d[i]<p[k].se.fi&&d[j]>p[k].se.fi){ m.pb(mp(p[k].fi, p[k].se.se)); } } int index1 = 0; int index2 = 0; int c = 0; int e = 0; for(;;){ if(e<=B){ for(;;){ c++; e+=m[index1].se; index1++; if(index1==m.sz)break; if(m[index1-1].fi==m[index1].fi)continue; break; } } else{ for(;;){ c--; e-=m[index2].se; index2++; if(index2==m.sz)break; if(m[index2-1].fi==m[index2].fi)continue; break; } } if(e<=B){ mx = max(mx,c); if(index1==m.sz)break; } } } } cout << mx << endl; return 0; } /* Y軸方向はnC2で全探索してX軸方向はしゃくとり法やるだけな問題です。O(n^3)。 */