码迷,mamicode.com
首页 > 其他好文 > 详细

UVA-11490 Just Another Problem

时间:2015-08-09 10:38:52      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:

题目大意:一个由p*q个点组成的pxq点阵(构成一个矩形)。从内层点中拿走两块正方形上的所有点,这两块正方形要边长相等,在位置上关于中线对称,并且还要使每一个正方形的上下左右剩余的点的层数相等。现在告已知拿走以后剩余的点的个数s,求可能拿走了多少个点。

题目分析:当拿走了2n^2个点时,根据题设中的条件依据,剩余的点的个数为 s=7nk+6k^k  (其中,k为层数)。枚举k,可得n,问题解决。

 

代码如下:

# include<cstdio>
using namespace std;
# define LL long long
const LL mod=100000007;
int main()
{
    LL s;
    while(~scanf("%lld",&s)&&s)
    {
        int yy=1;
        for(LL k=1;6*k*k<s;++k){
            LL u=s-6*k*k;
            if(u%(7*k)==0){
                LL n=u/(7*k)%mod;
                printf("Possible Missing Soldiers = %lld\n",n*n*2%mod);
                yy=0;
            }
        }
        if(yy)
            printf("No Solution Possible\n");
        printf("\n");
    }
    return 0;
}

 

UVA-11490 Just Another Problem

标签:

原文地址:http://www.cnblogs.com/20143605--pcx/p/4714629.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!