結果

問題 No.2970 三次関数の絶対値
ユーザー SSRSSSRS
提出日時 2024-11-29 21:33:14
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 954 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 207,292 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-29 21:33:22
合計ジャッジ時間 3,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 WA -
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 2 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 2 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:10:23: warning: narrowing conversion of 'L' from 'int' to 'double' [-Wnarrowing]
   10 |   vector<double> X = {L, R};
      |                       ^
main.cpp:10:23: warning: narrowing conversion of 'L' from 'int' to 'double' [-Wnarrowing]
main.cpp:10:26: warning: narrowing conversion of 'R' from 'int' to 'double' [-Wnarrowing]
   10 |   vector<double> X = {L, R};
      |                          ^
main.cpp:10:26: warning: narrowing conversion of 'R' from 'int' to 'double' [-Wnarrowing]

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const double INF = 10000000;
const double eps = 0.0000001;
int main(){
  int C0, C1, C2, C3;
  cin >> C0 >> C1 >> C2 >> C3;
  int L, R;
  cin >> L >> R;
  vector<double> X = {L, R};
  if (C3 != 0){
    double a = C3 * 3, b = C2 * 2, c = C1;
    if (b * b - 4 * a * c >= 0){
      for (int sgn : {-1, 1}){
        double x = (-b + sgn * sqrt(b * b - 4 * a * c)) / (2 * a);
        if (L <= x && x <= R){
          X.push_back(x);
        }
      }
    }
  } else if (C2 != 0){
    double x = -C1 / (C2 * 2);
    if (L <= x && x <= R){
      X.push_back(x);
    }
  }
  sort(X.begin(), X.end());
  int cnt = X.size();
  auto f = [&](double x){
    return ((x * C3 + C2) * x + C1) * x + C0;
  };
  double ans = INF;
  for (int i = 0; i < cnt; i++){
    ans = min(ans, abs(f(X[i])));
  }
  for (int i = 0; i < cnt - 1; i++){
    if (f(X[i]) * f(X[i + 1]) < eps){
      ans = 0;
    }
  }
  cout << ans << endl;
}
0