sgu 246 分类: sgu 2015-06-27 13:40 20人阅读 评论(0) 收藏
一道好题。
把距离为
每个联通块的大小为
所以每个联通块最多可以有
那么
#include<cstdio>
#include<cstdlib>
#include<ctime>
#include<cmath>
#include<cstring>
#include<map>
#include<string>
#include<stack>
#include<queue>
#include<utility>
#include<iostream>
#include<algorithm>
int gcd(int a,int b)
{
return b?gcd(b, a%b):a;
}
int main()
{
int n, m, cnt, L;
#ifndef ONLINE_JUDGE
freopen("sgu246.in","r",stdin);
freopen("sgu246.out","w",stdout);
#endif
std::cin >> m;
n = ((unsigned int)m + 1)>>1;
cnt = gcd(m, n+1), L = m/cnt;
std::cout << (long long)cnt*(L>>1)+1;
#ifndef ONLINE_JUDGE
fclose(stdin);
fclose(stdout);
#endif
return 0;
}
版权声明:本文为博主原创文章,未经博主允许不得转载。