結果

問題 No.2970 三次関数の絶対値
ユーザー SSRSSSRS
提出日時 2024-11-29 21:26:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,063 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 206,952 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-29 21:26:47
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 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 WA -
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 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 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 1 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 WA -
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 1 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 WA -
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 1 ms
5,248 KB
testcase_44 WA -
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 1 ms
5,248 KB
testcase_47 WA -
testcase_48 AC 2 ms
5,248 KB
testcase_49 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:12:25: warning: narrowing conversion of 'L' from 'int' to 'double' [-Wnarrowing]
   12 |     vector<double> X = {L, R};
      |                         ^
main.cpp:12:25: warning: narrowing conversion of 'L' from 'int' to 'double' [-Wnarrowing]
main.cpp:12:28: warning: narrowing conversion of 'R' from 'int' to 'double' [-Wnarrowing]
   12 |     vector<double> X = {L, R};
      |                            ^
main.cpp:12:28: warning: narrowing conversion of 'R' from 'int' to 'double' [-Wnarrowing]

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const double INF = 10000000;
int main(){
  int C0, C1, C2, C3;
  cin >> C0 >> C1 >> C2 >> C3;
  int L, R;
  cin >> L >> R;
  if (C3 == 0 && C2 == 0 && C1 == 0){
    cout << abs(C0) << endl;
  } else {
    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;
          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]) < 0){
        ans = 0;
      }
    }
    cout << ans << endl;
  }
}
0