답안 #289843

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
289843 2020-09-03T06:41:31 Z arman_ferdous Vision Program (IOI19_vision) C++17
0 / 100
32 ms 2936 KB
#include "vision.h"
#include <bits/stdc++.h>
using namespace std;

using vi = vector<int>;
const int N = 401;

int H, W, K;

vi getdia1(int r, int c) {
  vi cells;
  for(;;) {
    cells.push_back(r * W + c);
    r--, c++;
    if(r < 0 || c >= W) break;
  }
  return cells;
}

vi getdia2(int r, int c) {
  vi cells;
  for(;;) {
    cells.push_back(r * W + c);
    r--, c--;
    if(r < 0 || c < 0) break;
  }
  return cells;
}

int dia1[N + N], dia2[N + N];
int prefix1[N + N], prefix2[N + N];

void construct_network(int h, int w, int k) {
  H = h, W = w, K = k;

  for(int i = 0; i < h; i++) {
    vi cells = getdia1(i, 0);
    dia1[i] = add_xor(cells);
  }
  for(int j = 1; j < w; j++) {
    vi cells = getdia1(h - 1, j);
    dia1[h - 1 + j] = add_xor(cells);
  }
  for(int i = 0; i < h + w - 1; i++) {
    vi tmp;
    for(int j = 0; j <= i; j++) tmp.push_back(dia1[j]);
    prefix1[i] = add_xor(tmp);
  }
  vi KKdifres, Kdifres;
  for(int i = 0; i + K < h + w - 1; i++) {
    vi tmp(2); 
    tmp[0] = prefix1[i];
    tmp[1] = prefix1[i + K];
    KKdifres.push_back(add_and(tmp));
  }
  for(int i = 0; i + K - 1 < h + w - 1; i++) {
    vi tmp(2);
    tmp[0] = prefix1[i];
    tmp[1] = prefix1[i + K - 1];
    Kdifres.push_back(add_and(tmp));
  }
  int greaterthanK = add_or(Kdifres);
  int greaterthanKK = add_or(KKdifres);

  vi tt(2); 
  tt[0] = greaterthanK;
  tt[1] = greaterthanKK;
  int result1 = add_xor(tt);

  for(int i = 0; i < h; i++) {
    vi cells = getdia2(i, w - 1);
    dia2[i - w + 1 + w] = add_xor(cells); 
  }
  for(int j = w - 2; j >= 0; j--) {
    vi cells = getdia2(h - 1, j);
    dia2[h - 1 - j + w] = add_xor(cells);
  }
  for(int i = 1; i <= h - 1 + w; i++) {
    vi tmp;
    for(int j = 1; j <= i; j++) tmp.push_back(dia2[j]);
    prefix2[i] = add_xor(tmp);
  }
  KKdifres.clear(); Kdifres.clear();
  for(int i = 0; i + K <= h + w - 1; i++) {
    vi tmp(2);
    tmp[0] = prefix2[i];
    tmp[1] = prefix2[i + K];
    KKdifres.push_back(add_and(tmp));
  }
  for(int i = 0; i + K - 1 <= h + w - 1; i++) {
    vi tmp(2);
    tmp[0] = prefix2[i];
    tmp[1] = prefix2[i + K - 1];
    Kdifres.push_back(add_and(tmp));
  }
  greaterthanK = add_or(Kdifres);
  greaterthanKK = add_or(KKdifres);

  tt[0] = greaterthanK;
  tt[1] = greaterthanKK;
  int result2 = add_xor(tt);

  tt[0] = result1;
  tt[1] = result2;
  add_or(tt);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 0 ms 384 KB on inputs (0, 0), (0, 1), expected 0, but computed 1
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 0 ms 384 KB on inputs (0, 0), (0, 1), expected 0, but computed 1
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 0 ms 384 KB on inputs (0, 0), (0, 1), expected 0, but computed 1
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 0 ms 384 KB on inputs (0, 0), (0, 1), expected 0, but computed 1
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 8 ms 768 KB Output is correct
2 Correct 6 ms 768 KB Output is correct
3 Incorrect 7 ms 768 KB on inputs (0, 0), (0, 99), expected 0, but computed 1
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB on inputs (0, 0), (1, 1), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 32 ms 2936 KB on inputs (126, 120), (176, 169), expected 0, but computed 1
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 0 ms 384 KB on inputs (0, 0), (0, 1), expected 0, but computed 1
3 Halted 0 ms 0 KB -