結果

問題 No.2790 Athena 3
ユーザー tanaka255tanaka255
提出日時 2024-06-21 21:26:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 203,836 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-21 21:26:19
合計ジャッジ時間 2,737 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
template<typename T>
bool chmax(T &a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}
template<typename T>
bool chmin(T &a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
void solve();
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  cout << fixed << setprecision(20);
  int t = 1;
  //cin >> t;
  while (t--) {
    solve();
  }
}
int x[3],y[3];
void solve() {
  rep(i,3)cin>>x[i]>>y[i];
  double ans=0.0;
  rep(S,1<<6){
    vector<int>X(x,x+3),Y(y,y+3);
    int s=S;
    rep(i,3){
      int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};
      X[i]+=dx[s%4],Y[i]+=dy[s%4];
      s/=4;
    }
    int a=X[1]-X[0],b=Y[1]-Y[0];
    int c=X[2]-X[0],d=Y[2]-Y[0];
    chmax(ans,(double)abs(a*d-b*c)/2.0);
  }
  cout<<ans<<endl;
}
0