# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
472165 |
2021-09-13T08:37:37 Z |
BidoTeima |
Nadan (COCI18_nadan) |
C++17 |
|
1 ms |
1228 KB |
/// 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 = 1; j <= k/n+2*n+2*k && (int)v.size()<n; j++){
if(x>j&&x!=2*j&&vis[x-j]==0&&vis[j]==0){
v[i]=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 |
1 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
2 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
3 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
4 |
Correct |
1 ms |
1228 KB |
Output is correct |
5 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
6 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
7 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
8 |
Correct |
1 ms |
1228 KB |
Output is correct |
9 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |
10 |
Incorrect |
1 ms |
1228 KB |
Output isn't correct |