結果

問題 No.165 四角で囲え!
ユーザー cielciel
提出日時 2015-03-12 23:46:57
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 46,336 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 22:33:24
合計ジャッジ時間 2,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 13 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 67 ms
5,376 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 87 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:9:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         scanf("%d%d",&N,&B);
      |         ~~~~~^~~~~~~~~~~~~~
main.cpp:11:34: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         for(int i=0;i<N;i++)scanf("%d%d%d",&v[i].first.first,&v[i].first.second,&v[i].second);
      |                             ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

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