Time limit: 3.000 seconds
Programming contests became so popular in the year 2397 that the governor of New Earck -- the largest human-inhabited planet of the galaxy -- opened a special Alley of Contestant Memories (ACM) at the local graveyard. The ACM encircles a green park, and holds the holographic statues of famous contestants placed equidistantly along the park perimeter. The alley has to be renewed from time to time when a new group of memorials arrives.
When new memorials are added, the exact place for each can be selected arbitrarily along the ACM, but the equidistant disposition must be maintained by moving some of the old statues along the alley.
Surprisingly, humans are still quite superstitious in 24th century: the graveyard keepers believe the holograms are holding dead people souls, and thus always try to renew the ACM with minimal possible movements of existing statues (besides, the holographic equipment is very heavy). Statues are moved along the park perimeter. Your work is to find a renewal plan which minimizes the sum of travel distances of all statues. Installation of a new hologram adds no distance penalty, so choose the places for newcomers wisely!
Pictures show the first three examples. Marked circles denote original statues, empty circles denote new equidistant places, arrows denote movement plans for existing statues.
2 1 2 3 3 1 10 10
1666.6667 1000.0 1666.6667 0.0
解题报告: 《训练指南》上的一道思维题。简单来说,就是把墓碑移动到最近的新位置。代码如下:
#include <cstdio> #include <cstring> #include <algorithm> #include <cmath> #include <iostream> #include <string> #include <set> #include <map> #include <queue> #include <vector> using namespace std; typedef long long LL; typedef unsigned long long ULL; #define fff(i, n, m) for(int i=(n);i<=(m);i++) #define ff(i, n) for(int i=0;i<(n);i++) #define fout freopen void work(); int main() { #ifdef ACM fout("in.txt", "r", stdin); #endif work(); } ///////////////////// void work() { int m, n; while(~scanf("%d%d", &m, &n)) { n+=m; double sum=0; ff(i, m) { sum += abs(floor((i+0.0)/m*n+0.5)/n-(i+0.0)/m); } printf("%.5f\n", sum*10000); } }