codeforces 967A A. Mind the Gap ( Round #477 rated, Div. 2)

题意: 告诉一系列飞机降落时间,而且降落需要1秒,相邻飞机降落必须间隔S,就是前一个飞机降落了之后(+1s)+s才可以安排下一个飞机。问多安排一个飞机的最早降落时间

不知道为什么那么多人fst,好了直接上代码:


//    >File Name: 1.cpp
//    > Author: Webwei

#include
#define ll long long 
using namespace std;

int main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	int n,s;
	cin >> n >> s;
	int a[110];
	int hh,mm;
	int tt = 0;
	for(int i=0;i> hh >> mm, a[i] = hh * 60 + mm;
	//for(int i=0;i24) h-=24;
	cout << h << " " << m << endl;
	return 0;
}


你可能感兴趣的:(codeforces,codeforces)