Submission #992271

# Submission time Handle Problem Language Result Execution time Memory
992271 2024-06-04T08:03:20 Z MarwenElarbi Vision Program (IOI19_vision) C++17
0 / 100
1 ms 1240 KB
#include <bits/stdc++.h>
#include "vision.h"

using namespace std;
#define fi first
#define se second
#define ll long long
#define pb push_back

int add_and(std::vector<int> Ns);

int add_or(std::vector<int> Ns);

int add_xor(std::vector<int> Ns);

int add_not(int N);

void construct_network(int H, int W, int K) {
    bool grid[H+1][W];
    pair<int,int> fst={-1,-1};
    pair<int,int> lst={-1,-1};
    pair<int,int> wa={-1,-1};
    for (int i = 0; i < H; ++i)
    {
        for (int j = 0; j < W; ++j)
        {
            grid[i][j]=add_and({i*H+j});
            //cout <<grid[i][j]<<" ";
            if(grid[i][j]==1&&fst==make_pair(-1,-1)){
                fst={i,j};
            }else if(grid[i][j]==1){
                lst={i,j};
            }
        }//cout <<endl;
    }
    //cout <<fst.fi<<" "<<fst.se<<" "<<lst.fi<<" "<<lst.se<<endl;
    if(abs(fst.fi-lst.fi)+abs(lst.se-fst.se)==K) add_and({fst.fi*H+fst.se});
    else add_not(fst.fi*H+fst.se);
    return;
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:22:19: warning: variable 'wa' set but not used [-Wunused-but-set-variable]
   22 |     pair<int,int> wa={-1,-1};
      |                   ^~
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 1240 KB WA in grader: Too many instructions
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -