"输入2019年的一个时间段,开始时间代表出发,结束时间代表在那一天返回,判断在该时间段内,如果旅行有多少个子时间段可以在周六晚上休息"
* 周六晚上休息,即子时间段必须包含周六,且唯一一个周六不能是最后一天
* 例如6月14~6月15,6月15虽然是星期六,但是返回时间是周六,则不能在周六休息,返回0
* 6月15~6月16,6月15是星期六,所以只有一个时间段包含周六,返回1
* 6月16~6月22,不包含任何一个周六,返回0
* 1月1日~1月7日,1月5日是周六,所以时间段可以是:
* 1月1~1月7日,1月1~1月6日,1月2~1月7日,1月2~1月6日,1月3~1月7日,1月3~1月6日,1月4~1月7日,1月4~1月6日,1月5~1月7日,1月5~1月6日
* 返回10

如果感觉题目还是有点不清楚,可以看末尾的原题目(很详细)

解题核心是:

在包含一个周六晚上的情况下,固定开始时间,逐渐减小结束时间,直到不包含周六晚上;

然后增大固定时间,再逐渐减小结束时间,直到不包含周六晚上;

如1月1~1月31,1月1是周二,固定开始1月1,减小结束时间1月31,有1月1~1月31, 1月1~1月30, 1月1~1月29 ...... 1月1~1月6(周日)

接着1月2~1月31,1月2是周三,固定开始1月2,减小结束时间1月31,有1月2~1月31, 1月2~1月30, 1月2~1月29 ...... 1月2~1月6(周日)

可以把上面总结为如下代码循环中的sum次数累加的方式

......

记录日期段次数。

/**
* @author: rhyme
* @date: 2019-09-27 17:22
* @topic: "笔试题"
* @description: "输入2019年的一个时间段,开始时间代表出发,结束时间代表在那一天返回,判断在该时间段内,如果旅行有多少个子时间段可以在周六晚上休息"
* 周六晚上休息,即子时间段必须包含周六,且唯一一个周六不能是最后一天
* 例如6月14~6月15,6月15虽然是星期六,但是返回时间是周六,则不能在周六休息,返回0
* 6月15~6月16,6月15是星期六,所以只有一个时间段包含周六,返回1
* 6月16~6月22,不包含任何一个周六,返回0
* 1月1日~1月7日,1月5日是周六,所以时间段可以是:
* 1月1~1月7日,1月1~1月6日,1月2~1月7日,1月2~1月6日,1月3~1月7日,1月3~1月6日,1月4~1月7日,1月4~1月6日,1月5~1月7日,1月5~1月6日
* 返回10
*/
public class SaturdayNightStay { public int countOptions(int firstDay, int firstMonth, int lastDay, int lastMonth) {
final int YEAR = 2019;
// 使用Java8 LocalDate
LocalDate startLocalDate = LocalDate.of(YEAR, firstMonth, firstDay);
long start = startLocalDate.toEpochDay(); LocalDate endLocalDate = LocalDate.of(YEAR, lastMonth, lastDay);
long end = endLocalDate.toEpochDay(); // 参数不合法
if (start >= end) {
return 0;
} int startDayOfWeek = startLocalDate.getDayOfWeek().getValue();
final int SATURDAY = 6; // 第一天与第一个周六相差多少
int durningDay;
if (startDayOfWeek <= SATURDAY){
durningDay = SATURDAY - startDayOfWeek;
}else {
durningDay = 6;
} long firstSaturday = start + durningDay;
long tempSaturday = firstSaturday; long sum = 0;
while (tempSaturday < end) {
if (tempSaturday == firstSaturday) {
// 第一个周六
sum += (firstSaturday - start + 1) * (end - firstSaturday);
} else {
sum += 7 * (end - tempSaturday);
} // 获得下一个周六
tempSaturday += 7;
} return Long.valueOf(sum).intValue();
} @Test
public void test() {
//
System.out.println(countOptions(15, 6, 16, 6));
//
System.out.println(countOptions(16, 6, 22, 6));
//
System.out.println(countOptions(1, 1, 31, 1));
//
System.out.println(countOptions(7, 8, 19, 10));
//
System.out.println(countOptions(1, 1, 7, 1));
//
System.out.println(countOptions(14, 6, 15, 6));
}
}

原题目

(85%) SaturdayNightStay 

Problem Statement

Basha promised her friend Mel that she will come for a visit somewhere between the firstDay of the firstMonth and the lastDay of the lastMonth in 2019. Basha and Mel live in countries separated by the sea, so Basha has to buy plane tickets.

Airlines are using many tricks when pricing their tickets. One of the important ones is the "Saturday night stay" concept: if your stay at the destination includes the night from a Saturday to a Sunday, you are unlikely to be a business traveler and thus they will give you a lower price for your tickets. Basha would like to have cheap plane tickets (who wouldn't), so she wants to plan her trip in such a way that it will include at least one Saturday night.

To summarize:

Basha's day of arrival must be on the firstDay of the firstMonth 2019 or later.

Basha's day of departure must be on the lastDay of the lastMonth 2019 or earlier.

Basha must stay at Mel's place for at least one Saturday night.

Two trip schedules are considered different if Basha arrives and/or departs on a different day. Count all possible trip schedules, and return the answer.

Definition

Class: SaturdayNightStay

Method: countOptions

Parameters: int, int, int, int

Returns: int

Method signature: int countOptions(int firstDay, int firstMonth, int lastDay, int lastMonth)

(be sure your method is public)

Notes

- The year 2019 is not a leap year. The number of days in the individual months of 2019 is 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, and 31.

- The 1st of January 2019 was a Tuesday.

- As explained in the statement, "Saturday night" is short for "the night that starts on a Saturday and ends on a Sunday".

Constraints

- firstMonth and lastMonth will each be between 1 and 12, inclusive.

- firstDay will be between 1 and the number of days in firstMonth, inclusive.

- lastDay will be between 1 and the number of days in lastMonth, inclusive.

- The firstDay of the firstMonth will not be later in 2019 than the lastDay of the lastMonth.

Unit Tests (Must be written in JUnit)

0)

15

6

16

6

Returns: 1

The earliest day on which Basha can arrive is today: the 15th of June. This is a Saturday.

The latest day on which she can leave is the 16th of June: the Sunday tomorrow.

In order to spend the Saturday night in her destination, Basha must arrive on the 15th and depart on the 16th.

1)

16

6

22

6

Returns: 0

Regardless of when she arrives and departs, her trip will not include any Saturday nights.

Note that the trip which arrives on the 16th and departs on the 22nd includes both a Saturday (the 22nd) and a Sunday (the 16th) but that is not enough: the trip does not contain any Saturday night.

2)

1

1

31

1

Returns: 382

There are many viable options in January 2019, including the longest one: arriving on the 1st and departing on the 31st of January. (This trip contains four different Saturday nights. Additional Saturday nights do not matter, the only requirement is that there has to be at least one of them.)

3)

7

8

19

10

Returns: 2485

编程题:SaturdayNightStay的更多相关文章

  1. 算法是什么我记不住,But i do it my way. 解一道滴滴出行秋招编程题。

    只因在今日头条刷到一篇文章,我就这样伤害我自己,手贱. 刷头条看到一篇文章写的滴滴出行2017秋招编程题,后来发现原文在这里http://www.cnblogs.com/SHERO-Vae/p/588 ...

  2. C算法编程题系列

    我的编程开始(C) C算法编程题(一)扑克牌发牌 C算法编程题(二)正螺旋 C算法编程题(三)画表格 C算法编程题(四)上三角 C算法编程题(五)“E”的变换 C算法编程题(六)串的处理 C算法编程题 ...

  3. C算法编程题(七)购物

    前言 上一篇<C算法编程题(六)串的处理> 有些朋友看过我写的这个算法编程题系列,都说你写的不是什么算法,也不是什么C++,大家也给我提出用一些C++特性去实现问题更方便些,在这里谢谢大家 ...

  4. C算法编程题(六)串的处理

    前言 上一篇<C算法编程题(五)“E”的变换> 连续写了几篇有关图形输出的编程题,今天说下有关字符串的处理. 程序描述 在实际的开发工作中,对字符串的处理是最常见的编程任务.本题目即是要求 ...

  5. C算法编程题(五)“E”的变换

    前言 上一篇<C算法编程题(四)上三角> 插几句话,说说最近自己的状态,人家都说程序员经常失眠什么的,但是这几个月来,我从没有失眠过,当然是过了分手那段时期.每天的工作很忙,一个任务接一个 ...

  6. C算法编程题(四)上三角

    前言 上一篇<C算法编程题(三)画表格> 上几篇说的都是根据要求输出一些字符.图案等,今天就再说一个“上三角”,有点类似于第二篇说的正螺旋,输出的字符少了,但是逻辑稍微复杂了点. 程序描述 ...

  7. C算法编程题(三)画表格

    前言 上一篇<C算法编程题(二)正螺旋> 写东西前还是喜欢吐槽点东西,要不然写的真还没意思,一直的想法是在博客园把自己上学和工作时候整理的东西写出来和大家分享,就像前面写的<T-Sq ...

  8. C算法编程题(二)正螺旋

    前言 上一篇<C算法编程题(一)扑克牌发牌> 写东西前总是喜欢吐槽一些东西,还是多啰嗦几句吧,早上看了一篇博文<谈谈外企涨工资那些事>,里面楼主讲到外企公司包含的五类人,其实不 ...

  9. C算法编程题(一)扑克牌发牌

    前言 上周写<我的编程开始(C)>这篇文章的时候,说过有时间的话会写些算法编程的题目,可能是这两天周末过的太舒适了,忘记写了.下班了,还没回去,闲来无事就写下吧. 因为写C++的编程题和其 ...

  10. C语言程序设计进阶 第1周编程题

    第1周编程题 查看帮助 返回 依照学术诚信条款,我保证此作业是本人独立完成的. 温馨提示: 1.本次作业属于Online Judge题目,提交后由系统即时判分. 2.学生可以在作业截止时间之前不限次数 ...

随机推荐

  1. [原创]Android Monkey 在线日志分析工具开发

    [原创]Android Monkey 在线日志分析工具开发 在移动App测试过程中,Monkey测试是我们发现潜在问题的一种非常有效手段,但是Android原生的Monkey有其天然的不足,数据不能有 ...

  2. 【Gamma】“北航社团帮”展示博客

    目录 团队介绍 项目愿景 整个项目的预期典型用户 功能展示 原预期用户数量 项目使用情况数据分析 用户量变化 学生认证人数 社长认证人数 入社申请数 活动发布 新闻发布 网页端使用情况 小程序打开次数 ...

  3. JS面向对象的类 实例化与继承

    JS中 类的声明有两种形式: // 类的声明 function Animal() { this.name = 'name' } // ES6中的class声明 class Animal2 { cons ...

  4. Maven设置MAVEN_OPTS环境变量

    原文地址:https://blog.csdn.net/porsche_gt3rs/article/details/78787491 一 原因: 运行mvn命令实际是执行java命令,既然是运行java ...

  5. 【bat】判断字符串是否包含某字符串

    @echo off set a=55544333 set c=6666dfsfds set b=44 echo %a%| findstr %b% >nul && ( echo % ...

  6. HTML5微信jssdk录音播放语音的方法

    HTML5微信jssdk录音播放语音的方法需要注意的2个问题1 就是一定要判断1秒内 录音都不算 ps:太短不能录音 2 录音超过1分钟 会发现正在录音突然消失 所以要写wx.onVoiceRecor ...

  7. python 基础 ---- 面向对象

    ------   面向对象的思想 三个基本特征: 封装(封装属性方法可以减少耦合)继承(可以抬高开发效率) 多态 主要包括 : 类 : 描述具有相同的属性和方法的对象的集合  变量:   类变量/ 成 ...

  8. 66 网络编程(五)——TCP多线程实现多人聊天室

    思路 客户端读写各一个类,可以使内部类,实现Runnable.读写类都与服务器端建立连接,一个收,一个发. 客户端实现接收和转发.多线程实现每个客户端的连接(使与各客户端的连接独立). 服务器端中创建 ...

  9. json loggin 的使用,小案例

    import json import os Base_path = os.path.join(os.path.abspath(".."),"龙茂天日志.log" ...

  10. python之路——阅读目录

    阅读目录 希望大家多多交流,有错误的地方请随时指正,笔记记得可能有点杂 一.python入门 计算机基础 编程语言发展史和python安装  二.数据类型.字符编码.文件处理 python基础数据类型 ...