博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3618
阅读量:6125 次
发布时间:2019-06-21

本文共 631 字,大约阅读时间需要 2 分钟。

简单题

View Code
#include 
#include
#include
#include
#include
#include
using namespace std;#define maxn 50005int t, n;int f[maxn];bool cmp(const int &a, const int &b){ return abs(a) < abs(b);}void input(){ scanf("%d%d", &t, &n); for (int i = 0; i < n; i++) scanf("%d", &f[i]);}int work(){ int ret = 0; int temp = 0; int left = t; while (abs(temp - f[ret]) < left) { left -= abs(temp - f[ret]); temp = f[ret]; ret++; } return ret;}int main(){ //freopen("t.txt", "r", stdin); input(); sort(f, f + n, cmp); printf("%d\n", work()); return 0;}

转载地址:http://eefua.baihongyu.com/

你可能感兴趣的文章
vue实现点击展开,点击收起
查看>>
如何使frame能居中显示
查看>>
第k小数
查看>>
构建之法阅读笔记三
查看>>
写给对前途迷茫的朋友:五句话定会改变你的人生
查看>>
并行程序设计学习心得1——并行计算机存储
查看>>
JAVA入门到精通-第86讲-半双工/全双工
查看>>
bulk
查看>>
js document.activeElement 获得焦点的元素
查看>>
C++ 迭代器运算
查看>>
【支持iOS11】UITableView左滑删除自定义 - 实现多选项并使用自定义图片
查看>>
day6-if,while,for的快速掌握
查看>>
JavaWeb学习笔记(十四)--JSP语法
查看>>
【算法笔记】多线程斐波那契数列
查看>>
java8函数式编程实例
查看>>
jqgrid滚动条宽度/列显示不全问题
查看>>
在mac OS10.10下安装 cocoapods遇到的一些问题
查看>>
angularjs表达式中的HTML内容,如何不转义,直接表现为html元素
查看>>
css技巧
查看>>
Tyvj 1728 普通平衡树
查看>>