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

【CodeForces - 950D】A Leapfrog in the Array

时间:2018-03-10 11:46:39      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:地址   rip   test   def   include   ret   --   http   pre   

Description

题目地址: Codeforces

Solution

对于一个询问q,如果q是奇数,那么答案就是(q-1)/2

否则将不断q=q/2+n即可

Code

#include <cstdio>
long long n,x;
int q;
int main(){
    scanf("%I64d%I64d",&n,&q);
    while(q--){
        scanf("%I64d",&x); 
        while(!(x&1)) x=(x>>1)+n;
        printf("%I64d\n",(x+1)>>1);
    }
    return 0;
}

【CodeForces - 950D】A Leapfrog in the Array

标签:地址   rip   test   def   include   ret   --   http   pre   

原文地址:https://www.cnblogs.com/void-f/p/8537336.html

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