# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
227476 | cgiosy | 곡선 자르기 (KOI17_cut) | C++17 | 5 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3")
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
int N, sx, sy, px, py, qx;
cin>>N>>sx>>sy; px=qx=sx, py=sy;
set<int> A;
for(int i=N; i--;) {
int x, y;
if(i) cin>>x>>y;
else x=sx, y=sy;
if((y>0)!=(py>0) || !i && (y>0 && py>0)) {
if((!i || y<0) && qx!=x) {
A.insert(min(qx, x)*2);
A.insert(max(qx, x)*2+1);
}
qx=x;
}
px=x, py=y;
}
int a=0, b=0, c=0, p=0;
for(int x:A) {
if(x%2) a+=!--c, b+=!p, p=1;
else c++, p=0;
}
cout<<a<<' '<<b;
}
컴파일 시 표준 에러 (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... |