Codeforces Round #524 (Div. 2) B. Margarite and the best present

Posted heyuhhh

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #524 (Div. 2) B. Margarite and the best present相关的知识,希望对你有一定的参考价值。

B. Margarite and the best present

题目链接:https://codeforces.com/contest/1080/problem/B

题意:

给出一个数列:an=(-1)n,之后有询问,问 [l,r] 之间的ai和为多少。

题解:
这个分情况讨论一下就可以了,区间长度的奇偶数丶左端点的奇偶数。

 

代码如下:

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

typedef long long ll;
int q;
int main(){
    cin>>q;
    for(int i=1;i<=q;i++){
        int l,r;
        scanf("%d%d",&l,&r);
        int len = r-l+1;
        if(len%2){
            if(l%2) printf("%d
",len/2+r);
            else printf("%d
",r-len/2);
        }else{
            if(l%2) printf("%d
",len/2);
            else printf("%d
",-len/2);
        }
    }
}

 


以上是关于Codeforces Round #524 (Div. 2) B. Margarite and the best present的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #524 (Div. 2) codeforces 1080A~1080F

Codeforces Round #524 (Div.2)题解

Codeforces Round #524 (Div. 2)

Codeforces Round #524 Div. 2 翻车记

Codeforces Round #524 (Div. 2)(前3题题解)

Codeforces Round #524 (Div. 2) F