IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> A - Bridge and Sheets -> 正文阅读

[数据结构与算法]A - Bridge and Sheets

Time Limit: 2 sec / Memory Limit : 1024 MB

Score : 300300 points

Contest URL : https://atcoder.jp/contests/arc134

Problem Statement

Snuke bought a bridge of length LL. He decided to cover this bridge with blue tarps of length W each.

Below, a position on the bridge is represented by the distance from the left end of the bridge. When a tarp is placed so that its left end is at the position x (0≤x≤L?W, xx is real), it covers the range [x, x+W]. (Note that both ends are included.)

He has already placed N tarps. The left end of the i-th tarp is at the position ai?.

At least how many more tarps are needed to cover the bridge entirely? Here, the bridge is said to be covered entirely when, for any real number x between 0 and L (inclusive), there is a tarp that covers the position x.

Constraints

  • All values in input are integers.
  • 1≤N≤10^5
  • 1≤W≤L≤10^18
  • 0≤a1?<a2?<?<aN?≤L?W

Input

Input is given from Standard Input in the following format:

N L W
a1? ? aN?

Output

Print the minimum number of tarps needed to cover the bridge entirely.

Sample Input 1?

2 10 3
3 5

Sample Output 1?

2
  • The bridge will be covered entirely by, for example, placing two tarps so that their left ends are at the positions?0?and?7.

Sample Input 2?

5 10 3
0 1 4 6 7

Sample Output 2

0

Sample Input 3

12 1000000000 5
18501490 45193578 51176297 126259763 132941437 180230259 401450156 585843095 614520250 622477699 657221699 896711402

Sample Output 3

199999992

本题不难,复杂度为O(n)

#include <stdio.h>
long long a[100005], n, l, w, ans;
int main()
{
	scanf("%lld %lld %lld", &n, &l, &w);
	for (int i = 0; i < n; i++)
	{
		scanf("%lld", &a[i]);
		if (i == 0)
		{
			if (a[i] > 0)
				if (a[i] < w)
					ans++;
				else
				{
					ans += a[i] / w;
					if (a[i] % w != 0)
						ans++;
				}
		}
		else
		{
			if (i == n - 1 && a[i] + w < l)
			{
				if (l - 2 * w < a[i])
					ans++;
				else
				{
					ans += (l - a[i] - w) / w;
					if ((l - a[i] - w) % w != 0)
						ans++;
				}
			}
			if (a[i] - a[i - 1] > w)
			{
				ans += (a[i] - a[i - 1] - w) / w;
				if ((a[i] - a[i - 1]) % w != 0)
					ans++;
			}
		}
	}
	printf("%lld", ans);
	return 0;
}

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-01-30 19:10:58  更:2022-01-30 19:12:09 
 
开发: 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/26 18:40:11-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码