UVa1592 (字符串+STL容器)

题目链接

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.

How to compete in ACM ICPC 1
How to win ACM ICPC 2
Notes from ACM ICPC champion 2

1 Peter peter@neerc.ifmo.ru
2 Michael michael@neerc.ifmo.ru

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.

1.好烦啊蒟蒻一直WA

2.熟悉了前面ID化字符串的方法后这道题按刘汝佳老师思路来是没问题的就是莫名其妙一直WA,在其他博客上看到和自己思路一模一样的,也没找出来毛病,算了先这样挂着吧以后再看

别人AC:

#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>
#include<stdlib.h>
#include<map>
using namespace std;
typedef pair<int,int> tc;
int table[10010][15];
int num;
map<string,int> id;
map<tc,int> row;
string value;
char ch;

int main()
{
    int n,m;
    while(cin>>n>>m)
    {
        num=0;
        id.clear();
        getchar();
        for(int i=1;i<=n;i++)
         for(int j=1;j<=m;j++)
        {
            value.clear();
            while((ch=getchar())&&ch!='\n'&&ch!=',')
            {
                value.push_back(ch);
            }
            if(id.count(value)) table[i][j]=id[value];
            else table[i][j]=id[value]=++num;
        }//输入

        bool flag=true;
        for(int j=1;j<=m&&flag;j++)
        {
            for(int k=j+1;k<=m&&flag;k++)
            {
                row.clear();
                for(int i=1;i<=n&&flag;i++)
                {
                    tc ntc;
                    ntc.first=table[i][j];
                    ntc.second=table[i][k];
                    if(!row.count(ntc))row[ntc]=i;
                    else
                    {
                        printf("NO\n%d %d\n%d %d\n",row[ntc],i,j,k);
                        flag=false;
                    }
                }
            }
        }
        if(flag)
            printf("YES\n");
    }
    return 0;
}

自己一直WA的代码:

#include <iostream>
#include <map>
#include <string>
#include <algorithm>
#include <cstring>
using namespace std;
int code=1000;
int table[10005][105];
typedef pair<int,int> Pr;
map<Pr,int> mp;
map<string,int> mmp;
string s[10005][105];
int main()
{
    int r,c;
    char c1;
    while(cin>>r>>c){
        getchar();
        memset(s,0,sizeof(s));
        memset(table,0,sizeof(table));
        mp.clear();
        mmp.clear();
        code=1000;
        for(int i=1;i<=r;i++){
            int j=1;
            while((c1=getchar())!='\n'){
                if(c1!=',')
                    s[i][j]+=c1;
                else{
                    if(!mmp[s[i][j]]){
                        mmp[s[i][j]]=code;
                        table[i][j]=code++;
                    }else table[i][j]=mmp[s[i][j]];
                    j++;
                }
            }
        }
        int flag=0,a1,a2,a3,a4;
        for(int i=1;i<=c;i++){
            if(flag) break;
            for(int j=i+1;j<=c;j++){
                if(flag) break;
                for(int k=1;k<=r;k++){
                    Pr p(table[k][i],table[k][j]);
                    if(!mp[p])
                        mp[p]=k;
                    else{
                        flag=1;
                        a1=mp[p];
                        a2=k;
                        a3=i;
                        a4=j;
                        break;
                    }
                }
            }
        }
        if(flag){
            cout<<"NO\n"<<a1<<" "<<a2<<endl<<a3<<" "<<a4<<endl;
        }else cout<<"YES\n";
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值