제출 #1075710

#제출 시각아이디문제언어결과실행 시간메모리
1075710c2zi6축구 경기장 (IOI23_soccer)C++17
0 / 100
1 ms612 KiB
#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define all(a) (a).begin(), (a).end()
#define replr(i, a, b) for (int i = int(a); i <= int(b); ++i)
#define reprl(i, a, b) for (int i = int(a); i >= int(b); --i)
#define rep(i, n) for (int i = 0; i < int(n); ++i)
#define mkp(a, b) make_pair(a, b)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int, int> PII;
typedef vector<int> VI;
typedef vector<PII> VPI;
typedef vector<VI> VVI;
typedef vector<VVI> VVVI;
typedef vector<VPI> VVPI;
typedef pair<ll, ll> PLL;
typedef vector<ll> VL;
typedef vector<PLL> VPL;
typedef vector<VL> VVL;
typedef vector<VVL> VVVL;
typedef vector<VPL> VVPL;
template<class T> T setmax(T& a, T b) {if (a < b) return a = b; return a;}
template<class T> T setmin(T& a, T b) {if (a < b) return a; return a = b;}
#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
template<class T>
using indset = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#include "soccer.h"

int biggest_stadium(int n, VVI a) {
    int x, y;
    rep(i, n) rep(j, n) if (a[i][j] == 1) x = i, y = j;
    int ans = 0;
    setmax(ans, n*n - (x+1)*(y+1));
    setmax(ans, n*n - (x+1)*(n-y));
    setmax(ans, n*n - (n-x)*(y+1));
    setmax(ans, n*n - (n-x)*(n-y));
    return ans;
}


컴파일 시 표준 에러 (stderr) 메시지

soccer.cpp: In function 'int biggest_stadium(int, VVI)':
soccer.cpp:39:31: warning: 'y' may be used uninitialized in this function [-Wmaybe-uninitialized]
   39 |     setmax(ans, n*n - (x+1)*(n-y));
      |                             ~~^~~
soccer.cpp:40:25: warning: 'x' may be used uninitialized in this function [-Wmaybe-uninitialized]
   40 |     setmax(ans, n*n - (n-x)*(y+1));
      |                       ~~^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...