码迷,mamicode.com
首页 > 其他好文 > 详细

CodeFroces-- 514.div2.C-Sequence Transformation

时间:2018-11-06 15:14:17      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:ref   pre   RoCE   mat   div2   color   out   fine   while   

题目链接 : 514.div2.C-Sequence Transformation

#include<bits/stdc++.h>
using namespace std;
#define maxn 1000011
int a[maxn];
int main(){
  int n;
  cin>>n;
  int y=1,t=0;
  while(n>1){
     int x=0,z;
     for(int j=2;j<=n;j++){
        if(n/j>=x){
           x=n/j;
           z=j;
        }
     }
     for(int j=1;j<=n;j++){
       if(j%z!=0){
          a[t++]=y;
       }
     }
     n/=z;
     y*=z;
  }
  a[t++]=y;
  for(int j=0;j<t;j++){
      cout<<a[j]<<" ";
  }
}

 

CodeFroces-- 514.div2.C-Sequence Transformation

标签:ref   pre   RoCE   mat   div2   color   out   fine   while   

原文地址:https://www.cnblogs.com/DyLoder/p/9915264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!