# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
219384 | ho94949 | 치료 계획 (JOI20_treatment) | C++17 | 3081 ms | 5344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXM = 1e5;
int N, M;
int T[MAXM], L[MAXM], R[MAXM], C[MAXM];
int XL[MAXM], YL[MAXM], XR[MAXM], YR[MAXM];
bool vis[MAXM];
int main()
{
scanf("%d%d", &N, &M);
vector<int> x, y;
for(int i=0; i<M; ++i)
{
scanf("%d%d%d%d", T+i, L+i, R+i, C+i);
--L[i]; //L[i] = 0, R[i] = N covers whole
XL[i] = L[i]-T[i], YL[i] = L[i]+T[i];
XR[i] = R[i]-T[i], YR[i] = R[i]+T[i];
x.push_back(XL[i]); x.push_back(XR[i]);
y.push_back(YL[i]); y.push_back(YR[i]);
}
sort(x.begin(), x.end()); x.erase(unique(x.begin(), x.end()), x.end());
sort(y.begin(), y.end()); y.erase(unique(y.begin(), y.end()), y.end());
for(int i=0; i<M; ++i)
{
XL[i] = lower_bound(x.begin(), x.end(), XL[i]) - x.begin();
XR[i] = lower_bound(x.begin(), x.end(), XR[i]) - x.begin();
YL[i] = lower_bound(y.begin(), y.end(), YL[i]) - y.begin();
YR[i] = lower_bound(y.begin(), y.end(), YR[i]) - y.begin();
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |