답안 #420214

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
420214 2021-06-08T07:45:29 Z Lam_lai_cuoc_doi 삶의 질 (IOI10_quality) C++17
0 / 100
1 ms 460 KB
#include <bits/stdc++.h>

using namespace std;
using ll = long long;
using ld = long double;
using ull = unsigned long long;

constexpr bool typetest = 0;
constexpr int N = 4e5 + 2;
//#include "grader.h"
#include "quality.h"

int b[3001][3001];

int rectangle(int m, int n, int h, int w, int a[3001][3001])
{
    auto Check = [&](int v)
    {
        for (int i = 1; i <= m; ++i)
            for (int j = 1; j <= n; ++j)
                b[i][j] = (a[i][j] >= v) + b[i - 1][j] + b[i][j - 1] - b[i - 1][j - 1];

        for (int i = h; i <= m; ++i)
            for (int j = w; j <= n; ++j)
                if ((b[i][j] - b[i - h][j] - b[i][j - w] + b[i - h][j - w]) < (h * w + 1) / 2)
                    return false;

        return true;
    };

    int l = 1, mid, r = m * n;

    while (l <= r)
    {
        mid = (l + r) / 2;

        if (Check(mid))
            l = mid + 1;
        else
            r = mid - 1;
    }

    return r;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 460 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 460 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 460 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 460 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 460 KB Output isn't correct
2 Halted 0 ms 0 KB -