# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
594695 | 2022-07-12T20:27:04 Z | Deepesson | Vision Program (IOI19_vision) | C++17 | 2 ms | 2388 KB |
#include <bits/stdc++.h> void construct_network(int H, int W, int K); 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); int tiles[505][505]; int plotar_tiles(int H,int W){ for(int i=0;i!=H;++i){ for(int j=0;j!=W;++j){ tiles[i][j]=(i*W)+j; } } } void construct_network(int H, int W, int K) { plotar_tiles(H,W); ///Min(H,W) == 1 if(std::min(H,W)==1){ if(H==1){ int count=0; for(int i=0;i!=W;++i){ int esperado = i+K; if(esperado>=W)break; std::vector<int> v; v.push_back(tiles[0][i]); v.push_back(tiles[0][esperado]); add_or(v); ++count; } std::vector<int> orzao; for(int i=0;i!=count;++i)orzao.push_back(H*W+i); add_or(orzao); }else { int count=0; for(int i=0;i!=H;++i){ int esperado = i+K; if(esperado>=H)break; std::vector<int> v; v.push_back(tiles[0][i]); v.push_back(tiles[0][esperado]); add_or(v); ++count; } std::vector<int> orzao; for(int i=0;i!=count;++i)orzao.push_back(H*W+i); add_or(orzao); } } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 2 ms | 2388 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |