답안 #602858

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
602858 2022-07-23T11:51:31 Z Sergio_2357 Vision Program (IOI19_vision) C++17
0 / 100
1 ms 212 KB
#include "vision.h"
#include <bits/stdc++.h>
using namespace std;

typedef vector<int> vi;

int h, w, k;

int pnt(int x, int y)
{
    return x + (y * w);
}

void construct_network(int H, int W, int K)
{
    h = H;
    w = W;
    k = K;
    vi res;
    if (h == 0)
        for (int i = 0; i < w; i++) {
            vi v;
            if (i >= k)
                v.push_back(i - k);
            if (i + k < w)
                v.push_back(i + k);
            if (v.size())
                res.push_back(add_and({ i, add_or(v) }));
        }
    else
        for (int i = 0; i < h; i++) {
            vi v;
            if (i >= k)
                v.push_back(i - k);
            if (i + k < h)
                v.push_back(i + k);
            if (v.size())
                res.push_back(add_and({ i, add_or(v) }));
        }
    if (res.size())
        add_or(res);
    else
        add_xor({ 0, add_or({ 0 }) });
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB on inputs (0, 0), (1, 0), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB on inputs (80, 199), (81, 199), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -