# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
940434 | borisAngelov | Super Dango Maker (JOI22_dango3) | C++17 | 905 ms | 748 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 "dango3.h"
#include <bits/stdc++.h>
using namespace std;
const int maxn = 10005;
const int maxm = 30;
int n, m;
bool taken[maxn];
vector<int> ans[maxm];
void Solve(int N, int M)
{
n = N;
m = M;
for (int i = 1; i <= n * m; ++i)
{
taken[i] = false;
}
int currm = m;
for (int i = 1; i <= m; ++i)
{
vector<int> active;
bool first = true;
for (int j = 1; j <= n * m; ++j)
{
if (taken[j] == false)
{
if (first == true)
{
first = false;
ans[i].push_back(j);
//cout << "set " << j << " taken " << endl;
taken[j] = true;
}
else
{
//cout << "add " << j << endl;
active.push_back(j);
}
}
}
if (active.size() == n - 1)
{
for (int j = 0; j < active.size(); ++j)
{
ans[i].push_back(active[j]);
}
break;
}
/*cout << "now active are " << endl;
for (int j = 0; j < active.size(); ++j)
{
cout << active[j] << ' ';
}
cout << endl;*/
for (int j = 0; j < active.size(); ++j)
{
vector<int> currQuery;
for (int k = 0; k < active.size(); ++k)
{
if (j != k && taken[active[k]] == false)
{
currQuery.push_back(active[k]);
}
}
if (Query(currQuery) == currm - 1)
{
//cout << "set " << active[j] << " taken " << endl;
taken[active[j]] = true;
ans[i].push_back(active[j]);
if (ans[i].size() == n)
{
break;
}
}
}
/*for (int j = 0; j < n; ++j)
{
cout << ans[i][j] << ' ';
}
cout << endl;*/
--currm;
}
for (int i = 1; i <= m; ++i)
{
Answer(ans[i]);
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |