#include "vision.h"
#include<bits/stdc++.h>
using namespace std;
void construct_network(int H, int W, int K) {
vector<int> possibilities;
for(int i = 0; i < W; ++i){
for(int j = 0; j < H; ++j){
int PosAct = i + j*W;
vector<int> AtDistanceK;
AtDistanceK.push_back(PosAct);
for(int w = 0; w <= K; ++w){
int h = K - w;
//cout << i << " " << j << " " << w << endl;
if(i + w < W){
if(j + h < H){
AtDistanceK.push_back((j+h)*W + i + w);
}
if(j - h >= 0){
AtDistanceK.push_back((j-h)*W + i + w);
}
}
if(i - w >= 0){
if(j + h < H){
AtDistanceK.push_back((j+h)*W + i - w);
}
if(j - h >= 0){
AtDistanceK.push_back((j-h)*W + i - w);
}
}
}
if(AtDistanceK.size()==1)continue;
int hasTwoOnes = add_and({add_or(AtDistanceK), add_not(add_xor(AtDistanceK)), add_xor({PosAct})});
possibilities.push_back(hasTwoOnes);
//cout << memory[hasTwoOnes] << endl;
//print(AtDistanceK);
}
}
add_or(possibilities);
}
# |
결과 |
실행 시간 |
메모리 |
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 |
312 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), (0, 1), expected 1, but computed 0 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
1104 KB |
WA in grader: Too many instructions |
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 |
- |