#include "nonogram.h"
using namespace std;
int r1[111];
vector<vector<int>> SolveNonogram(int N, int M, vector<vector<int>> Rclue, vector<vector<int>> Cclue) {
vector<vector<int>> ans;
ans.resize(N);
for(int i=0; i<N; i++) ans[i].resize(M,0);
for(int i=0, x=0; i<M; i++){
for(int j=0; j<Rclue[0][i]; j++) r1[x++]=1;
x++;
if(!Rclue[0][i]) break;
}
for(int j=0; j<M; j++){
for(int i=0, x=1-r1[j]; i<N; i++){
for(int t=0; t<Cclue[j][i]; t++) ans[x++][j]=1;
x++;
if(!Cclue[j][i]) break;
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
6 ms |
384 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
6 ms |
384 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Halted |
0 ms |
0 KB |
- |