# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
373834 | 2021-03-05T21:39:37 Z | guka415 | Lightning Rod (NOI18_lightningrod) | C++14 | 2000 ms | 125552 KB |
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> using namespace std; typedef pair<int, int> pii; const int sz = 1e7 + 5; int n; pii p[sz]; int mxx[sz], mny[sz]; int main() { int xp, yp, ret = 0, mx = -2e9; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%d %d", &xp, &yp); p[i] = { xp + yp,xp - yp }; } mxx[0] = p[0].first; for (int i = 1; i < n; i++) mxx[i] = max(mxx[i - 1], p[i].first); mny[n - 1] = p[n - 1].first; for (int i = n - 2; i >= 0; i--) mny[i] = min(mny[i + 1], p[i].second); for (int i = 0; i < n; i++) { bool yes = 1; if (i && mxx[i - 1] >= p[i].first) yes = 0; if (i != n - 1 && mny[i + 1] <= p[i].second) yes = 0; ret += yes; } printf("%d", ret); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2095 ms | 125552 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2086 ms | 105708 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 2095 ms | 125552 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |