时间限制:1秒 空间限制:65536K 热度指数:412

算法知识视频讲解

题目描述

The "Gold Bar"bank received information from reliable sources that in their last group of N coins exactly one coin is false and differs in weight from other coins (while all other coins are equal in weight). After the economic crisis they have only a simple balance available (like one in the picture). Using this balance, one is able to determine if the weight of objects in the left pan is less than, greater than, or equal to the weight of objects in the right pan. In order to detect the false coin the bank employees numbered all coins by the integers from 1 to N, thus assigning each coin a unique integer identifier. After that they began to weight various groups of coins by placing equal numbers of coins in the left pan and in the right pan. The identifiers of coins and the results of the weightings were carefully recorded. You are to write a program that will help the bank employees to determine the identifier of the false coin using the results of these weightings.

输入描述:

The first line of the input file contains two integers N and K, separated by spaces, where N is the number of coins (2<=N<=1000 ) and K is the number of weightings fulfilled (1<=K<=100). The following 2K lines describe all weightings. Two consecutive lines describe each weighting. The first of them starts with a number Pi (1<=Pi<=N/2), representing the number of coins placed in the left and in the right pans, followed by Pi identifiers of coins placed in the left pan and Pi identifiers of coins placed in the right pan. All numbers are separated by spaces. The second line contains one of the following characters: '<', '>', or '='. It represents the result of the weighting:
'<' means that the weight of coins in the left pan is less than the weight of coins in the right pan,
'>' means that the weight of coins in the left pan is greater than the weight of coins in the right pan,
'=' means that the weight of coins in the left pan is equal to the weight of coins in the right pan.

输出描述:

Write to the output file the identifier of the false coin or 0, if it cannot be found by the results of the given weightings.
示例1

输入

5 3
2 1 2 3 4
<
1 1 4
=
1 2 5
=

输出

3

a[i]初始标记为2

a[i]为0表示普通硬币,当平衡或者既出现在重堆又出现在轻堆里

a[i]为1标记重的那些硬币

a[i]为-1标记轻的那些硬币

每次不平衡其实给出了特殊硬币的范围,取交集

// pat.cpp : 定义控制台应用程序的//#include "stdafx.h"
#include"stdio.h"
#include<iostream>
#include<cstring>using namespace std;
typedef long long ll;
const int maxn=1010;
int a[maxn];
int n,k,p;
char c;
vector<int>l,r;
int b;
int vis[maxn]={0};
int main(){//freopen("c://jin.txt","r",stdin);while(cin>>n>>k){fill(a,a+maxn,2);while(k--){l.clear();r.clear();cin>>p;for(int i=0;i<p;i++){cin>>b;vis[b]=1;l.push_back(b);}for(int i=0;i<p;i++){cin>>b;vis[b]=1;r.push_back(b);}cin>>c;if(c=='='){for(int i=0;i<l.size();i++)a[l[i]]=0;for(int i=0;i<r.size();i++)a[r[i]]=0;}else if(c=='>'){fill(vis,vis+maxn,0); //只有一个硬币的重量不一样,每次不平衡,特殊的那个硬币一定是在这两堆里面,开始把所有硬币标记为0,可能是特殊硬币的标记为1 for(int i=0;i<l.size();i++){ vis[l[i]]=1;if(a[l[i]]==2)a[l[i]]=1;else if(a[l[i]]==-1)a[l[i]]=0;//如果一个硬币既出现在小堆里又出现在大堆里,那一定是普通的硬币}for(int i=0;i<r.size();i++){ vis[r[i]]=1;if(a[r[i]]==2)a[r[i]]=-1;else if(a[r[i]]==1)a[r[i]]=0;}for(int i=1;i<=n;i++)if(vis[i]==0)a[i]=0;}else {    fill(vis,vis+maxn,0);  for(int i=0;i<l.size();i++){   vis[l[i]]=1;if(a[l[i]]==2)a[l[i]]=-1;else if(a[l[i]]==1)a[l[i]]=0;}for(int i=0;i<r.size();i++){vis[r[i]]=1;if(a[r[i]]==2)a[r[i]]=1;else if(a[r[i]]==-1)a[r[i]]=0;}for(int i=1;i<=n;i++)if(vis[i]==0)a[i]=0;}}int count=0,ans;for(int i=1;i<=n;i++){if(a[i]!=0)  {count++;ans=i;}}if(count==1)cout<<ans<<endl;else cout<<"0"<<endl;}//freopen("CON","r",stdin);//system("pause");return 0;
}

False Coin相关推荐

  1. UVA665 LA5658 False coin【暴力】

    The "Gold Bar" bank received information from reliable sources that in their last group of ...

  2. 【转】别人整理的DP大全

    为什么80%的码农都做不了架构师?>>>    动态规划 动态规划 容易: 1018 , 1050 , 1083 , 1088 , 1125 , 1143 , 1157 , 1163 ...

  3. 九度OJ1486 /POJ 1029/2012北京大学研究生复试上机

    wa到死!wa到死!这是一个看着简单,坑及其多的题! 坑一:POJ上是单组输入,九度上是多组输入,妈蛋要是研究生复试遇到这种大坑肯定死掉啊!而且对于codeforces比较习惯的 同学肯定会觉得巨坑无 ...

  4. Competitive Programming 3题解

    题目一览: Competitive Programming 3: The New Lower Bound of Programming Contests(1) Competitive Programm ...

  5. 杭电oj题目题型分类(转)

    1001 整数求和 水题 1002 C语言实验题--两个数比较 水题 1003 1.2.3.4.5... 简单题 1004 渊子赛马 排序+贪心的方法归并 1005 Hero In Maze 广度搜索 ...

  6. HDOJ题目分类大全

    版权声明:本文为博主原创文章,欢迎转载,转载请注明本文链接! https://blog.csdn.net/qq_38238041/article/details/78178043 杭电里面有很多题目, ...

  7. HDU题目分类大全【大集合】

    基础题: 1000.1001.1004.1005.1008.1012.1013.1014.1017.1019.1021.1028.1029.  1032.1037.1040.1048.1056.105 ...

  8. POJ前面的题目算法思路【转】

    1000 A+B Problem 送分题 49% 2005-5-7 1001 Exponentiation 高精度 85% 2005-5-7 1002 487-3279 n/a 90% 2005-5- ...

  9. 杭电OJ题目分类(转载)

    1001 整数求和 水题 1002 C语言实验题--两个数比较 水题 1003 1.2.3.4.5... 简单题 1004 渊子赛马 排序+贪心的方法归并 1005 Hero In Maze 广度搜索 ...

最新文章

  1. 百度AI实战营第二季:AI技术商业落地指南
  2. linux 环境下配置ftp服务器
  3. 精确覆盖DLX算法模板
  4. c语言拔河分组回溯算法,【阅读下面的文字,完成10—12题。文明的共相回溯我们历史演-查字典问答网...
  5. 基于springcloud一套可落地实施的安全认证框架整合
  6. 滴滴配合警方调证不超 10 分钟;苹果否认恶意芯片报道;贝索斯建火箭中心 | 极客头条...
  7. 7-3 服务器统一出错处理
  8. 怎么设计接口测试用例更好——百度大佬“教你写用例”
  9. Linux命令su、sudo、sudo su、sudo -i使用和区别
  10. AGC016E Poor Turkeys
  11. python蓝屏代码_死机、卡顿、蓝屏,Python部分的老江湖告诉我的一些超等反常代码...
  12. installshield 如何实现Oracle数据库脚本的执行功能
  13. QT中更改主窗体背景色和背景图片
  14. CSS border-image(边框图片)
  15. 37手游基于云平台的大数据建设实践
  16. python倒背如流_python基本操作(五)
  17. 【es】es界面化管理工具cerebro的安装和使用
  18. 让你自己制作的木马和病毒用360安全卫士杀不出。加壳,免杀,加花,捆绑,压缩。
  19. 机器学习训练过程中常见问题
  20. 刚刚开始学C语言的懵懂

热门文章

  1. Java核心技术卷一(百度云资源)
  2. android h5游戏图片不缓存,H5小游戏资源缓存方法与流程
  3. AndroidStudio开发的领养宠物app
  4. WEBGUI中上一页(PgUp/Page Up)和下一页(PgDn/Page Down)键不起效
  5. 搬砖:数据结构之链表基本操作总结
  6. 驱动程序开发:基于ICM20608六轴传感器 --- 使用Regmap API 的 SPI 读取数据 之 IIO驱动
  7. MSP430C语言编程技巧,如何提高MSP430 C语言编程效率
  8. html网页百度分享按钮安装,轻松几步自定义百度分享-打造个性化的百度分享按钮 | SDT技术网...
  9. error link1158 无法运行rc.exe
  10. 计算机基础知识(基础入门小白专属)七