#include "vision.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
typedef pair<ll,ll>pii;
const ll MAXN = 9500;
const ll INF = 1e9+7;
void construct_network(int H, int W, int K){
vector<int>Ns;
int d,a,i,j,f1,f2;
int linha[H],coluna[W];
for(i=0;i<H;i++){
vector<int>bruh;
for(j=0;j<W;j++){
bruh.pb(W*i+j);
}
linha[i] = add_or(bruh);
}
for(j=0;j<W;j++){
vector<int>bruh;
for(i=0;i<H;i++){
bruh.pb(W*i+j);
}
coluna[j] = add_or(bruh);
}
//linha[0] e o index da memoria na qual esta o resultado
vector<int>bruh;
for(j=0;j<W-1;j++){
Ns={coluna[j],coluna[j+1]};
bruh.pb(add_and(Ns));
}
d = add_or(bruh);//tem de haver algumas duas colunas
bruh.clear();
for(i=0;i<H;i++){
bruh.pb(linha[i]);
}
a = add_xor(bruh);//#linhas com algo tem de ser impar
f1=add_and({d,a});
bruh.clear();
for(i=0;i<H-1;i++){
Ns={linha[i],linha[i+1]};
bruh.pb(add_and(Ns));
}
d = add_or(bruh);//tem de haver algumas duas linhas
bruh.clear();
for(j=0;j<W;j++){
bruh.pb(coluna[j]);
}
a = add_xor(bruh);//#colunas com algo tem de ser impar
Ns={d,a};
f2=add_and(Ns);
Ns={f1,f2};
add_or(Ns);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
296 KB |
Output is correct |
2 |
Incorrect |
1 ms |
204 KB |
on inputs (0, 0), (0, 1), expected 0, but computed 1 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
15 ms |
1096 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
2 ms |
292 KB |
Output is correct |
4 |
Correct |
3 ms |
416 KB |
Output is correct |
5 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
WA in grader: Instruction with no inputs |
2 |
Halted |
0 ms |
0 KB |
- |