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

XDOJ_1121_规律

时间:2016-11-06 07:45:24      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:scan   problem   iostream   can   ret   规律   php   color   ring   

http://acm.xidian.edu.cn/problem.php?id=1121

 

60个刚好超1e18,60之前直接递归算,60之后的用60的来算。

 

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
using namespace std;

long long a[65],n,k;

int f(long long x,long long y)
{
    if(x == 1)  return 1;
    if(y <= a[x-1]) return f(x-1,y)^1;
    if(y == a[x-1]+1)   return 1;
    return f(x-1,a[x]-y+1);
}

int main()
{
    a[1] = 1;
    for(int i = 2;i <= 64;i++)  a[i] = a[i-1]*2+1;
    while(~scanf("%lld%lld",&n,&k))
    {
        int ans;
        if(n <= 60) ans = f(n,k);
        else
        {
            ans = f(60,k);
            if(n&1)    ans ^= 1;
        }
        if(ans) printf("srO\n");
        else    printf("Orz\n");
    }
    return 0;
}

 

XDOJ_1121_规律

标签:scan   problem   iostream   can   ret   规律   php   color   ring   

原文地址:http://www.cnblogs.com/zhurb/p/6034627.html

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