답안 #995791

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
995791 2024-06-09T23:11:47 Z aaaaaarroz 축구 경기장 (IOI23_soccer) C++17
0 / 100
0 ms 348 KB
#include <bits/stdc++.h>
using namespace std;
int mejor_mitad(pair<int,int>arbol, int N){
	
}
int biggest_stadium(int N, vector<vector<int>> F){
	int empty_cells=0;
	bool si_hay_arbol=false;
	pair<int,int>arbol;
	for(int i=0;i<N;i++){
		for(int j=0;j<N;j++){
			if(F[i][j]==0){
				empty_cells++;
			}
			else{
				arbol={i,j};
				si_hay_arbol=true;
			}
		}
	}
	if(!si_hay_arbol){
		return N*N;
	}
	else{
		int a=((arbol.first+1)*(arbol.second+1))+max((arbol.first+1),(arbol.second+1));
		int b=(((arbol.first+1)*(N-arbol.second))+max((arbol.first+1),(N-arbol.second)));
		int c=(((N-arbol.first)*(arbol.second+1))+max((N-arbol.first),(arbol.second+1)));
		int d=(((N-arbol.first)*(N-arbol.second))+max((N-arbol.first),(N-arbol.second)));
		int e=((arbol.first+1)*(arbol.second+1));
		int f=(((arbol.first+1)*(N-arbol.second)));
		int g=(((N-arbol.first)*(arbol.second+1)));
		int h=(((N-arbol.first)*(N-arbol.second)));
		int max_rectangle=max(max(a,b),max(c,d));
		max_rectangle=max(max_rectangle,(N*N)-min(min(e,f),min(g,h)));
		return max_rectangle;
	}
}

Compilation message

soccer.cpp: In function 'int mejor_mitad(std::pair<int, int>, int)':
soccer.cpp:5:1: warning: no return statement in function returning non-void [-Wreturn-type]
    5 | }
      | ^
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 348 KB partial
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 348 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 348 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 348 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Partially correct 0 ms 348 KB partial
2 Incorrect 0 ms 348 KB wrong
3 Halted 0 ms 0 KB -