結果
| 問題 | No.165 四角で囲え! |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-03-12 23:46:57 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 808 bytes |
| 記録 | |
| コンパイル時間 | 407 ms |
| コンパイル使用メモリ | 46,336 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-28 22:33:24 |
| 合計ジャッジ時間 | 2,275 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 1 |
| other | AC * 6 WA * 13 |
コンパイルメッセージ
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);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#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);
}