Submission #448675

# Submission time Handle Problem Language Result Execution time Memory
448675 2021-07-31T15:20:48 Z vanic The Forest of Fangorn (CEOI14_fangorn) C++14
80 / 100
1210 ms 452 KB
#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;
}

Compilation message

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
1 Correct 0 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Correct 0 ms 204 KB Output is correct
4 Correct 0 ms 204 KB Output is correct
5 Correct 0 ms 204 KB Output is correct
6 Correct 0 ms 204 KB Output is correct
7 Correct 1 ms 204 KB Output is correct
8 Correct 1 ms 204 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
6 Correct 2 ms 204 KB Output is correct
7 Correct 0 ms 264 KB Output is correct
8 Correct 0 ms 204 KB Output is correct
9 Correct 1 ms 204 KB Output is correct
10 Correct 5 ms 204 KB Output is correct
11 Correct 6 ms 204 KB Output is correct
12 Correct 5 ms 300 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 144 ms 332 KB Output is correct
5 Correct 30 ms 204 KB Output is correct
6 Correct 630 ms 380 KB Output is correct
# Verdict Execution time Memory Grader output
1 Correct 712 ms 452 KB Output is correct
2 Incorrect 1210 ms 452 KB Output isn't correct
3 Halted 0 ms 0 KB -