#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, m, trg;
cin >> n >> m >> trg;
vector<char> op(n);
vector<int> val(n);
for (int i = 0; i < n; i++) {
cin >> op[i] >> val[i];
}
const int inf = (int) 1e9;
vector<int> qt(1, -1);
qt.push_back(val[0]);
qt.push_back(inf);
for (int i = 1; i < n; i++) {
qt.push_back(val[i] - val[i - 1]);
}
pair<int, int> res = {-1, -1};
for (int t : qt) {
for (int v1 = 0; v1 <= m; v1++) {
int v2 = v1;
for (int i = 0; i < n; i++) {
int d = (i == 0 ? val[i] : val[i] - val[i - 1]);
if (d <= t) {
if (op[i] == '+') {
v2 = min(v2 + 1, m);
} else {
v2 = max(v2 - 1, 0);
}
}
}
if (v2 == trg) {
res = max(res, {t, v1});
}
}
}
if (res.first == inf) {
cout << "infinity" << '\n';
} else {
cout << res.first << " " << res.second << '\n';
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
348 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1063 ms |
348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
701 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1040 ms |
348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1048 ms |
860 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1051 ms |
860 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1039 ms |
1112 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1037 ms |
1492 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1048 ms |
2520 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1033 ms |
2776 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |