HDU 5023 a segment upt mayor's performance art (line segment tree)

Source: Internet
Author: User

Question Link

There is a sequence with N length. The initial staining is 2. There are two operations: p x, Y, Z, and the interval x --- y is Z, and the other is q X, y: the query interval X -- y has several colors, and the output will overwrite

Analysis: the value of LZ [] is 0, indicating that the following colors are inconsistent. The value is> 0. f [] indicates the number of colors under the node, which is a binary representation of 30 colors.

At the beginning, 1 <I is incorrect. I don't know why, and the int range will not exceed ..

 1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <cstdlib> 5 #include <cmath> 6 #include <algorithm> 7 #define LL __int64 8 #define lson l, (l+r)/2, 2*rt 9 #define rson (l+r)/2+1, r, 2*rt+110 const int maxn = 1000000+10;11 using namespace std;12 int lz[4*maxn], f[4*maxn], x;13 void pushdown(int rt)14 {15     if(lz[rt]!=0)16     {17         lz[2*rt] = lz[rt];18         f[2*rt] = (1<<(lz[rt]-1));19         lz[2*rt+1] = lz[rt];20         f[2*rt+1] = (1<<(lz[rt]-1));21         lz[rt] = 0;22     }23 }24 void pushup(int rt)25 {26     f[rt] = (f[2*rt]|f[2*rt+1]);27 }28 void update(int ll, int rr, int c, int l, int r, int rt)29 {30     if(ll>r) return;31     if(rr<l) return;32     if(ll<=l && rr>=r)33     {34         lz[rt] = c;35         f[rt] = (1<<(c-1));36         return;37     }38     pushdown(rt);39     update(ll, rr, c, lson);40     update(ll, rr, c, rson);41     pushup(rt);42 }43 void query(int ll, int rr, int l, int r, int rt)44 {45     if(ll>r) return;46     if(rr<l) return;47     if(ll<=l && rr>=r)48     {49         x |= f[rt];50         return;51     }52     pushdown(rt);53     query(ll, rr, lson);54     query(ll, rr, rson);55 }56 int main()57 {58     int n, m, i;59     int a, b, c, sum;60     char ch;61     while(~scanf("%d%d", &n, &m))62     {63         if(n==0 && m==0) break;64         lz[1] = 2; f[1] = 2;   //相当于初始化65         while(m--)66         {67             getchar();68             scanf("%c", &ch);69             if(ch==‘P‘)70             {71                 scanf("%d%d%d", &a, &b, &c);72                 update(a, b, c, 1, n, 1);73             }74             else75             {76                 x = 0;77                 scanf("%d%d", &a, &b);78                 query(a, b, 1, n, 1);79                 sum = 0;80 81                 for(i = 1; i <= 30; i++)82                 {83                     if(x&(1<<(i-1)))84                     {85                         if(sum==0)86                         printf("%d", i);87                         else88                         printf(" %d", i);89                         sum++;90                     }91                 }92                 printf("\n");93             }94         }95     }96     return 0;97 }

 

HDU 5023 a segment upt mayor's performance art (line segment tree)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.