UVA - 1592 Database(枚举+map)

35 篇文章 0 订阅
6 篇文章 0 订阅

点击打开题目链接

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 ha

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.

Simple 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

Simple Output
NO
2 3
2 3
YES

submit

题目大意:输入一个n行m列的数据库,寻找两个不同行和两个不同列 (即(r1,c1)和(r2,c1)相同,(r1,c2)和(r2,c2)相同.
思路:首先给字符串一个编号(map)便于字符串比较。如果四重循环枚举肯定超时,所以可以只枚举c1,c2,然后k从上到下扫描,用一个二元组map存两列的内容,如果map键值已经存在在这个二元组,映射到的就是r1,当前行即r2.
WA了n次,还有UVA不可以用取消同步。

附上AC代码:

#include<iostream>
#include<map>
#include<string>
#include<cstdio>

using namespace std;
const int maxn=10000+5;
string s[maxn][15];//存字符串
map<string ,int>str_id;//将字符串转为id
typedef pair<int,int>p;
int n,m;

int main()
{
//    ios::sync_with_stdio(false);

    while(cin>>n>>m)
    {
       str_id.clear();
        getchar();
        //read
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=m;j++)
            {
                s[i][j]="";
                while(1)
                {
                    char c=getchar();
                    if(c==','||c=='\n')break;
                     s[i][j]+=c;
                }
                str_id[s[i][j]]=j*100000+i;//id
            }
        }
        //solve
        int flag=1;
        for(int i=1;i<m;i++)
        {
            for(int j=i+1;j<=m;j++)
            {
                map<p,int>dx;
                for(int k=1;k<=n;k++)
                {
                    int x1=str_id[s[k][i]],x2=str_id[s[k][j]];
                    p cnt=make_pair(x1,x2);
                    if(dx.count(cnt))
                    {
                        cout<<"NO"<<endl;
                        cout<<dx[cnt]<<" "<<k<<endl;
                        cout<<i<<" "<<j<<endl;
                        flag=0;
                        goto END;
                    }
                    dx[cnt]=k;
                }
            }
        }
        END:
            if(flag)cout<<"YES"<<endl;
    }
    return 0;
}

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Chook_lxk

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值