zoukankan      html  css  js  c++  java
  • CF 500 B. New Year Permutation 并查集

    User ainta has a permutation p1, p2, ..., pn. As the New Year is coming, he wants to make his permutation as pretty as possible.

    Permutation a1, a2, ..., an is prettier than permutation b1, b2, ..., bn, if and only if there exists an integer k (1 ≤ k ≤ n) wherea1 = b1, a2 = b2, ..., ak - 1 = bk - 1 and ak < bk all holds.

    As known, permutation p is so sensitive that it could be only modified by swapping two distinct elements. But swapping two elements is harder than you think. Given an n × n binary matrix A, user ainta can swap the values of pi and pj (1 ≤ i, j ≤ n,i ≠ j) if and only if Ai, j = 1.

    Given the permutation p and the matrix A, user ainta wants to know the prettiest permutation that he can obtain.

    Input

    The first line contains an integer n (1 ≤ n ≤ 300) — the size of the permutation p.

    The second line contains n space-separated integers p1, p2, ..., pn — the permutation p that user ainta has. Each integer between 1 and n occurs exactly once in the given permutation.

    Next n lines describe the matrix A. The i-th line contains n characters '0' or '1' and describes the i-th row of A. The j-th character of the i-th line Ai, j is the element on the intersection of the i-th row and the j-th column of A. It is guaranteed that, for all integers i, j where 1 ≤ i < j ≤ nAi, j = Aj, i holds. Also, for all integers i where 1 ≤ i ≤ nAi, i = 0 holds.

    Output

    In the first and only line, print n space-separated integers, describing the prettiest permutation that can be obtained.

    Sample test(s)
    input
    7
    5 2 4 3 6 7 1
    0001001
    0000000
    0000010
    1000001
    0000000
    0010000
    1001000
    output
    1 2 4 3 6 7 5
    input
    5
    4 2 1 5 3
    00100
    00011
    10010
    01101
    01010
    output
    1 2 3 4 5
    Note

    In the first sample, the swap needed to obtain the prettiest permutation is: (p1, p7).

    In the second sample, the swaps needed to obtain the prettiest permutation is (p1, p3), (p4, p5), (p3, p4).

    permutation p is a sequence of integers p1, p2, ..., pn, consisting of n distinct positive integers, each of them doesn't exceed n. The i-th element of the permutation p is denoted as pi. The size of the permutation p is denoted as n.

    题意:

    给出一个序列,长度为n

    然后是n*n的矩阵,矩阵的值为0或者1

    maze[i][j]=1表示序列第i个和序列第j个可以交换

    maze[i][j]=0表示序列第i个和序列第j个不可以交换

    矩阵保证maze[i][j]=maze[j][i]

    现在你可以进行操作:若2个数可以交换,你可以交换他们,也可以不交换

    你可以操作无限次

    问最后得到的最小序列是多少?

    2个序列,若第一个不相等的数越小,该序列越小

    并查集,把可以交换的那一堆位置的值放在一起

    对于序列第i个位置,找到i属于哪一堆,再从这一堆中还没有用过的数中挑出一个最小的数,放在第i的位置。

     1 #include<cstdio>
     2 #include<cstring>
     3 #include<algorithm>
     4 
     5 using namespace std;
     6 
     7 const int maxn=350;
     8 const int inf=0x3f3f3f3f;
     9 int ans[maxn][maxn];    //第i堆数的值
    10 int iter[maxn];         //现在第i堆数中要拿的数是第iter[i]个,即这一堆中还没有用过的数中的最小值是第iter[i]个
    11 int fa[maxn];           //并查集
    12 int init[maxn];         //存放初始序列的值
    13 int num[maxn];          //第i个位置属于第num[i]堆
    14 int print[maxn];        //存放最后的序列,方便输出
    15 int len[maxn];          //第i堆数有len[i]个
    16 char str[maxn];         //方便输入数据
    17 
    18 int find_fa(int x)
    19 {
    20     if(fa[x]==x)
    21         return x;
    22     else
    23         return fa[x]=find_fa(fa[x]);
    24 }
    25 
    26 int main()
    27 {
    28     int n;
    29     scanf("%d",&n);
    30     for(int i=1;i<=n;i++){
    31         for(int j=1;j<=n;j++)
    32             ans[i][j]=inf;
    33     }
    34 
    35     for(int i=1;i<=n;i++)
    36         scanf("%d",&init[i]);
    37     for(int i=1;i<=n;i++)
    38         fa[i]=i;
    39     for(int i=1;i<=n;i++){
    40         scanf("%s",str);
    41         for(int j=1;j<=n;j++){
    42             int u=str[j-1]-'0';
    43             if(u>0){
    44                 int fai=find_fa(i);
    45                 int faj=find_fa(j);
    46                 if(fai!=faj)
    47                     fa[faj]=fai;
    48             }
    49         }
    50     }
    51     //printf("eee
    ");
    52     for(int i=1;i<=n;i++){
    53         len[i]=1;
    54         num[i]=-1;
    55     }
    56     int tot=1;
    57     for(int i=1;i<=n;i++){
    58         int cnt=find_fa(i);
    59         if(num[cnt]>0){
    60             num[i]=num[cnt];
    61             ans[num[i]][len[num[i]]++]=init[i];
    62         }
    63         else{
    64             num[cnt]=tot;
    65             num[i]=tot;
    66             ans[tot][len[tot]++]=init[i];
    67             tot++;
    68         }
    69     }
    70     for(int i=1;i<tot;i++){
    71         sort(ans[i]+1,ans[i]+len[i]);
    72     }
    73     for(int i=1;i<tot;i++)
    74         iter[i]=1;
    75     for(int i=1;i<=n;i++){
    76         print[i]=ans[num[i]][iter[num[i]]++];
    77     }
    78     for(int i=1;i<n;i++)
    79         printf("%d ",print[i]);
    80     printf("%d
    ",print[n]);
    81 
    82     return 0;
    83 }
    View Code
  • 相关阅读:
    创建型设计模式之-单例
    设计模式(1、创造型2、结构型、3行为型)
    手写IOC容器和两种注入(构造方法注入和属性注入)
    从依赖倒置原则到IOC控制反转
    自定义HttpHandler可以做什么
    一个用户在浏览器上输入网址怎么走到我们写的.net程序中的,请求到管道处理
    代理Nginx
    .Net Expression表达式目录树(自己动态创建表达式目录树)
    canvas绘制圆环进度条
    城市二级联动
  • 原文地址:https://www.cnblogs.com/-maybe/p/4802189.html
Copyright © 2011-2022 走看看