CodeFroces-- 514.div2.C-Sequence Transformation

Posted dyloder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CodeFroces-- 514.div2.C-Sequence Transformation相关的知识,希望对你有一定的参考价值。

题目链接 : 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的主要内容,如果未能解决你的问题,请参考以下文章

Codefroces 675 B. Restoring Painting(数学推公式)

codefroces Round #201.a--Difference Row

codefroces 55D Beautiful numbers

Codefroces432 div2 A,B,C

Codefroces 920F SUM and REPLACE???????????????

codefroces 946F Fibonacci String Subsequences