2019上海網絡賽(B)Light bulbs差分

There are N light bulbs indexed from 0 to N-1. Initially, all of them are off.

A FLIP operation switches the state of a contiguous subset of bulbs. FLIP(L, R)means to flip all bulbs x such that LxR*. So for example, FLIP(3, 5) means to flip bulbs 3 , 4 and 5, and FLIP(5, 5) means to flip bulb 5.

Given the value of N and a sequence of M flips, count the number of light bulbs that will be on at the end state.

InputFile

The first line of the input gives the number of test cases, T. T test cases follow. Each test case starts with a line containing two integers N and M*, the number of light bulbs and the number of operations, respectively. Then, there are M more lines, the i*-th of which contains the two integers Li and Ri, indicating that the i-th operation would like to flip all the bulbs from Li to Ri , inclusive.

1≤T≤1000

1≤N≤106

1≤M≤1000

0≤LiRiN−1

OutputFile

For each test case, output one line containing Case #x: y, where xx is the test case number (starting from 11) and yy is the number of light bulbs that will be on at the end state, as described above.

樣例輸入複製

2
10 2
2 6
4 8
6 3
1 1
2 3
3 4

樣例輸出複製

Case #1: 4
Case #2: 3

題意:

有n盞燈從0到n-1,現在給你m個區間(l,r),這個區間內的每個燈會發生變化,關—>開,開—>關。

問你最後有多少亮着的燈。最初燈都是關着的。

鏈接:

https://nanti.jisuanke.com/t/41399

思路:

差分。

我們可以利用差分來處理區間。(l)+1,(r+1)+1。

我們可以對端點進行排序,直接跑一遍2*m即可。

如果是左端點則+1,右端點-1.

區間是左閉右開只有是奇數的時候是亮的。所以R-L即可。

代碼:

#include <bits/stdc++.h>
using namespace std;
const int maxn = 2000+50;
pair<int ,int> p[maxn];
int main()
{
    ios::sync_with_stdio(false);
    int t, n, m, l, r;
    scanf("%d", &t);
    for(int Case = 1; Case <= t; Case++) {
        scanf("%d%d", &n, &m);
        int tot = 0;
        for(int i = 0; i < m; i++) {
            scanf("%d %d", &l, &r);
            p[tot++] = make_pair(l,1);
            p[tot++] = make_pair(r+1,-1);
        }
        sort(p, p+tot);
        int ans = 0;
        int sum = 0;
        for(int i = 0; i < tot; i++) {
            if(sum & 1) {
                ans += p[i].first - p[i-1].first;
            }
            sum += p[i].second;
        }
        printf("Case #%d: %d\n", Case, ans);
    }


    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章