本片题解设计两种解法

果然是签到题...

因为返回值问题T了好久...

第一眼:搜索大水题?

然后...竟然A了

  1. #include<cstdio>
  2. #include<queue>
  3. #include<iostream>
  4. #include<cstring>
  5. #define int long long
  6. using namespace std;
  7. inline int read(){
  8. int ans=,f=;char chr=getchar();
  9. while(!isdigit(chr)){if(chr=='-') f=-;chr=getchar();}
  10. while(isdigit(chr)){ans=(ans<<)+(ans<<)+chr-;chr=getchar();}
  11. return ans*f;
  12. }int fm,m,tot,a[],x,ff,p[],q[];
  13. void dfs(int x,int now){
  14. if(ff) return;
  15. if(x==&&now>=m) return;
  16. if(now<m){
  17. ff=;
  18. int t=;
  19. while(p[t]==) t--;
  20. cout<<t+<<endl<<now<<" ";
  21. for(int i=;i<=t;i++) cout<<p[i]<<" ";
  22. return;
  23. }
  24. int t=now/a[x];
  25. for(int i=t;i>=;i--) p[x]=i,dfs(x-,now-a[x]*i);
  26. }
  27. signed main(){
  28. m=read(),fm=read();
  29. x=;a[]=;
  30. while(x<fm&&tot<=){a[++tot]=x*m;x=x*m;}
  31. dfs(tot,fm);
  32. return ;
  33. }

但其实只要分析一下,就发现式子跟进制转换有很大关系啊,我们只要把fm当做m进制数来处理即可

  1. #include<cstdio>
  2. #include<iostream>
  3. #include<cstring>
  4. #include<cmath>
  5. #include<algorithm>
  6. #include<cstdlib>
  7. #include<ctime>
  8. #define int long long
  9. using namespace std;
  10. inline int read(){
  11. int ans=,f=;char chr=getchar();
  12. while(!isdigit(chr)){if(chr=='-') f=-;chr=getchar();}
  13. while(isdigit(chr)){ans=(ans<<)+(ans<<)+chr-;chr=getchar();}
  14. return ans*f;
  15. }void write(long long x){
  16. if(x < ) putchar('-'),x = -x;
  17. if(x > ) write(x / );
  18. putchar(x % + '');
  19. }int n,m,a[],tot;
  20. signed main(){
  21. m=read(),n=read();
  22. while(n){a[++tot]=n%m;n/=m;}
  23. printf("%d\n",tot);
  24. for(int i=;i<=tot;i++)write(a[i]),putchar(' ');
  25. return ;
  26. }

长脖子鹿省选模拟赛 [LnOI2019SP]快速多项式变换(FPT)的更多相关文章

  1. 洛谷[LnOI2019]长脖子鹿省选模拟赛t1 -> 快速多项式变换

    快速多项式 做法:刚拿到此题有点蒙,一开始真没想出来怎么做,于是试着去自己写几个例子. 自己枚举几种情况之后就基本看出来了,其实本题中 n 就是f(m)在m进制下的位数,每项的系数就是f(m)在m进制 ...

  2. 【洛谷比赛】[LnOI2019]长脖子鹿省选模拟赛 T1 题解

    今天是[LnOI2019]长脖子鹿省选模拟赛的时间,小编表示考的不怎么样,改了半天也只会改第一题,那也先呈上题解吧. T1:P5248 [LnOI2019SP]快速多项式变换(FPT) 一看这题就很手 ...

  3. 洛谷[LnOI2019]长脖子鹿省选模拟赛 简要题解

    传送门 听说比赛的时候T4T4T4标程锅了??? WTF换我时间我要写T3啊 于是在T4T4T4调半天无果的情况下260pts260pts260pts收场真的是tcltcltcl. T1 快速多项式变 ...

  4. [luogu#2019/03/10模拟赛][LnOI2019]长脖子鹿省选模拟赛赛后总结

    t1-快速多项式变换(FPT) 题解 看到这个\(f(x)=a_0+a_1x+a_2x^2+a_3x^3+ \cdots + a_nx^n\)式子,我们会想到我们学习进制转换中学到的,那么我们就只需要 ...

  5. [LnOI2019]长脖子鹿省选模拟赛 东京夏日相会

    这里来一发需要开毒瘤优化,并且几率很小一遍过的模拟退火题解... 友情提醒:如果你很久很久没有过某一个点,您可以加上特判 可以像 P1337 [JSOI2004]平衡点 / 吊打XXX 那道题目一样 ...

  6. 题解【洛谷P5248】 [LnOI2019SP]快速多项式变换(FPT)

    题目描述 这是一道构造题. 诗乃在心中想了一个n+1项的多项式f(x).第i项的次数为i,系数为ai: f(x)=a0​+a1​*x+a2​*x2+a3​*x3+⋯+an*​xn 给定m以及f(m)的 ...

  7. P5030 长脖子鹿放置 最小割

    $ \color{#0066ff}{ 题目描述 }$ 如图所示,西洋棋的"长脖子鹿",类似于中国象棋的马,但按照"目"字攻击,且没有中国象棋"别马腿& ...

  8. 长脖子鹿放置【洛谷P5030】二分图最大独立集变形题

    题目背景 众周所知,在西洋棋中,我们有城堡.骑士.皇后.主教和长脖子鹿. 题目描述 如图所示,西洋棋的“长脖子鹿”,类似于中国象棋的马,但按照“目”字攻击,且没有中国象棋“别马腿”的规则.(因为长脖子 ...

  9. P5030 长脖子鹿放置

    题目背景 众周所知,在西洋棋中,我们有城堡.骑士.皇后.主教和长脖子鹿. 题目描述 如图所示,西洋棋的"长脖子鹿",类似于中国象棋的马,但按照"目"字攻击,且没 ...

随机推荐

  1. Android 动态设置 layout_centerInParent

    RelativeLayout.LayoutParams rp = new RelativeLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutPa ...

  2. Linux如何查看端口(转)

    Linux如何查看端口 1.lsof -i:端口号 用于查看某一端口的占用情况,比如查看8000端口使用情况,lsof -i:8000 # lsof -i:8000 COMMAND PID USER ...

  3. django的时间问题

    三个时间datetime.datetime.now().datetime.datetime.utcnow()与django.util.timezone.now()的区别 datetime.dateti ...

  4. Problem 30

    Problem 30 https://projecteuler.net/problem=30 Surprisingly there are only three numbers that can be ...

  5. 创建broker配置

    1.准备工作 ■ 创建oracle11g的primary和standby库,物理standby,最大性能模式 ■ DG_BROKER_START设置为TRUE 2.创建broker配置 DGMGRL& ...

  6. [Cogs728] [网络流24题#3] 最小路径覆盖 [网络流,最大流,二分图匹配]

    建图:源点—>边的起点(集合1中的)—>边的终点(集合2中的)—>汇点,所有边权均为1, 计算最大流,最后枚举起点的出边,边权为0的即为匹配上的, 可以这样理解:每条边表示起点和终点 ...

  7. sql简单优化点滴

    select uppagent.agent_no AGENT_NO, ISNULL(countsubagent,0) REFERRAL_AGENT_NUM, ISNULL(countsubcustom ...

  8. pg 学习资料

    文/谭峰 DBA,PostgreSQL专家 开源数据库 PostgreSQL 中文资料非常缺乏,很多社区朋友苦于上手的中文资料少,因此汇总收集以下 PostgreSQL 中文资料,包括 Postgre ...

  9. ubuntu下的代码格式化工具

    indent -kr -i4   SimpleMail.java 可以用,但是太简单 astyle 这个工具不错 http://astyle.sourceforge.net/ astyle --sty ...

  10. [E2E] Visual Differing Tests with Puppeteer and PixelMatch

    Take your end to end tests to the next level by comparing your current application's view with an al ...