26 lines
570 B
C++
26 lines
570 B
C++
#include "testlib.h"
|
|
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
registerValidation(argc, argv);
|
|
|
|
int n = inf.readInt(1, 1e5, "n");
|
|
inf.readSpace();
|
|
inf.readInt(1, 1e5, "k");
|
|
inf.readEoln();
|
|
|
|
int lastTime = 0;
|
|
for (int i = 0; i < n; i++) {
|
|
if (i != 0) inf.readSpace();
|
|
int curTime = inf.readInt(0, 1e5, "ti");
|
|
ensuref(curTime >= lastTime, "Times must be in increasing order");
|
|
lastTime = curTime;
|
|
}
|
|
inf.readEoln();
|
|
inf.readEof();
|
|
|
|
return 0;
|
|
} |