結果

問題 No.165 四角で囲え!
ユーザー cielciel
提出日時 2015-03-12 23:46:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 50,052 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-11 08:01:26
合計ジャッジ時間 2,710 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 13 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 1 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 65 ms
4,380 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 85 ms
4,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <algorithm>
#include <cstdio>
using namespace std;
typedef pair<pair<int,int>,int> ppiii;

int main(){
	int N,B,R=0;
	scanf("%d%d",&N,&B);
	vector<ppiii> v(N);
	for(int i=0;i<N;i++)scanf("%d%d%d",&v[i].first.first,&v[i].first.second,&v[i].second);
	sort(v.begin(),v.end());
	for(int i=0;i<N;i++)for(int j=i;j<N;j++){
		int r=0,b=0;
		for(int k=0;k<N;k++)if(
			(
				(v[i].first.first<=v[k].first.first&&v[k].first.first<=v[j].first.first) ||
				(v[j].first.first<=v[k].first.first&&v[k].first.first<=v[i].first.first)
			) && (
				(v[i].first.second<=v[k].first.second&&v[k].first.second<=v[j].first.second) ||
				(v[j].first.second<=v[k].first.second&&v[k].first.second<=v[i].first.second)
			)
		){
			r++;
			b+=v[k].second;
		}
		if(b<=B)R=max(R,r);
	}
	printf("%d\n",R);
}
0