
CodeForce -1355 Game With Array 【 思维 + 构造 】题解
发布日期:2021-05-07 08:50:08
浏览次数:24
分类:精选文章
本文共 1870 字,大约阅读时间需要 6 分钟。
目录
1.题目
Petya and Vasya are competing with each other in a new interesting game as they always do.
At the beginning of the game Petya has to come up with an array of N positive integers. Sum of all elements in his array should be equal to S. Then Petya has to select an integer K such that 0≤K≤S. In order to win, Vasya has to find a non-empty subarray in Petya’s array such that the sum of all selected elements equals to either K or S−K. Otherwise Vasya loses. You are given integers N and S. You should determine if Petya can win, considering Vasya plays optimally. If Petya can win, help him to do that. Input The first line contains two integers N and S (1≤N≤S≤106) — the required length of the array and the required sum of its elements. Output If Petya can win, print “YES” (without quotes) in the first line. Then print Petya’s array in the second line. The array should contain N positive integers with sum equal to S. In the third line print K. If there are many correct answers, you can print any of them. If Petya can’t win, print “NO” (without quotes). You can print each letter in any register (lowercase or uppercase). Examples Input 1 4 Output YES 4 2 Input 3 4 Output NO Input 3 8 Output YES 2 1 5 42.思路
题意:
给出你数组长度n和数组的所有元素和s,让你构造出一个数组,使得该数组的任意子序列和都不为k或s-k。 思路: 题目的关键之处在于该数组的任意子序列和都不为k或s-k。k的取值范围为1<=k<=s。 如果我们构造这样一个数组 a[1]=1,a[2]=1,a[3]=1…直到a[k-1]=1. 也就是说该数组的前k-1项都是1,那么前k-1项的任意子序列和都 小于k,同样如果我们可以使得该数组的后n-(k-1)项的最小值为k+1,那么该数组无论怎样取子序列,其子序列和要么比k小,要么比k大,反正不会等于k或s-k。问题来了,k取多少合适呢?k取n最合适,k取n时,1有n-1项,比k大的只有一项,其值为s-(n-1),最为简单。 构造的数组如下: a[1]=1,a[2]=1,a[3]=1…a[n-1]=1,a[n]=s-(n-1) 如果s-(n-1)<=k(最后一项的值小于等于k),构造失败。3.代码
#include#include #include using namespace std;int main(){ int n,s,k; cin>>n>>s; k=n; if(s-n+1<=k) puts("NO"); else { puts("YES"); for(int i=1;i<=n-1;i++) { cout<<'1'<<' '; } cout< <
发表评论
最新留言
逛到本站,mark一下
[***.202.152.39]2025年05月10日 11时37分09秒
关于作者

喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
kubernetes1.5.2--部署node-problem-detector服务
2023-01-29
kubernetes1.5.2--部署监控服务
2023-01-29
kubernetes1.5.2集群部署过程--安全模式
2023-01-29
kubernetes1.5.2集群部署过程--非安全模式
2023-01-29
Kubernetes下容器化应用部署实战
2023-01-29
Kubernetes中间件容器化工具Operator详解
2023-01-29
Kubernetes健康检查与探测机制详解
2023-01-29
Kubernetes入门实验:namespace
2023-01-29
Kubernetes入门:构建和管理容器化应用的强大工具
2023-01-29
Kubernetes包管理工具Helm详解
2023-01-29
Kubernetes单master节点高可用集群安装
2023-01-29
Kubernetes原理详解
2023-01-29
Kubernetes原生的CICD工具Tekton详解
2023-01-29
Kubernetes多master节点高可用集群安装
2023-01-29
Kubernetes存储之Persistent Volumes简介
2023-01-29
Kubernetes学习总结(11)—— Kubernetes Pod 到底是什么?
2023-01-29
Kubernetes学习总结(12)—— 学习 kubernetes 的10个技巧或建议
2023-01-29
Kubernetes学习总结(13)—— Kubernetes 各个组件的概念
2023-01-29
Kubernetes学习总结(14)—— Kubernetes 实用命令总结
2023-01-29