toj 3616 Add number (没想到啊~~)

Add number

时间限制(普通/Java):1000MS/3000MS 运行内存限制:65536KByte
总提交: 60 测试通过: 21

描述

 

Employees of Baidu like to play a game called Making Numbers. It goes like this: there are two players in the game, one is called little A, the other little B. There are some cards with a number on each one of them, little A chooses a number X from 1 to N randomly, while little B has to choose some cards, the sum of which equals X. Now there are already M cards with numbers, and K blank cards. At the beginning of the game, little B is allowed to write numbers on the blank cards. Now little B wants to know, if it is possible to write some numbers that will assure him of the victory, that is to say, if it is possible for him to make up any number from 1 to N with the cards.

 

输入

 

The input consists of several test cases. The first line is an integer T,

The first line of each case shows 3 numbers, N M K, the next line follows M numbers that are already written on M cards. 1<=N<=99999999,0<=M<=19,1<=K<=19 and the numbers on M cards are above 0, smaller than or equals N, in non-descending order.

 

输出

 

If little B can make it, output "YES", else output "NO".

 

样例输入

 

3
15 0 412 3 2
3 3 3
13 3 2
3 3 3

 

样例输出

 

YES
YES
NO

 

题目来源

第四届北京邮电大学程序设计竞赛 2010

 

 1 #include <stdio.h>
 2 int main()
 3 {
 4     int T;
 5     scanf("%d", &T);
 6     while(T--){
 7         int n, m, k;
 8         scanf("%d %d %d", &n, &m, &k);
 9         int a[100];
10         for(int i = 0; i < m; i++){
11             scanf("%d", a+i);
12         }
13         int sum = 0;
14         int tmp = 1;
15         while(sum < n && k >= 0){
16             bool flag = false;
17             for(int i = 0; i < m; i++){
18                 if(a[i] && a[i] <= tmp){
19                     sum += a[i];
20                     a[i] = 0;
21                     flag = true;
22                 }
23             }
24             if(!flag){
25                 sum += tmp;
26                 k--;
27             }
28             tmp = sum + 1;
29         }
30         if(k >= 0 && sum >= n){
31             puts("YES");
32         }
33         else{
34             puts("NO");
35         }
36     }
37     return 0;
38 }

 

转载于:https://www.cnblogs.com/luotinghao/p/3411224.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/421427.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

att汇编教程 linux,ATT 汇编语法

6 个段寄存器:%cs(code),%ds(data),%ss(stack), %es,%fs,%gs;3 个控制寄存器:%cr0,%cr2,%cr3;6 个 debug 寄存器:%db0,%db1,%db2,%db3,%db6,%db7;2 个测试寄存器:%tr6,%tr7;8 个浮点寄存器栈:%st(0),%st(1),%st(2),%st(3),%st(4),%st(5),%st(6),%st(7).4. 操作数顺序操作数排列…

无插件,无com组件,利用EXCEL、WORD模板做数据导出(一)

本次随笔主要讲述着工作中是如何解决数据导出的&#xff0c;对于数据导出到excel在日常工作中大家还是比较常用的&#xff0c;那导出到word呢&#xff0c;改如何处理呢&#xff0c;简单的页面导出问题应该不大&#xff0c;但是如果是标准的公文导出呢&#xff0c;要保证其基本格…

linux提示链接层次太多,嵌入式linuxmusic播放器

VLC music player流媒体客户端软件层次结构流媒体网络协议流视频协议是为了在客户端机和服务器之间进行通信而设计的标准化协议。根据它们的功能&#xff0c;网络上传输的流视频相关的协议分为三类。网络层协议&#xff1a;网络层协议提供了基本的网络服务支持。IP就是网络上流…

vc的UI编程PngTextButton控件的适用情况

控件继承自Cbutton。重写了其中的一些方法。适用ui类型&#xff1a;带图片和文字的类型的按钮&#xff0c;其中图片在前面&#xff0c;文字在后面。如下图 文件下载 转载于:https://www.cnblogs.com/songtzu/p/3415601.html

python在eclipse下中文乱码问题zz

首先要确保eclipse编辑器环境的编码为utf8&#xff0c;这个是大前提&#xff1b;其次如果py文件中含有中文字符的话&#xff0c;需要在py文件中对编码进行声明。1. 修改eclipse编辑器编码 a) window->preferences->general->editors->text editors->spelling-&g…

SecureCRT连接linux时主机名,secureCRT连接linux方法

jookfoon 于 2011-09-22 11:43:08发表:挺简单的zdq 于 2011-09-22 11:28:00发表:回复吧&#xff0c;又没钱下载了&#xff0c;怎么这样子咧sand302 于 2011-08-12 11:05:35发表:感谢分享&#xff0c;支持chongee 于 2011-08-12 10:55:11发表:收藏之前&#xff0c;先支持一下&am…

如何使用一个库中不存在的函数

Windows是一个不断发展的系统&#xff0c;很多新的 API 在操作系统更新时更新&#xff0c;而MASM32开发包一般在很长一段时间内都无法及时更新&#xff0c;如果需要在编程中使用新添加的API函数。就得自己动手来更手库文件&#xff0c;下面我就给大家介绍一下如何通过手动的方法…

linux使用root操作文件,以root用户登录Linux系统,当前目录是/root,要求完成如下操作和功...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼1、groupadd benetgrp2. useradd -g benetgrp benet3, mkdir -p /var/www/beneta, chown benet /var/www/benet ; chmod urwx /var/www/benetb, chown :benetgrp /var/www/benet或者chgrp benetgrp /var/www/benet; chmod grx /var…

清除浮动的7种方法

使用display&#xff1a;inline-block会出现的情况&#xff1a; 1.使块元素在一行显示 2.使内嵌支持宽高 3.换行被解析了 4.不设置的时候宽度由内容撑开 5.在IE6,7下步支持块标签 由于inline-block属性换行的时候被解析&#xff08;有间隙&#xff09;故解决方法使用浮动float:…

linux gst qt,【ARM-Linux开发】Gstreamer+QT+摄像头 编程总结

1,gstreamer开发手册&#xff0c;gstreamer官网(这些都不用说了吧)2&#xff0c;gst-launch的用法&#xff0c;这也不用说了吧。(白菜&#xff0c;鸡蛋&#xff0c;西红柿&#xff0c;砖头&#xff0c;鼠标……..)lqplayer--基于gstreamer和qt的Linux下的简单播放器。实现了基于…

背后的故事之 - 快乐的Lambda表达式(二)

快乐的Lambda表达式 上一篇 背后的故事之 - 快乐的Lambda表达式&#xff08;一&#xff09;我们由浅入深的分析了一下Lambda表达式。知道了它和委托以及普通方法的区别&#xff0c;并且通过测试对比他们之间的性能&#xff0c;然后我们通过IL代码深入了解了Lambda表达式&#x…

linux用vsc写c语言,vscode写c语言(windows)

用vscode学习c语言。记录vscode配置c语言编译环境。1.安装vscode(版本1.27)2.安装c/c扩展。配置环境变量&#xff0c;以WIN10为例 &#xff0c;此电脑-属性-高级系统设置-环境变量-系统变量-path-添加一条D:\Program Files\mingw-w64\i686-8.1.0-posix-dwarf-rt_v6-rev0\mingw3…

mouseevent tips

关于roll_over 和 mouse_over的区别&#xff0c;这篇文章说明的很清楚&#xff0c;http://zengrong.net/post/1105.htm 全文如下&#xff1a; 在MouseEvent中&#xff0c;ROLL_OVER和MOUSE_OVER、ROLL_OUT和MOUSE_OUT是两对比较相似的事件&#xff0c;它们有什么区别呢&#xf…

mt3 linux外网搭建,MT3 换皮梦幻 Linux端架设文字教程

1.安装宝塔yum install -y wget && wget -O install.shhttp://download.bt.cn/install/install.sh&& shinstall.sh获取宝塔地址 账号 密码开放端口10030 10011 10020 10003宝塔安装网站环境n1.14 mysql 5.6 php5.4关闭防火墙&#xff0c;我是7系统&…

一个有关数组的题

//在这里插入代码片import java.util.*; 1. (A rookie learning Java)写的一个有关数组的题 定义一个长度为10的整型数组&#xff0c; 循环输入10个整数然后判断这个数组中有几个偶数&#xff0c; 再定义一个正好能存放这几个偶数的数组&#xff0c; 将上一个数组中的所有偶数…

onCreateOptionsMenu

onCreateOptionsMenu----只在Activity创建时调用一次&#xff01;之后不会再被调用&#xff01;onPrepareOptionsMenu----每次display menu之前&#xff0c;都會调用该方法&#xff0c;  只要按一次menu按鍵&#xff0c;就會调用一次。  所以你會發現每次只要按一次menu按鍵…

linux识别UDF文件系统吗,Linux Kernel UDF文件系统本地缓冲区溢出漏洞

发布日期&#xff1a;2012-07-04更新日期&#xff1a;2012-07-05受影响系统&#xff1a;Linux kernel 3.3.x描述&#xff1a;--------------------------------------------------------------------------------BUGTRAQ ID: 54279Linux Kernel是Linux操作系统的内核。Linux K…

程序编译时书写Makefile注意事项一例

在进行程序编译时&#xff0c;可能需要指定一些库的库的路径、头文件的路径&#xff0c;分别使用的参数选项是-L和-I&#xff0c;需要注意的是&#xff1a;需要确保-L和-I后边的内容不为空&#xff0c;否则会出现意想不到的错误&#xff0c;而这种错误比较难以发现&#xff0c;…