| |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
-> 数据结构与算法 -> A. Find The Array -> 正文阅读 |
|
[数据结构与算法]A. Find The Array |
time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Let's call an array?aa?consisting of?nn?positive (greater than?00) integers?beautiful?if the following condition is held for every?ii?from?11?to?nn: either?ai=1ai=1, or at least one of the numbers?ai?1ai?1?and?ai?2ai?2?exists in the array as well. For example:
You are given a positive integer?ss. Find the minimum possible size of a beautiful array with the sum of elements equal to?ss. Input The first line contains one integer?tt?(1≤t≤50001≤t≤5000) — the number of test cases. Then?tt?lines follow, the?ii-th line contains one integer?ss?(1≤s≤50001≤s≤5000) for the?ii-th test case. Output Print?tt?integers, the?ii-th integer should be the answer for the?ii-th testcase: the minimum possible size of a beautiful array with the sum of elements equal to?ss. Example input Copy 4 1 8 7 42 output Copy 1 3 3 7 Note Consider the example test:
解题说明:此题采用贪心算法,每个数组必定有1,在确保最少数量时需要塞入一些大数,所以一开始从1不断塞入 += 2 的数,同时每塞入一个数就减小目标 n 的值,直到小于0。
|
|
|
上一篇文章 下一篇文章 查看所有文章 |
|
开发:
C++知识库
Java知识库
JavaScript
Python
PHP知识库
人工智能
区块链
大数据
移动开发
嵌入式
开发工具
数据结构与算法
开发测试
游戏开发
网络协议
系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程 数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁 |
360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 | -2024/11/25 17:46:03- |
|
网站联系: qq:121756557 email:121756557@qq.com IT数码 |