# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
689914 | divad | Norela (info1cup18_norela) | C++14 | 1041 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define NMAX 62
#define MMAX 26
using namespace std;
int n,m,q,x,ans;
bitset<NMAX> b[MMAX];
vector<int> sol;
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> m;
ans = -1;
for(int i = 1; i <= m; i++){
cin >> q;
for(int j = 1; j <= q; j++){
cin >> x;
b[i][x] = 1;
}
}
for(int i = 0; i < (1<<m); i++){
bitset<NMAX> all;
for(int j = 0; j < m; j++){
if(i&(1<<j)){
all ^= b[j+1];
}
}
if(all.count() == n){
if(ans == -1){
ans = i;
for(int j = 0; j < m; j++){
if(i&(1<<j)){
sol.push_back(j+1);
}
}
}else{
if(__builtin_popcount(ans) > __builtin_popcount(i)){
sol.clear();
for(int j = 0; j < m; j++){
if(i&(1<<j)){
sol.push_back(j+1);
}
}
ans = i;
}else if(__builtin_popcount(ans) == __builtin_popcount(i)){
vector<int> aux;
for(int j = 0; j < m; j++){
if(i&(1<<j)){
aux.push_back(j+1);
}
}
bool ok = true;
for(int j = 0; j < sol.size(); j++){
if(aux[j] > sol[j]){
ok = false;
break;
}else if(aux[j] < sol[j]){
ok = true;
break;
}
}
if(ok){
sol.clear();
for(auto it: aux){
sol.push_back(it);
}
ans = i;
}
}
}
}
}
cout << __builtin_popcount(ans) << "\n";
for(auto it: sol){
cout << it << " ";
}
return 0;
}
컴파일 시 표준 에러 (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... |