답안 #673112

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
673112 2022-12-19T18:10:12 Z tbzard Vision Program (IOI19_vision) C++14
0 / 100
399 ms 272 KB
#include <bits/stdc++.h>
using namespace std;

int add_not(int n);
int add_and(vector<int> ns);
int add_or(vector<int> ns);
int add_xor(vector<int> ns);
void construct_network(int h, int w, int k){
    vector<int> ans;
    for(int i=0;i<h;i++){
        for(int j=0;j<w;j++){
            for(int a=i+1;a<h;a++){
                for(int b=j+1;b<w;b++){
                    if(abs(i-a) + abs(j-b) == k){
                        int out = add_and(vector<int>{i*w+j, a*w+b});
                        ans.push_back(h*w+ans.size());
                    }
                }
            }
        }
    }
    add_or(ans);
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:15:29: warning: unused variable 'out' [-Wunused-variable]
   15 |                         int out = add_and(vector<int>{i*w+j, a*w+b});
      |                             ^~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 399 ms 272 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -