# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
980204 | 2024-05-12T01:07:09 Z | vjudge1 | 축구 경기장 (IOI23_soccer) | C++17 | 233 ms | 31876 KB |
#include "soccer.h" #include<bits/stdc++.h> using namespace std; #define pb push_back #define deb(x) cout<<#x<<": "<<x<<endl; int biggest_stadium(int N, vector<vector<int>> F) { if(N>3){ int numoftree=0; for(int i=0; i<N; ++i){ for(int j=0; j<N; ++j){ if(F[i][j]==1){ numoftree++; } } } if(numoftree<=1){ for(int i=0; i<N; ++i){ for(int j=0; j<N; ++j){ if(F[i][j]==1){ int ans=min((i+1)*(j+1), (N-i)*(j+1)); ans=min(ans, (i+1)*(N-j)); ans=min(ans, (N-i)*(N-j)); ans=N*N-ans; return ans; } } } return N*N; } else{ bool jala=true; for(int i=0; i<N && jala; ++i){ int notree=0; int tree=0; for(int j=0; j<N && jala; ++j){ if(F[i][j]==1){ tree++; } else{ if(notree>0 && tree>0){ jala=false; } notree++; } } } for(int i=0; i<N && jala; ++i){ int notree=0; int tree=0; for(int j=0; j<N && jala; ++j){ if(F[j][i]==1){ tree++; } else{ if(notree>0 && tree>0){ jala=false; } notree++; } } } if(jala){ return N*N-numoftree; } else{ return 0; } } } int ans=0; int ayuda=N*N; int mevoyamorir=pow(2, ayuda); for(int mask=0;mask < mevoyamorir; ++mask){ vector<vector<int>> grid (N, vector<int> (N, 0)); for(int i=0; i<N; ++i){ for(int j=0; j<N; ++j){ if(F[i][j]==1){ grid[i][j]=-1; } } } int aux=mask; int col=0; int fil=0; vector<pair<int,int>> coord; while(aux>0){ if(aux%2){ if(grid[fil][col]==-1){ break; } grid[fil][col]=1; coord.pb({fil, col}); } col++; if(col>=N){ fil++; col=0; } aux/=2; } if(aux>0){ continue; } bool posib=true; for(int i=0; i<coord.size(); ++i){ for(int j=i+1; j<coord.size(); ++j){ if(grid[coord[i].first][coord[j].second]==1 || grid[coord[j].first][coord[i].second]==1){ if(coord[i].first==coord[j].first){ int a=coord[i].second; int b=coord[j].second; if(a>b) swap(a,b); for(int x=a; x<=b; ++x){ if(grid[coord[i].first][x]!=1){ posib=false; break; } } if(!posib) break; } if(coord[i].second==coord[j].second){ int a=coord[i].first; int b=coord[j].first; if(a>b) swap(a,b); for(int x=a; x<=b; ++x){ if(grid[x][coord[i].second]!=1){ posib=false; break; } } if(!posib) break; } } else{ posib=false; break; } } if(!posib) break; } if(posib){ ans=max(ans,(int) coord.size()); } } return ans; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 348 KB | partial |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | ok |
2 | Correct | 0 ms | 344 KB | ok |
3 | Correct | 0 ms | 348 KB | ok |
4 | Correct | 0 ms | 348 KB | ok |
5 | Correct | 0 ms | 348 KB | ok |
6 | Correct | 0 ms | 348 KB | ok |
7 | Correct | 1 ms | 348 KB | ok |
8 | Correct | 15 ms | 2200 KB | ok |
9 | Correct | 233 ms | 31876 KB | ok |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 348 KB | ok |
2 | Correct | 0 ms | 344 KB | ok |
3 | Correct | 1 ms | 348 KB | ok |
4 | Correct | 0 ms | 348 KB | ok |
5 | Correct | 0 ms | 348 KB | ok |
6 | Correct | 1 ms | 344 KB | ok |
7 | Correct | 0 ms | 348 KB | ok |
8 | Correct | 0 ms | 348 KB | ok |
9 | Correct | 1 ms | 348 KB | ok |
10 | Correct | 0 ms | 348 KB | ok |
11 | Correct | 0 ms | 348 KB | ok |
12 | Correct | 1 ms | 348 KB | ok |
13 | Correct | 0 ms | 348 KB | ok |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 348 KB | partial |
2 | Correct | 1 ms | 348 KB | ok |
3 | Correct | 0 ms | 344 KB | ok |
4 | Correct | 1 ms | 348 KB | ok |
5 | Correct | 0 ms | 348 KB | ok |
6 | Correct | 0 ms | 348 KB | ok |
7 | Correct | 1 ms | 344 KB | ok |
8 | Correct | 0 ms | 348 KB | ok |
9 | Correct | 0 ms | 348 KB | ok |
10 | Correct | 1 ms | 348 KB | ok |
11 | Correct | 0 ms | 348 KB | ok |
12 | Correct | 0 ms | 348 KB | ok |
13 | Correct | 1 ms | 348 KB | ok |
14 | Correct | 0 ms | 348 KB | ok |
15 | Partially correct | 0 ms | 440 KB | partial |
16 | Partially correct | 0 ms | 344 KB | partial |
17 | Partially correct | 0 ms | 348 KB | partial |
18 | Partially correct | 1 ms | 548 KB | partial |
19 | Partially correct | 1 ms | 348 KB | partial |
20 | Incorrect | 0 ms | 348 KB | wrong |
21 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 348 KB | partial |
2 | Correct | 1 ms | 348 KB | ok |
3 | Correct | 0 ms | 344 KB | ok |
4 | Correct | 0 ms | 348 KB | ok |
5 | Correct | 0 ms | 348 KB | ok |
6 | Correct | 1 ms | 348 KB | ok |
7 | Correct | 0 ms | 348 KB | ok |
8 | Correct | 0 ms | 348 KB | ok |
9 | Correct | 1 ms | 344 KB | ok |
10 | Correct | 0 ms | 348 KB | ok |
11 | Correct | 0 ms | 348 KB | ok |
12 | Correct | 1 ms | 348 KB | ok |
13 | Correct | 0 ms | 348 KB | ok |
14 | Correct | 0 ms | 348 KB | ok |
15 | Correct | 1 ms | 348 KB | ok |
16 | Correct | 0 ms | 348 KB | ok |
17 | Partially correct | 0 ms | 440 KB | partial |
18 | Partially correct | 0 ms | 344 KB | partial |
19 | Partially correct | 0 ms | 348 KB | partial |
20 | Partially correct | 1 ms | 548 KB | partial |
21 | Partially correct | 1 ms | 348 KB | partial |
22 | Incorrect | 0 ms | 348 KB | wrong |
23 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 348 KB | partial |
2 | Correct | 1 ms | 348 KB | ok |
3 | Correct | 0 ms | 344 KB | ok |
4 | Correct | 0 ms | 348 KB | ok |
5 | Correct | 0 ms | 348 KB | ok |
6 | Correct | 1 ms | 348 KB | ok |
7 | Correct | 0 ms | 348 KB | ok |
8 | Correct | 0 ms | 348 KB | ok |
9 | Correct | 1 ms | 344 KB | ok |
10 | Correct | 0 ms | 348 KB | ok |
11 | Correct | 0 ms | 348 KB | ok |
12 | Correct | 1 ms | 348 KB | ok |
13 | Correct | 0 ms | 348 KB | ok |
14 | Correct | 0 ms | 348 KB | ok |
15 | Correct | 1 ms | 348 KB | ok |
16 | Correct | 0 ms | 348 KB | ok |
17 | Partially correct | 0 ms | 440 KB | partial |
18 | Partially correct | 0 ms | 344 KB | partial |
19 | Partially correct | 0 ms | 348 KB | partial |
20 | Partially correct | 1 ms | 548 KB | partial |
21 | Partially correct | 1 ms | 348 KB | partial |
22 | Incorrect | 0 ms | 348 KB | wrong |
23 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Partially correct | 0 ms | 348 KB | partial |
2 | Correct | 1 ms | 348 KB | ok |
3 | Correct | 0 ms | 344 KB | ok |
4 | Correct | 0 ms | 348 KB | ok |
5 | Correct | 0 ms | 348 KB | ok |
6 | Correct | 0 ms | 348 KB | ok |
7 | Correct | 0 ms | 348 KB | ok |
8 | Correct | 1 ms | 348 KB | ok |
9 | Correct | 15 ms | 2200 KB | ok |
10 | Correct | 233 ms | 31876 KB | ok |
11 | Correct | 1 ms | 348 KB | ok |
12 | Correct | 0 ms | 348 KB | ok |
13 | Correct | 0 ms | 348 KB | ok |
14 | Correct | 1 ms | 344 KB | ok |
15 | Correct | 0 ms | 348 KB | ok |
16 | Correct | 0 ms | 348 KB | ok |
17 | Correct | 1 ms | 348 KB | ok |
18 | Correct | 0 ms | 348 KB | ok |
19 | Correct | 0 ms | 348 KB | ok |
20 | Correct | 1 ms | 348 KB | ok |
21 | Correct | 0 ms | 348 KB | ok |
22 | Partially correct | 0 ms | 440 KB | partial |
23 | Partially correct | 0 ms | 344 KB | partial |
24 | Partially correct | 0 ms | 348 KB | partial |
25 | Partially correct | 1 ms | 548 KB | partial |
26 | Partially correct | 1 ms | 348 KB | partial |
27 | Incorrect | 0 ms | 348 KB | wrong |
28 | Halted | 0 ms | 0 KB | - |