您的位置:首页 > 博客中心 > 数据库 >

1592 - Database

时间:2022-03-14 02:38

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.

gxlsystem.com,布布扣gxlsystem.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

 

热门排行

今日推荐

热门手游