이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
using namespace std;
const int maxn=2005, maxm=1e4+5;
const double inf=2e18;
pair < int, int > d[maxn];
pair < int, int > q[maxm];
int n, m;
vector < double > kor[4]; // jednadzbe: x=0, y=0, x=w, y=h
bool moze[maxm];
vector < int > sol;
pair < int, int > pos;
int w, h;
void radi(int x, int y){
double a, b, c;
int dx, dy;
dx=d[x].first-d[y].first;
dy=d[x].second-d[y].second;
a=-dy;
b=dx;
c=-a*d[x].first-b*d[x].second;
double sol1, sol2, sol3, sol4;
if(b==0){
sol1=-inf;
sol3=inf;
}
else{
sol1=-c/b;
sol3=(-c-a*w)/b;
}
if(a==0){
sol2=-inf;
sol4=inf;
}
else{
sol2=-c/a;
sol4=(-c-b*h)/a;
}
if(b==0){
if(d[x].second<d[y].second){
kor[0].push_back(sol1);
kor[2].push_back(sol1);
}
else{
kor[0].push_back(sol3);
kor[2].push_back(sol3);
}
}
else if(d[x].first<d[y].first){
kor[0].push_back(sol1);
}
else{
kor[2].push_back(sol3);
}
if(a==0){
if(d[x].first<d[y].first){
kor[1].push_back(sol2);
kor[3].push_back(sol2);
}
else{
kor[1].push_back(sol4);
kor[3].push_back(sol4);
}
}
else if(d[x].second<d[y].second){
kor[1].push_back(sol2);
}
else{
kor[3].push_back(sol4);
}
}
double ccw(pair < double, double > a, pair < double, double > b, pair < double, double > c){
return a.first*(b.second-c.second)+b.first*(c.second-a.second)+c.first*(a.second-b.second);
}
bool provjeri(pair < double, double > a, pair < double, double > b, pair < double, double > c, pair < double, double > x){
if(ccw(a, b, c)<0){
swap(b, c);
}
return ccw(a, b, x)>=0 && ccw(b, c, x)>=0 && ccw(c, a, x)>=0;
}
void rijesi(int x, int y){
if(kor[y].size()<2){
return;
}
sort(kor[y].begin(), kor[y].end());
pair < double, double > t1, t2;
if(y==0){
t1.first=0;
t2.first=0;
}
else if(y==1){
t1.second=0;
t2.second=0;
}
else if(y==2){
t1.first=w;
t2.first=w;
}
else{
t1.second=h;
t2.second=h;
}
int ind=-1;
for(int i=0; i<(int)kor[y].size()-1; i++){
if(y==0){
t1.second=kor[y][i];
t2.second=kor[y][i+1];
}
else if(y==1){
t1.first=kor[y][i];
t2.first=kor[y][i+1];
}
else if(y==2){
t1.second=kor[y][i];
t2.second=kor[y][i+1];
}
else{
t1.first=kor[y][i];
t2.first=kor[y][i+1];
}
if(provjeri(t1, t2, d[x], pos)){
ind=i;
break;
}
}
if(ind!=-1){
for(int i=0; i<m; i++){
if(moze[i] && !provjeri(t1, t2, d[x], q[i])){
moze[i]=0;
}
}
}
else{
if(y==0){
t1.second=kor[y][0];
}
else if(y==1){
t1.first=kor[y][0];
}
else if(y==2){
t1.second=kor[y][0];
}
else{
t1.first=kor[y][0];
}
for(int i=0; i<m; i++){
if(moze[i] && provjeri(t1, t2, d[x], q[i])){
moze[i]=0;
}
}
}
}
int main(){
scanf("%d%d", &w, &h);
scanf("%d%d", &pos.first, &pos.second);
scanf("%d", &m);
for(int i=0; i<m; i++){
moze[i]=1;
scanf("%d%d", &q[i].first, &q[i].second);
}
scanf("%d", &n);
for(int i=0; i<n; i++){
scanf("%d%d", &d[i].first, &d[i].second);
}
for(int i=0; i<n; i++){
for(int j=0; j<n; j++){
if(i==j){
continue;
}
radi(i, j);
}
for(int j=0; j<4; j++){
rijesi(i, j);
kor[j].clear();
}
}
for(int i=0; i<n; i++){
if(moze[i]){
sol.push_back(i+1);
}
}
printf("%d\n", (int)sol.size());
for(int i=0; i<(int)sol.size(); i++){
printf("%d ", sol[i]);
}
printf("\n");
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
fangorn.cpp: In function 'int main()':
fangorn.cpp:166:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
166 | scanf("%d%d", &w, &h);
| ~~~~~^~~~~~~~~~~~~~~~
fangorn.cpp:167:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
167 | scanf("%d%d", &pos.first, &pos.second);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fangorn.cpp:168:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
168 | scanf("%d", &m);
| ~~~~~^~~~~~~~~~
fangorn.cpp:171:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
171 | scanf("%d%d", &q[i].first, &q[i].second);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
fangorn.cpp:173:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
173 | scanf("%d", &n);
| ~~~~~^~~~~~~~~~
fangorn.cpp:175:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
175 | scanf("%d%d", &d[i].first, &d[i].second);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# | 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... |