답안 #839779

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
839779 2023-08-30T15:51:06 Z model_code 축구 경기장 (IOI23_soccer) C++17
0 / 100
1 ms 212 KB
// incorrect/largest_empty_rectangle.cpp

#include "soccer.h"
#include <iostream>
#include <vector>

int biggest_stadium(int N, std::vector<std::vector<int>> C)
{
    std::vector<std::vector<int>> up(N);
    int ans = 0;
    for (int i = 0; i < N; ++i)
    {
        up[i].resize(N + 1);
        for (int j = 0; j < N; ++j)
        {
            up[i][j] = (1 - C[i][j]) + (i ? up[i - 1][j] : 0);
        }

        std::vector<std::pair<int, int>> s;
        for (int j = 0; j <= N; ++j)
        {
            int h = up[i][j], w = 1;
            while (!s.empty() && s.back().first >= h)
            {
                auto [x, y] = s.back();
                ans = std::max(x * y, ans);
                s.pop_back();
                w += y;
            }
            s.push_back({h, w});
        }
    }
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB partial
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB wrong
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB partial
2 Incorrect 0 ms 212 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB partial
2 Incorrect 0 ms 212 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB partial
2 Incorrect 0 ms 212 KB wrong
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB partial
2 Incorrect 0 ms 212 KB wrong
3 Halted 0 ms 0 KB -