博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【洛谷P1061 Jam的计数法】搜索
阅读量:5100 次
发布时间:2019-06-13

本文共 790 字,大约阅读时间需要 2 分钟。

分析

超级暴力,在尾部+1,再判断。

AC代码

type     arr=array[0..27]of longint;var    st:string;    a:array[0..27]of longint;    s,t,w,i:longint;    procedure print(a:arr);var    i:longint;begin    for i:=w downto 1 do write(chr(a[i]+96)); writeln;end;function check(a:arr):boolean;var    i:longint;begin    for i:=w-1 downto 1 do         if (a[i+1]<=a[i])and(not((a[i]>=s)and(a[i]<=t)and(a[i+1]>=s)and(a[i+1]<=t))) then exit(false);    exit(true);end;procedure solve(a:arr);var    i,cnt,kkk:longint;begin    cnt:=0;    while cnt<5 do     begin        inc(a[1]); kkk:=1;        for i:=1 to w do             if a[i]>t then            begin                a[i]:=s;                inc(a[i+1]);            end;        for i:=w-1 downto 1 do             if a[i]

转载于:https://www.cnblogs.com/Dawn-Star/p/9869368.html

你可能感兴趣的文章
PB与各种数据库连接
查看>>
1003 阶乘后面0的数量
查看>>
HashMap,LinkedHashMap和Hashtable类的深入剖析与理解
查看>>
智能家居中的物联网网关的可信计算平台模块(TPM)设计
查看>>
CUDA Fortran for Scientists and Engineers第二版翻译
查看>>
[转]多列索引
查看>>
mbstring未安装
查看>>
os模块
查看>>
C# 客服端上传文件与服务器器端接收 (简单代码)
查看>>
nginx搭建高性能流媒体技术
查看>>
Code a simple telnet client using sockets in python
查看>>
java 生成jar包并保留注释
查看>>
文件下载的几种方法
查看>>
select选中值传递到后台action中
查看>>
iOS中实现plist中读取数据实现Cell的显示(字典转模型,实现按序分组)修改图片的尺寸...
查看>>
使用自定义端口连接SQL Server 的方法
查看>>
ajax成功后XML 解析错误:格式不佳
查看>>
反射ModelToDto
查看>>
Win10提示没有权限使用网络资源问题解决
查看>>
初步打开MVC大门
查看>>