👋
ARC 100 | C - Linear Approximation
問題
考えたこと
以下のように式を変形する。
よってそのときの
コード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using uint = unsigned int;
using ull = unsigned long long;
const int MOD = 1e9 + 7;
int main() {
ll n;
cin >> n;
vector<ll> a(n);
for (int i = 0; i < n; i++) {
cin >> a[i];
a[i] -= (i + 1);
}
sort(a.begin(), a.end());
ll ans = 0;
for (int i = 0; i < n; i++) {
ans += abs(a[i] - a[n / 2]);
}
cout << ans << endl;
}
Discussion