• ZOJ1610——Count the Colors (区间染色+暴力)


    Painting some colored segments on a line, some previously painted segments may be covered by some the subsequent ones.

    Your task is counting the segments of different colors you can see at last.

    Input

    The first line of each data set contains exactly one integer n, 1 <= n <= 8000, equal to the number of colored segments.

    Each of the following n lines consists of exactly 3 nonnegative integers separated by single spaces:

    x1 x2 c

    x1 and x2 indicate the left endpoint and right endpoint of the segment, c indicates the color of the segment.

    All the numbers are in the range [0, 8000], and they are all integers.

    Input may contain several data set, process to the end of file.

    Output


    Each line of the output should contain a color index that can be seen from the top, following the count of the segments of this color, they should be printed according to the color index.

    If some color can't be seen, you shouldn't print it.

    Print a blank line after every dataset.


    Sample Input

    5
    0 4 4
    0 3 1
    3 4 2
    0 2 2
    0 2 3
    4
    0 1 1
    3 4 1
    1 3 2
    1 3 1
    6
    0 1 0
    1 2 1
    2 3 1
    1 2 0
    2 3 0
    1 2 1

    Sample Output

    1 1
    2 1
    3 1

    1 1

    0 2
    1 1


    #include <cstdio>
    #include <cstring> 
    
    using namespace std;
    
    const int MAXN = 8050;
    
    int Tree[MAXN*4];
    int Change[MAXN*4];
    int mount[MAXN];
    int book[MAXN];
    int top;
    
    void PushDown(int temp){
    	if(Change[temp]!=-1){
    		Change[temp<<1] = Change[temp<<1|1] = Change[temp];
    		Change[temp] = -1;
    	}
    }
    
    void Updata(int temp,int left,int right,int ql,int qr,int value){
    	if(ql<=left && qr>=right){
    		Change[temp] = value;
    		return;
    	}
    	PushDown(temp);
    	
    	int mid = left + (right-left)/2;
    	if(ql<=mid)Updata(temp<<1,left,mid,ql,qr,value);
    	if(qr>mid)Updata(temp<<1|1,mid+1,right,ql,qr,value);
    }
    
    void query(int temp,int left,int right){
    	if(left == right){
    		if(Change[temp]!=-1){
    			Tree[temp] = Change[temp];
    			Change[temp] = -1;
    		}
    		mount[top++] = Tree[temp];//把叶节点的数据收集起来方便暴力
    		return;
    	}
    	PushDown(temp);
    	int mid = left + (right-left)/2;
    	query(temp<<1,left,mid);
    	query(temp<<1|1,mid+1,right);
    }
    
    int main(){
    	
    	int N;
    	while(scanf("%d",&N)!=EOF){
    		memset(Tree,-1,sizeof(Tree));
    		memset(Change,-1,sizeof(Change));
    		memset(book,0,sizeof(book));
    		top = 0;
    		int a,b,c;
    		for(int i=0 ; i<N ; i++){
    			scanf("%d %d %d",&a,&b,&c);
    			if(a<b)a++;//左开右闭
    			Updata(1,1,MAXN,a+1,b+1,c);
    		}
    		query(1,1,MAXN);
    		int t = -1;
    		for(int i=0 ; i<top ; i++){
    			if(mount[i]!=-1 && mount[i]!=t){
    				t = mount[i];
    				book[t]++;
    			}else if(mount[i] == -1 && mount[i]!=t){
    				t = mount[i];
    			}
    		}
    		for(int i=0 ; i<MAXN ; i++){
    			if(book[i])printf("%d %d
    ",i,book[i]);
    		}
    		printf("
    ");
    	}
    	
    	return 0;
    }





  • 相关阅读:
    .NET ------- 根据关键字查询后,点击详细页面对关键字标红
    .NET ------ 禁止文本输入的三种方式
    .NET ---- 借助repeater在行中进行下拉框编辑 (前端赋值给下拉框)
    Android ------ Android Studio 生成 apk 文件
    CentOS 8 Stream 简单的网络配置
    最受欢迎的 10 本编程书籍(文末附地址)
    优秀程序员必须掌握的 8 种通用数据结构
    一次阿里 P7 的面经,分享给大家
    如何在 Windows 上运行 Linux? 这里有一份攻略!
    为啥程序员下班后从不关电脑?
  • 原文地址:https://www.cnblogs.com/vocaloid01/p/9514122.html
Copyright © 2020-2023  润新知