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队友的表演时间,单调队列维护,学了就补,绝不拖更!!!!
推荐阅读
-
2019牛客暑期多校训练营(第二场)H Second Large Rectangle
-
2020牛客暑期多校训练营(第四场)——Basic Gcd Problem
-
2020牛客暑期多校训练营(第五场)
-
2020牛客暑期多校训练营(第九场) The Flee Plan of Groundhog
-
2020牛客暑期多校训练营Groundhog and Apple Tree(树形dp,贪心)
-
2020暑期牛客多校训练营第九场(K)The Flee Plan of Groundhog(lca,树形dp)
-
2020牛客暑期多校训练营(第二场)Cover the Tree
-
2020牛客暑期多校训练营(第一场)H-Minimum-cost Flow
-
2020牛客暑期多校 第一场 F Infinite String Comparision(字符串)
-
Harmony Pairs 2020牛客暑期多校训练营(第六场)