이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define f first
#define s second
std::vector<std::vector<int>> devise_strategy(int N) {
vector <vector<int>> ans;
vector <int> aux;
aux.push_back(0);
for (int i=1;i<=N;i++) {
if ((i>>12)&1) aux.push_back(26);
else aux.push_back(13);
}
ans.push_back(aux);
aux.clear();
for (int k=0;k<=12;k++) {
aux.push_back(1);
for (int i=1;i<=N;i++) {
if ((i>>k)&1) aux.push_back(-1);
else aux.push_back(26+k);
}
ans.push_back(aux);
aux.clear();
}
for (int k=0;k<=12;k++) {
aux.push_back(1);
for (int i=1;i<=N;i++) {
if ((i>>k)&1) aux.push_back(26+k);
else aux.push_back(-2);
}
ans.push_back(aux);
aux.clear();
}
for (int k=0;k<=11;k++) {
aux.push_back(0);
for (int i=1;i<=N;i++) {
if ((i>>k)&1) aux.push_back(14+k);
else aux.push_back(1+k);
}
ans.push_back(aux);
aux.clear();
}
/*
for (auto it=ans.begin();it!=ans.end();it++) {
for (auto itr=it->begin();itr!=it->end();itr++) cout<<*itr<<" ";
cout<<"\n";
}
*/
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |