結果

問題 No.2331 Maximum Quadrilateral
ユーザー 蜜蜂蜜蜂
提出日時 2023-05-28 14:13:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,568 bytes
コンパイル時間 3,460 ms
コンパイル使用メモリ 230,864 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-08 04:56:44
合計ジャッジ時間 7,535 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
6,816 KB
testcase_01 AC 94 ms
6,940 KB
testcase_02 AC 114 ms
6,944 KB
testcase_03 AC 119 ms
6,944 KB
testcase_04 AC 157 ms
6,940 KB
testcase_05 AC 162 ms
6,940 KB
testcase_06 AC 153 ms
6,940 KB
testcase_07 AC 135 ms
6,944 KB
testcase_08 AC 93 ms
6,944 KB
testcase_09 AC 88 ms
6,940 KB
testcase_10 AC 81 ms
6,940 KB
testcase_11 AC 90 ms
6,944 KB
testcase_12 AC 79 ms
6,944 KB
testcase_13 AC 84 ms
6,940 KB
testcase_14 AC 165 ms
6,940 KB
testcase_15 AC 14 ms
6,944 KB
testcase_16 AC 56 ms
6,944 KB
testcase_17 AC 5 ms
6,940 KB
testcase_18 AC 18 ms
6,940 KB
testcase_19 AC 5 ms
6,944 KB
testcase_20 AC 192 ms
6,940 KB
testcase_21 AC 180 ms
6,944 KB
testcase_22 AC 182 ms
6,944 KB
testcase_23 AC 180 ms
6,940 KB
testcase_24 AC 179 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 WA -
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 1 ms
6,940 KB
testcase_34 AC 1 ms
6,944 KB
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 1 ms
6,944 KB
testcase_37 AC 1 ms
6,940 KB
testcase_38 AC 2 ms
6,944 KB
testcase_39 AC 1 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 1 ms
6,940 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 2 ms
6,940 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// g++ 1.cpp -std=c++17 -O2 -I .
#include <bits/stdc++.h>
using namespace std;

#include <atcoder/all>
using namespace atcoder;

using ll = long long;
using ld = long double;
 
using vi = vector<int>;
using vvi = vector<vi>;
using vll = vector<ll>;
using vvll = vector<vll>;
using vld = vector<ld>;
using vvld = vector<vld>;
using vst = vector<string>;
using vvst = vector<vst>;
 
#define fi first
#define se second
#define pb push_back
#define eb emplace_back
#define pq_big(T) priority_queue<T,vector<T>,less<T>>
#define pq_small(T) priority_queue<T,vector<T>,greater<T>>
#define all(a) a.begin(),a.end()
#define rep(i,start,end) for(ll i=start;i<(ll)(end);i++)
#define per(i,start,end) for(ll i=start;i>=(ll)(end);i--)
#define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end())

struct point{
  ll x,y;
};

// 面積の 2 倍
ll area(point a,point b,point c){
  return abs((a.x-c.x)*(b.y-c.y)-(b.x-c.x)*(a.y-c.y));
}

// c は ab より上か?
bool up(point a,point b,point c){
  ll s=(a.x-b.x)*(c.y-a.y)-(a.y-b.y)*(c.x-a.x);
  if(s>0){
    return 1;
  }
  return 0;
}

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int n;cin>>n;
  vector<point> v(n);
  ll ans=0;

  rep(i,0,n){
    int x,y;cin>>x>>y;
    v[i]={x,y};
  }

  rep(i,0,n){
    rep(j,i+1,n){
      ll a1=0,a2=0;
      rep(k,0,n){
        if(k==i||k==j)continue;
        ll a=area(v[i],v[j],v[k]);
        if(up(v[i],v[j],v[k])==1){
          a1=max(a1,a);
        }
        else{
          a2=max(a2,a);
        }
      }

      ans=max(ans,a1+a2);
    }
  }

  cout<<ans<<endl;
}
0