其他分享
首页 > 其他分享> > 洛谷P1567 统计天数

洛谷P1567 统计天数

作者:互联网

题目链接

题目描述
炎热的夏日,KC 非常的不爽。他宁可忍受北极的寒冷,也不愿忍受厦门的夏天。最近,他开始研究天气的变化。他希望用研究的结果预测未来的天气。

经历千辛万苦,他收集了连续 N(1≤N≤106 ) 的最高气温数据。

现在,他想知道最高气温一直上升的最长连续天数。

输入格式
第 1 行:一个整数 N 。1 ≤ N ≤ 106

第 2 行:N个空格隔开的整数,表示连续 NN 天的最高气温。0 ≤ 最高气温 ≤ 109

输出格式
1 行:一个整数,表示最高气温一直上升的最长连续天数。

输入输出样例
输入 #1
10
1 2 3 2 4 5 6 8 5 9
输出 #1
5

代码:

#include<iostream>
using namespace std;
int n, num[1234567] = {0}, maxn = 0, count = 1;
int main()
{
	cin >> n;
	for(int i = 0; i < n; i++) cin >> num[i];
	for(int i = 1; i < n; i++)
	{
		if(num[i] > num[i - 1]) count++;
		if(count > maxn) maxn = count;
		if(num[i] <= num[i - 1]) count = 1;
	}
	cout << maxn;
	return 0;
}

标签:count,洛谷,int,天数,P1567,++,num,maxn,气温
来源: https://blog.csdn.net/qq_44826711/article/details/113813795