# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
148286 | 요까할 로뭘 은명팀 1 (#201) | Chessboard Nonogram (FXCUP4_nonogram) | C++17 | 6 ms | 512 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "nonogram.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<std::vector<int>> SolveNonogram(int n, int m, std::vector<std::vector<int>> r, std::vector<std::vector<int>> c) {
vector<vector<int> > a(n);
vector <int> b;
for(int i = 0;i < n;i++)
{
int k = 0,cn;
if(i % 2 == 0)
{
for(int j : r[i])
{
for(cn = 0;cn < j;k++,cn++)
{
a[i].push_back(1);
}
if(k != m) a[i].push_back(0);
k++;
}
}
else
{
b.clear();
for(int j : c[0])
{
for(cn = 0;cn < j;k++,cn++)
{
b.push_back(1);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |