• UVa 1592 Database(巧用map)


    Peter studies the theory of relational databases. Table in the relational database consists of values that are arranged in rows and columns.

    There are different normal forms that database may adhere to. Normal forms are designed to minimize the redundancy of data in the database. For example, a database table for a library might have a row for each book and columns for book name, book author, and author's email.

    If the same author wrote several books, then this representation is clearly redundant. To formally define this kind of redundancy Peter has introduced his own normal form. A table is in Peter's Normal Form (PNF) if and only if there is no pair of rows and a pair of columns such that the values in the corresponding columns are the same for both rows.


    The above table is clearly not in PNF, since values for 2rd and 3rd columns repeat in 2nd and 3rd rows. However, if we introduce unique author identifier and split this table into two tables -- one containing book name and author id, and the other containing book id, author name, and author email, then both resulting tables will be in PNF.


    Given a table your task is to figure out whether it is in PNF or not.

    Input
    Input contains several datasets. The first line of each dataset contains two integer numbers n and m ( 1≤n≤10000, 1≤m≤10), the number of rows and columns in the table. The following n lines contain table rows. Each row has m column values separated by commas. Column values consist of ASCII characters from space (ASCII code 32) to tilde (ASCII code 126) with the exception of comma (ASCII code 44). Values are not empty and have no leading and trailing spaces. Each row has at most 80 characters (including separating commas).

    Output
    For each dataset, if the table is in PNF write to the output file a single word `` YES" (without quotes). If the table is not in PNF, then write three lines. On the first line write a single word `` NO" (without quotes). On the second line write two integer row numbers r1 and r2 ( 1≤r1,r2≤n, r1≠r2), on the third line write two integer column numbers c1 and c2 ( 1≤c1, c2≤m, c1≠c2), so that values in columns c1 and c2 are the same in rows r1 and r2.

    Sample Input
    3 3
    How to compete in ACM ICPC,Peter,peter@neerc.ifmo.ru
    How to win ACM ICPC,Michael,michael@neerc.ifmo.ru
    Notes from ACM ICPC champion,Michael,michael@neerc.ifmo.ru
    2 3
    1,Peter,peter@neerc.ifmo.ru
    2,Michael,michael@neerc.ifmo.ru

    Sample Output
    NO
    2 3
    2 3
    YES

    题意

    给一个数据库,查找是否存在一组(r1行,c1列)=(r2行,c1列) && (r1行,c2列)=(r2行,c2列),即:不同的二行,对应二列字符串相同

    题解

    这里先用map<string,int>把字符串映射成一个值方便后面查找是否相同(如果找字符串,不断比较,TLE预定)

    然后可以map<pair<int,int>,int>把r1行的两个点的值映射成r1,这样再往下循环的时候,如果r2的两个点的值在map里出现过,就OK了(用O(n)避免暴力循环O(n^2))

    代码

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 int Map[10005][15];
     5 int main()
     6 {
     7     int n,m;
     8     while(cin>>n>>m)
     9     {
    10         getchar();
    11         map<string,int> ma;
    12         int cnt=1;
    13         for(int i=1;i<=n;i++)
    14         {
    15             string s,ss;
    16             getline(cin,ss);
    17             int k=1,Len=ss.size();
    18             for(int j=0;j<=Len;j++)
    19             {
    20                 if(j==Len||ss[j]==',')
    21                 {
    22                     if(ma[s]==0)
    23                         ma[s]=cnt++;
    24                     Map[i][k++]=ma[s];
    25                     s.clear();
    26                 }
    27                 else
    28                     s+=ss[j];
    29             }
    30         }
    31         int F=0;
    32         for(int j=1;j<=m;j++)//c1
    33         {
    34             for(int jj=j+1;jj<=m;jj++)//c2
    35             {
    36                 map<pair<int,int>,int> Ma;//把r1的两个点映射成r1
    37                 for(int i=1;i<=n;i++)//r2
    38                 {
    39                     if(Ma[make_pair(Map[i][j],Map[i][jj])]==0)//r1
    40                         Ma[make_pair(Map[i][j],Map[i][jj])]=i;
    41                     else
    42                     {
    43                         F=1;
    44                         printf("NO
    %d %d
    %d %d
    ",Ma[make_pair(Map[i][j],Map[i][jj])],i,j,jj);
    45                         break;
    46                     }
    47                 }
    48                 if(F)break;
    49             }
    50             if(F)break;
    51         }
    52         if(F==0)
    53             cout<<"YES"<<endl;
    54     }
    55     return 0;
    56 }
  • 相关阅读:
    第五周作业_2013551605
    第四周作业_2013551605
    第三周作业
    第二周作业-2013551605-黎娜
    软件项目与过程管理第八周作业
    软件项目与过程管理第七周作业
    软件项目与过程管理第六周作业
    软件项目与过程管理第五周作业
    软件项目与过程管理第四周作业
    软件项目与过程管理第三周作业
  • 原文地址:https://www.cnblogs.com/taozi1115402474/p/8451349.html
Copyright © 2020-2023  润新知