# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
472154 | BidoTeima | Nadan (COCI18_nadan) | C++17 | 5 ms | 1288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/// isA AC
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
void ACPLS(){
/*#ifndef ONLINE_JUDGE
freopen("output.txt","w",stdout);
freopen("input.txt","r",stdin);
#endif*/
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
}
#define tc int tttttt;cin>>tttttt;while(tttttt--)
#define sumrange(l,r,arr) (l==0?arr[r]:arr[r]-arr[l-1])
int main(){
ACPLS();
int k,n;
cin>>k>>n;
vector<int>v;
v.push_back(k);
bool vis[(int)1e6+5]={0};
vis[k]=1;
while((int)v.size()<n){
for(int i = 0; i < (int)v.size(); i++){
int x = v[i];
for(int j = 1e6; j >= 1 && (int)v.size()<n; j--){
if(x>j&&2*j!=x&&vis[x-j]==0&&vis[j]==0){
v.erase(v.begin()+i);
v.push_back(x-j);
v.push_back(j);
vis[x]=0;
vis[x-j]=1;
vis[j]=1;
}
}
}
}
for(auto i:v)
cout<<i<<'\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |