結果
問題 | No.731 等差数列がだいすき |
ユーザー | jupiro |
提出日時 | 2020-01-14 22:09:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,646 bytes |
コンパイル時間 | 1,204 ms |
コンパイル使用メモリ | 115,324 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 01:06:02 |
合計ジャッジ時間 | 2,085 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
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 | - |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long MOD = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ ll n; scanf("%lld", &n); vector<ll> y(n); for (ll i = 0; i < n; i++) scanf("%lld", &y[i]); long double sum_x = n * (n - 1) / 2; long double sum_y = 0; long double sum_xy = 0; long double sum_x2 = 0; long double sum_y2 = 0; for (ll i = 0; i < n; i++) { sum_y += y[i]; sum_xy += i * y[i]; sum_x2 += i * i; sum_y2 += y[i] * y[i]; } long double a = (n * sum_xy - sum_x * sum_y) / (n * sum_x2 - sum_x * sum_x); long double b = (sum_x2 * sum_y - sum_xy * sum_x) / (n * sum_x2 - sum_x * sum_x); long double cost = 0.0; for (ll i = 0; i < n; i++) { long double req = a * i + b; cost += (req - y[i]) * (req - y[i]); } cout << fixed << setprecision(12) << a + b << " " << a << "\n" << cost << endl; return 0; }