結果

問題 No.731 等差数列がだいすき
ユーザー le_panda_noirle_panda_noir
提出日時 2020-06-13 19:18:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,015 bytes
コンパイル時間 771 ms
コンパイル使用メモリ 80,800 KB
実行使用メモリ 4,500 KB
最終ジャッジ日時 2023-09-08 01:50:35
合計ジャッジ時間 2,074 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <vector>
#include <iomanip>

using namespace std;
using ll = long long;
using vi = vector<int>;

#define in(v) v; cin >> v;
void ins() {}
template<class T,class... Rest>void ins(T& v,Rest&... rest){cin>>v;ins(rest...);}
#define rep(i,n) for(int i=0,_i=(n);i<_i;++i)

int main() {
  int N;
  ins(N);

  vi A(N);
  rep(i, N) {
    cin >> A[i];
  }
  cout << fixed << setprecision(15);

  ll diff = 0;
  rep(i, N-1) diff += A[i+1] - A[i];

  ll B = 0, B2 = 0;
  rep(i, N) {
    B += A[i] * (N-1) - diff * i;
    B2 += A[i] * N - diff * i;
  }
  double b = 1.0 * B / (N-1) / N,
         d = 1.0 * diff  / (N-1);
  double b2 = 1.0 * B / N / (N+1),
         d2 = 1.0 * diff  / N;

  double ans = 0, ans2 = 0;
  rep(i, N) {
    ans += 1.0 * (A[i] - b - d * i) * (A[i] - b - d * i);
    ans2 += 1.0 * (A[i] - b2 - d2 * i) * (A[i] - b2 - d2 * i);
  }
  if (ans < ans2)
    cout << b << " " << d << endl << ans << endl;
  else
    cout << b2 << " " << d2 << endl << ans2 << endl;


  return 0;
}
0