답안 #457621

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
457621 2021-08-07T08:59:46 Z Aldas25 Coins (LMIO19_monetos) C++14
0 / 100
136 ms 1024 KB
#include <bits/stdc++.h>

using namespace std;

#define FAST_IO ios_base::sync_with_stdio(0); cin.tie(0)
#define FOR(i, a, b) for(int i = (a); i <= (b); i++)
#define REP(n) FOR(O, 1, (n))
#define pb push_back
#define f first
#define s second
typedef long double ld;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
typedef vector<int> vi;
typedef vector<pii> vii;
typedef vector<ll> vl;
typedef vector<piii> viii;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

const int MAXN = 1000100, MAXK = 60;
//const ll MOD = 998244353;
const ll MOD = 1e9+7;
const ll INF = 1e17;

int t, n, k1, k2;

bool grid[310][310], cur[310][310], ans[310][310];
int mn = 310*310;

void printCur () {
    cout << " printing cur" << "\n";
    FOR(i, 0, n-1){
        FOR(j, 0, n-1) cout << cur[i][j] << " ";
        cout << "\n";
    }
    cout << endl;
}

void eval () {
    int cr = 0;
    FOR(i, 0, n-1) FOR(j, 0, n-1) cr += (!grid[i][j] && cur[i][j]);
    if (cr < mn) {
        mn = cr;
        FOR(i, 0, n-1) FOR(j, 0, n-1) ans[i][j] = cur[i][j];
    }

    //cout << " evaled cur, cr = " << cr << endl;
    //printCur();
}

void sol1 () {
    FOR(i, 0, n-1) FOR(j, 0, n-1) {
        if (i < (n/2)) cur[i][j] = false;
        else cur[i][j] = true;
    }
    eval();
}

void sol2 () {
    FOR(i, 0, n-1) FOR(j, 0, n-1) {
        if (j < (n/2)) cur[i][j] = false;
        else cur[i][j] = true;
    }
    eval();
}


void sol3 () {
    FOR(i, 0, n-1) FOR(j, 0, n-1) {
        if (j < (n-i)) cur[i][j] = false;
        else cur[i][j] = true;
    }
    FOR(i, 0, (n/2)-1) {
        cur[i][n-i-1] = true;
    }
    eval();
}

void sol4 () {
    FOR(i, 0, n-1) FOR(j, 0, n-1) {
        if (j < (n-i)) cur[i][j] = false;
        else cur[i][j] = true;
    }
    FOR(i, (n/2), n-1) {
        cur[i][n-i-1] = true;
    }
    eval();
}

void sol5 () {
    FOR(i, 0, n-1) FOR(j, 0, n-1) {
        if (j < (n-i)) cur[i][j] = false;
        else cur[i][j] = true;
    }
    FOR(i, 0, n-1) {
        if (i%2 == 0) cur[i][n-i-1] = true;
    }
    eval();
}

int h[310];

void sol6() {
    int s = n*n / 2;

    FOR(i, 0, n-1) h[i] = n;
    FOR(i, 0, n-1) FOR(j, 0, n-1) cur[i][j] = false;

    int fl = 0;

    while (s > 0) {
        int range = min(s, n);
        int id = rng() % range;
        id = n-1-id - fl;

        for (int j = id; j < n; j++) {
            if (h[j] == 0) continue;
            s--;
            h[j]--;
            cur[h[j]][j] = true;
            if (h[j] == 0) fl++;
        }
    }

    eval();
}

int main()
{
    FAST_IO;

    cin >> t >> n >> k1 >> k2;

    FOR(i, 0, n-1) FOR(j, 0, n-1) cin >> grid[i][j];

    sol1();
    sol2();
    sol3();
    sol4();
    sol5();

    REP(10000) sol6();

    FOR(i, 0, n-1) {
        FOR(j, 0, n-1) cout << ans[i][j] << " ";
        cout << "\n";
    }

    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 8 ms 332 KB K = 18
2 Incorrect 131 ms 352 KB K = 604
3 Runtime error 136 ms 964 KB Execution killed with signal 11
4 Runtime error 48 ms 924 KB Execution killed with signal 11
5 Runtime error 110 ms 984 KB Execution killed with signal 11
6 Runtime error 98 ms 1024 KB Execution killed with signal 11
7 Runtime error 20 ms 992 KB Execution killed with signal 11
8 Runtime error 113 ms 976 KB Execution killed with signal 11
9 Runtime error 47 ms 964 KB Execution killed with signal 11
10 Runtime error 31 ms 980 KB Execution killed with signal 11