Codeforces 394D Physical Education and Buns 胡搞

來源:互聯網
上載者:User

標籤:

題目連結:點擊開啟連結

題意:給定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 胡搞

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.