算法学习--Day2
今天要多学一些内容了,昨天就写了一点sort和struct的用法,今天写了两道关于日期的题目,记录在这里。
题目描述
输入描述:
有多组数据,每组数据有两行,分别表示两个日期,形式为YYYYMMDD
输出描述:
每组数据输出一行,即日期差值
输入
20110412
20110422
输出
11
#include <iostream>
#include <stdio.h>
#define isyear(x) x%100!=0 && x%4==0 || x%400==0?1:0
using namespace std; int dayofMonth[][] = {
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,, }; struct E{
int day;
int month;
int year;
void nextday(){
day++;
if(day>dayofMonth[month][isyear(year)]){
day =;
month++;
if(month>){
month=;
year++;
}
}
}
}; int buf[][][];
int abs(int x){
return x<?-x:x;
}
int main(){
E tmp;
int cut = ;
tmp.year = ;
tmp.month = ;
tmp.day = ;
while (tmp.year!=){
buf[tmp.year][tmp.month][tmp.day] = cut;
tmp.nextday();
cut++;
}
int y1,m1,d1,y2,m2,d2;
while (scanf("%4d%2d%2d",&y1,&m1,&d1)!=EOF){
scanf("%4d%2d%2d",&y2,&m2,&d2);
printf("%d\n",abs(buf[y2][m2][d2]-buf[y1][m1][d1])+); } return ;
}
这里我也稍微解释下这个代码,日期的问题书里确实处理的比较到位。他先将0~5000年12月31日的所有数据预处理一下,之后就可以直接拿来用了,很方便。
这里那个三维数组一定要定义到外面,不然就gg了。
第二题:
题目描述
输入描述:
There is one single line contains the day number d, month name M and year number y(1000≤y≤3000). The month name is the corresponding English name starting from the capital letter.
输出描述:
Output a single line with the English name of the day of week corresponding to the date, starting from the capital letter. All other letters must be in lower case. Month and Week name in Input/Output:
January, February, March, April, May, June, July, August, September, October, November, December
Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday
输入
9 October 2001
14 October 2001
输出
Tuesday
Sunday
#include <iostream>
#include <stdio.h>
#include <string.h>
#define isyear(x) x%100!=0 && x%4==0 || x%400==0?1:0
using namespace std; int dayofMonth[][] = {
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,, };
char Months[][]={
"","January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"
};
char Weeks[][]={
"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"
}; struct E{
int day;
int month;
int year;
void nextday(){
day++;
if(day>dayofMonth[month][isyear(year)]){
day =;
month++;
if(month>){
month=;
year++;
}
}
}
};
int buf[][][];
int main(){
E tmp;
int cut = ;
tmp.year = ;
tmp.month = ;
tmp.day = ;
int days;
int y1=,m1=,d1=,y2,d2;
char S[];
while (tmp.year!=){
buf[tmp.year][tmp.month][tmp.day] = cut;
tmp.nextday();
cut++;
}
int i;
while (scanf("%d%s%d",&d2,S,&y2)!=EOF){
for( i=;i<=;i++){
if(strcmp(S,Months[i])==){
break;
}
}
days = buf[y2][i][d2] - buf[][][];
days+=;
cout<<Weeks[(days%+)%]<<endl; } return ; }
第三题
题目描述
输入描述:
包括三个整数年(1<=Y<=3000)、月(1<=M<=12)、日(1<=D<=31)。
输出描述:
输入可能有多组测试数据,对于每一组测试数据,
输出一个整数,代表Input中的年、月、日对应本年的第几天。
输入
1990 9 20
2000 5 1
输出
263
122
#include <iostream>
#include <stdio.h>
#include <string.h>
#define isyear(x) x%100!=0 && x%4==0 || x%400==0?1:0 using namespace std; int dayofMonth[][] = {
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,, };
struct E{
int year;
int month;
int day;
void nextDay(){
day++;
if(day>dayofMonth[month][isyear(year)]){
day=;
month+=;
if(month>){
month=;
year++;
}
}
}
};
int buf[][][];
int main(){
E tmp;
int cut=;
tmp.year=;
tmp.month=;
tmp.day=;
int y1,m1,d1,y2;
while(tmp.year!=){
buf[tmp.year][tmp.month][tmp.day] = cut;
tmp.nextDay();
cut++;
}
while (scanf("%d%d%d",&y1,&m1,&d1)!=EOF){
printf("%d\n",buf[y1][m1][d1]-buf[y1][][]+);
} return ;
}
第四题
题目描述
输入描述:
输入包括两个整数y(1<=y<=3000),n(1<=n<=366)。
输出描述:
可能有多组测试数据,对于每组数据,
按 yyyy-mm-dd的格式将输入中对应的日期打印出来。
输入
2000 3
2000 31
2000 40
2000 60
2000 61
2001 60
输出
2000-01-03
2000-01-31
2000-02-09
2000-02-29
2000-03-01
2001-03-01
#include <iostream>
#include <stdio.h>
#include <string.h>
#define isyear(x) x%100!=0 && x%4==0 || x%400==0?1:0 using namespace std; int dayofMonth[][] = {
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,,
,, }; int main(){
int y,data;
while (scanf("%d%d",&y,&data)!=EOF){
int current_y=data;
int month_flag = isyear(y);
int i=;
for( i=;i<=;i++){
if(current_y - dayofMonth[i][month_flag]<) break;
current_y -= dayofMonth[i][month_flag];
}
printf("%d-%02d-%02d\n",y,i,current_y);
} return ;
}
这里用到了下面的这个操作,输出整数用0占位,02代表用0占位两个数。
printf("%d-%02d-%02d\n",y,i,current_y);
算法学习--Day2的更多相关文章
- DSP算法学习-过采样技术
DSP算法学习-过采样技术 彭会锋 2015-04-27 23:23:47 参考论文: 1 http://wr.lib.tsinghua.edu.cn/sites/default/files/1207 ...
- 算法学习之C语言基础
算法学习,先熟悉一下C语言哈!!! #include <conio.h> #include<stdio.h> int main(){ printf(+); getch(); ; ...
- Python之路,Day21 - 常用算法学习
Python之路,Day21 - 常用算法学习 本节内容 算法定义 时间复杂度 空间复杂度 常用算法实例 1.算法定义 算法(Algorithm)是指解题方案的准确而完整的描述,是一系列解决问题的 ...
- C / C++算法学习笔记(8)-SHELL排序
原始地址:C / C++算法学习笔记(8)-SHELL排序 基本思想 先取一个小于n的整数d1作为第一个增量(gap),把文件的全部记录分成d1个组.所有距离为dl的倍数的记录放在同一个组中.先在各组 ...
- 算法学习之BFS、DFS入门
算法学习之BFS.DFS入门 0x1 问题描述 迷宫的最短路径 给定一个大小为N*M的迷宫.迷宫由通道和墙壁组成,每一步可以向相邻的上下左右四格的通道移动.请求出从起点到终点所需的最小步数.如果不能到 ...
- 二次剩余Cipolla算法学习笔记
对于同余式 \[x^2 \equiv n \pmod p\] 若对于给定的\(n, P\),存在\(x\)满足上面的式子,则乘\(n\)在模\(p\)意义下是二次剩余,否则为非二次剩余 我们需要计算的 ...
- Manacher算法学习笔记 | LeetCode#5
Manacher算法学习笔记 DECLARATION 引用来源:https://www.cnblogs.com/grandyang/p/4475985.html CONTENT 用途:寻找一个字符串的 ...
- 第四百一十五节,python常用排序算法学习
第四百一十五节,python常用排序算法学习 常用排序 名称 复杂度 说明 备注 冒泡排序Bubble Sort O(N*N) 将待排序的元素看作是竖着排列的“气泡”,较小的元素比较轻,从而要往上浮 ...
- PCA算法学习(Matlab实现)
PCA(主成分分析)算法,主要用于数据降维,保留了数据集中对方差贡献最大的若干个特征来达到简化数据集的目的. 实现数据降维的步骤: 1.将原始数据中的每一个样本用向量表示,把所有样本组合起来构成一个矩 ...
随机推荐
- CentOS下常用的 19 条命令
玩过Linux的人都会知道,Linux中的命令的确是非常多,但是玩过Linux的人也从来不会因为Linux的命令如此之多而烦恼,因为我们只需要掌握我们最常用的命令就可以了.当然你也可以在使用时去找一下 ...
- [转]Visual Studio 2012 编译错误【error C4996: 'scanf': This function or variable may be unsafe. 】的解决方案
原文地址:http://www.cnblogs.com/gb2013/archive/2013/03/05/SecurityEnhancementsInTheCRT.html 在VS 2012 中编译 ...
- 转:libev和libevent的设计差异
转:http://www.cnblogs.com/Lifehacker/p/whats_the_difference_between_libevent_and_libev_chinese.html [ ...
- [Javascript] Use a custom sort function on an Array in Javascript
Sorting in Javascript with sort uses lexical sorting by default, which means it will sort in alphabe ...
- JavaSE Map的使用
1.Map概述 Map与Collection并列存在.用来保存具有映射关系的数据:Key-Value Map 中的 key 和 value都能够是不论什么引用类型的数据 Map 中的 key 用Se ...
- android menu事件
@Override public boolean onCreateOptionsMenu(Menu menu) { menu.add(0,1,1,R.string.exit); menu.add(0, ...
- val();html();.text()区别 setInterval与setTimeout的区别
val();html();.text()区别 对于innerHTML 属性,几乎所有的元素都有innerHTML属性,它是一个字符串,用来设置或获取位于对象起始和结束标签内的HTML.(获取HTM ...
- v-for指令
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...
- Arcgis Engine(ae)接口详解(5):IGeometry几何基础操作
//点操作~~~~~~~~~~~~~~~~~~~~~~~~~ //通过坐标生成点 IPoint point = new PointClass(); point.PutCoords(, ); //获取点 ...
- ios+Appium+Java
To run iOS tests, you can follow these steps : (Note : I am using Java language here in Eclipse IDE ...