SPOJ - COLONY B - Linearian Colony 二分

来源:互联网 发布:磁铁车牌号码贴 淘宝 编辑:程序博客网 时间:2024/06/05 09:58

Description

Linearians are pecurliar creatures. They are odd in several ways:
  1. Every Linearian is either red or blue.
  2. A Linearian colony is a straight line, aligned N-S with the magentic field.
  3. A colony starts with single red Linearian.
  4. Every year, each Linearian produces an offspring of the opposite color. After birth, the parent moves just south of the offspring. (Since everyone is born at once, this does make for a lot of jostling, but everyone stays in order.)
So a colony grows as follows:
N ----------- SYear 0: RYear 1: BRYear 2: RBBRYear 3: BRRBRBBRYear 4: RBBRBRRBBRRBRBBR
Given a year and a position along the N-S axis, determine what the color of the Linearian there will be.

Input

The first line is the year Y (0 <= Y <= 51). The second line is the position P from north to south, 0-indexed (0 <= P < 2^Y).

Ouput

The color of the Linearian, either red or blue.
InputInput
36
51123456789012345
OutputOutput
blue
red

#include <iostream> #include <cstdio>#include <cstdlib>#include <cmath>#include <fstream>#include <algorithm>#include <climits>#include <cstring>#include <string>#include <set>#include <map>#include <queue>#include <stack>#include <vector>#include <list>const int maxn=5e2+10;using namespace std;typedef  long long ll;typedef  unsigned long long  ull; ll y,p; int main(){ll sum =1;cin >> y>>p;p++;for(int i=1;i<=y;i++)sum*=2;int flag = 0; ll l=1,r=sum;while(l<r){ll mid = (l+r)/2;if(p<=mid){flag ++;r = mid;}else{l = mid+1;}} //cout <<l<<r<< flag <<endl;if(flag%2)cout <<"blue"<<endl;elsecout <<"red"<<endl; return 0;} 



0 0