码迷,mamicode.com
首页 > 数据库 > 详细

1592 - Database

时间:2014-11-17 22:32:57      阅读:360      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   io   color   ar   os   sp   

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.

 

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

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.

bubuko.com,布布扣bubuko.com,布布扣

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 ( 1bubuko.com,布布扣nbubuko.com,布布扣10000, 1bubuko.com,布布扣mbubuko.com,布布扣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 ( 1bubuko.com,布布扣r1r2bubuko.com,布布扣nr1bubuko.com,布布扣r2), on the third line write two integer column numbers c1 and c2 ( 1bubuko.com,布布扣c1c2bubuko.com,布布扣mc1bubuko.com,布布扣c2), so that values in columns c1and 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

学到了好多东西,虽然不是通过这个题学的,pair<size_t,size_t>,make_pair(),用map给集合编号
bubuko.com,布布扣
 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <map>
 5 #include <set>
 6 #include <vector>
 7 
 8 using namespace std;
 9 
10 map<string,int>ID;
11 map<pair<int,int>,int> IDrow;
12 
13 int a[10010][11];
14 int t;
15 
16 void Clear() {
17     ID.clear();
18     IDrow.clear();
19     t = 1;
20     memset(a,0,sizeof(a));
21 }
22 
23 int main () {
24     int n,m;
25     while (cin >> n >> m) {
26         getchar();
27         Clear();
28         string str;
29         int col = 0;
30         for (int i = 0;i < n;i++) {
31             getline(cin,str);
32             string x;
33             col = 0;
34             for (int j = 0,len = str.length();j < len;j++) {
35                 if (str[j] != ,) x += str[j];
36                 if (str[j] == , || j == len - 1) {
37                     if (ID.count(x) == 0) {
38                         ID[x] = t++;
39                     }
40                     a[i][col++] = ID[x];
41                     x.clear();
42                 }
43             }
44         }
45         for (int j = 0;j < col - 1;j++) {
46             for (int k = j + 1;k < col;k++) {
47                 for (int i = 0;i < n;i++) {
48                     int x = a[i][j],y = a[i][k];
49                     if (IDrow.count(make_pair(x,y))) {
50                         cout << "NO" << endl;
51                         cout << IDrow[make_pair(x,y)] <<" " << i + 1<< endl;
52                         cout << j + 1 << " " << k + 1 << endl;
53                         goto END;
54                     }
55                     else IDrow[make_pair(x,y)] = i + 1;
56                 }
57                 IDrow.clear();
58             }
59         }
60         cout << "YES" << endl;
61         END:{}
62     }
63 }
View Code

 

1592 - Database

标签:des   style   blog   http   io   color   ar   os   sp   

原文地址:http://www.cnblogs.com/xiaoshanshan/p/4104454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!