標籤:
題目連結:點擊開啟連結
題意:給定n個數的序列(可以排序)
操作一次可以使得某個數++或--。問最少操作幾次使得序列變成一個等差序列
輸出:
第一行輸出最少操作的次數
第二行輸出等差數列裡的最小項 和 公差的絕對值。
思路:枚舉公差,公差範圍一定是0到 2Max.
先排個序。
我們使得首項不變,形成一個等差數列。
然後讓整個數列位移至 操作後的數組的差值 最小值 == 0,這樣這個數列的操作次數= 最大的差值/2.
done.
#include <iostream>#include <fstream>#include <string>#include <time.h>#include <vector>#include <map>#include <queue>#include <algorithm>#include <cstring>#include <cmath>#include <set>#include <vector>using namespace std;template <class T>inline bool rd(T &ret) {char c; int sgn;if (c = getchar(), c == EOF) return 0;while (c != '-' && (c<'0' || c>'9')) c = getchar();sgn = (c == '-') ? -1 : 1;ret = (c == '-') ? 0 : (c - '0');while (c = getchar(), c >= '0'&&c <= '9') ret = ret * 10 + (c - '0');ret *= sgn;return 1;}template <class T>inline void pt(T x) {if (x <0) {putchar('-');x = -x;}if (x>9) pt(x / 10);putchar(x % 10 + '0');}typedef long long ll;typedef pair<int, int> pii;const int N = 1e3+10;const int inf = 1e9;int n, a[N], b[N], ans;pii an;int go(int x){b[1] = 0;int mi = 0;for (int i = 2, now = a[1] + x; i <= n; i++, now += x){b[i] = a[i] - now;mi = min(mi, b[i]);}int ma = 0;for (int i = 1; i <= n; i++) {b[i] -= mi; ma = max(ma, b[i]);}b[1] -= (ma + 1) >> 1;return (ma + 1) >> 1;}int main(){rd(n);for (int i = 1; i <= n; i++)rd(a[i]);sort(a + 1, a + 1 + n);ans = 1e9;for (int step = 0;step <= 30000; step++){int tmp = go(step);if (ans > tmp){ ans = tmp; an.first = a[1] - b[1]; an.second = step; }else if (ans == tmp){ an = min(an, pii(a[1] - b[1], step)); }}cout << ans << endl;cout << an.first << " " << an.second << endl;return 0;}
著作權聲明:本文為博主原創文章,未經博主允許不得轉載。
Codeforces 394D Physical Education and Buns 胡搞