BZOJ 1406: [AHOI2007]密码箱

Posted ZlycerQan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ 1406: [AHOI2007]密码箱相关的知识,希望对你有一定的参考价值。

二次联通门 : BZOJ 1406: [AHOI2007]密码箱

 

 

 

 

/*
    BZOJ 1406: [AHOI2007]密码箱

    数论
    要求 x^2 ≡ 1 (mod n)
    可以转换为 x ^ 2 - k *n = 1
    (x + 1) * (x - 1) = k * n
    设 n = a * b
    则 a * b | (x + 1) * (x - 1)
       那么枚举b即可    
*/
#include <cstdio>
#include <cmath>
#include <set>
typedef long long LL;
#define Set std :: set <LL> 

int main ()
{
    LL N, a, b; scanf ("%lld", &N); register LL i, j;
    int L = sqrt (N); Set Answer;
    for (i = 1; i <= L; ++ i)
        if (N % i == 0)
        {
            a = i, b = N / i;
            for (j = 0; j <= N; j += b)
            {
                if ((j + 2) % a == 0 && j + 2 < N) Answer.insert (j + 1);
                   if ((j - 2) % a == 0 && j - 2 >= 0) Answer.insert (j - 1);
            }
        }
    if (Answer.size () == 0) return printf ("None"), 0;
    for (Set :: iterator i = Answer.begin (); i != Answer.end (); ++ i)
        printf ("%lld\n", *i);    
    return 0;
}

 

以上是关于BZOJ 1406: [AHOI2007]密码箱的主要内容,如果未能解决你的问题,请参考以下文章

bzoj1406: [AHOI2007]密码箱

bzoj1406: [AHOI2007]密码箱

1406: [AHOI2007]密码箱

1406: [AHOI2007]密码箱

BZOJ-1406密码箱 约数 + 乱搞 + set?

题解 P4296 [AHOI2007]密码箱