이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O3")
#include <iostream>
#include <vector>
#include <string>
#include <math.h>
#include <cmath>
#include <iomanip>
#include <cstdio>
#include <algorithm>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <deque>
#include <bitset>
#include <cstring>
#define endl '\n'
#include <unordered_map>
using namespace std;
typedef int ll;
ll used[10001];
ll step = 0;
vector<int>vec;
bool check(vector<ll>a){
step++;
vec.clear();
vec.resize(31, 0);
for(auto i: a)
vec[i]++;
for(int num = 1; num <= 30; num++){
if(vec[num])
continue;
ll cnt = 0;
for(int j = 1; j * num < 30; j++){
cnt += vec[j * num];
}
if(cnt >= 2)
return false;
}
return true;
}
int main(){
vector<vector<ll>>d(1000009);
int pos = 1;
for(int num = 1; num <= 1000; num++){
d[pos++] = {num};
ll last = pos - 1;
for(int j = 1; j < last; j++){
d[pos] = d[j];
d[pos].push_back(num);
if(!check(d[pos]))
continue;
pos++;
if(pos >= 1000001)
break;
}
if(pos >= 1000001)
break;
}
ll t;
cin >> t;
while(t--){
ll n;
cin >> n;
cout << d[n].size() << ' ';
for(auto i: d[n])
cout << i << ' ';
cout << endl;
}
return 0;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |