欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

2020牛客暑期多校训练营(第二场)补题报告

程序员文章站 2022-04-02 19:25:07
...

本篇仅用来监督自己补题

D:模拟,给你两个时刻,取两个时刻之间相差多少秒。

#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	cout.tie(0);
	int a,b,c;
	int x,y,z;
	char t;
	cin >> a >> t >> b >> t >> c;
	cin >> x >> t >> y >> t >> z;
	int t1 = a*3600+b*60+c;
	int t2 = x*3600 + y*60 + z;
	int ans = abs(t1 - t2);
	cout << ans << endl;
	return 0;
}

F:给你一个nm的矩阵,矩阵A[i][j] = lcm(i,j). 再给你一个整数K,求所有kk子矩阵中最大值的和。

首先o(nm)打表求出矩阵
之后为OI队友的表演时间,单调队列维护,学了就补,绝不拖更!!!!