首页 > 代码库 > 繁华模拟赛 vicent的字符串
繁华模拟赛 vicent的字符串
#include<iostream>#include<cstdio>#include<string>#include<cstring>#include<algorithm>using namespace std;const int maxn = 200005;int n,k,a[maxn];char cmd;int main(){ freopen("str.in","r",stdin); freopen("str.out","w",stdout); ios::sync_with_stdio(false); cin>>n>>k; if(k == 1 && n == 1){ cout<<"a"; return 0; } if(k == 1 || k > n){ cout<<-1; return 0; } int cnt = n; for(int i = k;i >= 3;i--){ a[cnt] = i; cnt--; } for(int i = 1;i <= cnt;i++){ if(i&1) a[i] = 1; else a[i] = 2; } for(int i = 1;i <= n;i++){ cmd = ‘a‘ - 1 + a[i]; cout<<cmd; } return 0;}
繁华模拟赛 vicent的字符串
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。