增量游戏时间格式


18

增量游戏时间格式

目标

增量游戏通常具有倒数计时器,用于表示完成任务之前的天,小时,分钟和秒。根据可用空间,它们可以格式化为:

2d 13h
23h 59m 48s
14m
3h 0m 0s

编写此代码的目的是编写执行此格式化的功能或程序。

输入项

  • 总秒数。
  • 要输出的最大段数。

输出量

  • 细分包括:
    • 0
    • 0
    • 0小时
    • 0分钟
    • 0
  • 每个段由单个空格分隔。
  • 显示的段必须是连续的。例如,即使分钟为零,您也不会显示小时和秒而不显示分钟。
  • 一位数字值不带前导零,尽管必须将零值显示为0
  • 值四舍五入。
  • 显示的第一段是第一个非零值。

测试用例

seconds  segments  output
     0      1      0s
   123      1      2m
   123      2      2m 3s
   123      3      2m 3s
 82815      3      23h 0m 15s
307891      2      3d 13h
307891      4      3d 13h 31m 31s
604800      1      1w
604800      6      1w 0d 0h 0m 0s

获奖

一周内最低字节数的解决方案将赢得“接受”。

编辑

  • 如示例所示,阐明了哪个段是第一个。
  • 根据要求添加了测试用例4。

预期输出是307891 1什么?0w1w
jnovacho

1
@jnovacho不是3d吗?“显示的第一个细分是第一个非零值”
Luigi

@Luigi是的。我错过了。
jnovacho

我是唯一一个认为这是“有人可以帮我写这段代码”的人吗?
FHO

并非每天都有代码高尔夫任务实际上可能有用。我说:D
Geobits,2015年

Answers:


7

CJam(快照),41 38字节

q~"<<^X^G"{imd\}%W%"wdhms":s.+_{0=}#><S*

上面使用插入符号,因为其中两个字符不可打印。

感谢@ Sp3000打高尔夫球2个字节。

测试中

最新的稳定版本(0.6.5)有一个错误,该错误可能导致{}#返回Integers而不是Longs。很矛盾的是,可以通过强制转换为整数(i)来避免这种情况。

要使用在线解释器的代码运行此代码,请单击此固定链接或从此粘贴中复制代码。

或者,您可以通过执行以下命令来下载并构建最新的快照:

hg clone http://hg.code.sf.net/p/cjam/code cjam-code
cd cjam-code/
ant

您可以这样创建CJam文件:

base64 -d > game-time.cjam <<< cX4iPDwYByJ7aW1kXH0lVyUid2RobXMiOnMuK197MD19Iz48Uyo=

怎么运行的

q~        e# Read an evaluate the input.
"<<^X^G"  e# Push the string corresponding to the array [60 60 24 7
{         e# For each character:
  i       e#   Replace it by its code point.
  md      e#   Push divisor and residue of the division by that code point.
  \       e#   Swap their order.
}%
W%        e# Reverse the resulting array.
"wdhms":s e# Push ["w" "d" "h" "m" "s"].
.+        e# Perform vectorized concatenation.
_         e# Push a copy.
{0=}#     e# Find the index of the first pair with positive integer.
>         e# Remove the preceding pairs.
<         e# Truncate to the number of pairs specified in the input.
S*        e# Join, separating by spaces.

6

Java,197191字节

String p(int s,int m){String a[]={s%60+"s",(s/=60)%60+"m",(s/=60)%24+"h",(s/=24)%7+"d",(s/7)+"w"},b="",z="";for(s=5;s>0&&a[--s].charAt(0)=='0';);for(;s>=0&&--m>=0;z=" ")b+=z+a[s--];return b;}

我只是注意到Java支持像这样的声明String a[]。这让我拉的声明b,并z在同一行,这救了我从写String一次。


1
喜欢;z=" ")-非常聪明。
OldCurmudgeon 2015年

5

C,134个 127 110 104 103字节

新版本:

a,e=5;f(n,x){for(;e;n%=a)a=(int[]){1,60,3600,86400,604800}[--e],x>e?printf("%u%c ",n/a,"smhdw"[e]):0;}

先前版本:

#define p(a) x>--e?printf("%u%c ",n/a,"smhdw"[e]):0;n%=a;
e=5;f(n,x){p(604800)p(86400)p(3600)p(60)p(1)}

4

Pyth,39 43字节

jd_>vz+V?u?GeGPG+m%~/QddCM"<<"Q)Q]0"smhdw

编辑:+ 4个字符,因为我忘记了0s测试用例。

其中包括2个无法打印的字符。获取实际的代码并在线尝试:演示

说明:

                                         z = 1st input line (segments, as string)
                                         Q = 2nd input line (time, as int)
                         "<<.."          string with 4 chars
                       CM                convert to ASCCI-values => [60,60,24,7]
                m                        map each d of ^ to:
                   /Qd                     Q / d 
                  ~                        update Q, but use the old value for
                 %  Q d                    Q mod d
                                         this gives [sec, min, hour, day]
               +               Q         add Q (week)
        u                       )        apply the following expression to G, 
                                         starting with G = [s,m,h,d,w], until
                                         G stops changing:
         ? eG                              if eG != 0:
          G                                  update G with G (stop changing)
                                           else:
             PG                              update G with G[-1]
                                         this gets rid of trailing zeros
      +V                         "smhdw  vectorized add with "smhdw"
   >vz                                   only use the last eval(z) items
  _                                      reverse order
jd                                       join by spaces and print

3

Python 2.7版- 181个 178 174字节

我第一次尝试打高尔夫球。

def I(s,M):
 z=[0]*5;j=0
 for i in [604800,86400,3600,60,1]:z[j],s=s/i,s%i;j+=1
 l=[z.index(n)for n in z if n][0]
 return" ".join([str(i)+n for n,i in zip('wdhms',z)][l:l+M])

1
伟大的第一次尝试!比我的第六次尝试要好...;)通过更改if n!=0为just,可以减少3个字节if n
kirbyfan64sos

哦,是的,忘了0等于False。谢谢。
f.rodrigues 2015年

2

朱莉娅158字节

我敢肯定,采用更聪明的方法可以缩短时间,但这就是我现在所拥有的。

(s,g)->(j=0;p=cell(5,1);for i=[604800,86400,3600,60,1] p[j+=1],s=s÷i,s%i end;z=findfirst(p);z>0?join([string(p[i],"wdhms"[i])for i=z:min(z+g-1,5)]," "):"0s")

这将创建一个未命名函数,该函数接受两个整数作为输入并返回一个字符串。要给它起个名字,例如f=(s,g)->...

取消+说明:

function f(s, g)
    # Initialize an array and an index
    p = cell(5, 1)
    j = 0

    # Loop over the number of seconds in a week, day, hour,
    # minute, and second
    for i in [604800, 86400, 3600, 60, 1]
        # Set the jth element in p to be the quotient and s
        # to be the remainder of i into s
        p[j+=1], s = s ÷ i, s % i
    end

    # Get the index of the first nonzero value in p
    z = findfirst(p)

    if z > 0
        # We start the string at the first nonzero value
        # and continue until we hit the desired number of
        # units (z+g-1) or the maximum number of units (5),
        # whichever comes first. The appropriate unit is
        # appended to each value and the values are then
        # joined with a space.
        join([string(p[i], "wdhms"[i]) for i in z:min(z+g-1,5)], " ")
    else
        # If there are no nonzero values in p, we just
        # have 0 seconds
        "0s"
    end
end

例子:

julia> f(82815, 6)
"23h 0m 15s"

julia> f(604800, 4)
"1w 0d 0h 0m"

1

Scala,147个字节

def p(s:Int,i:Int)=List(s/604800+"w",s/86400%7+"d",s/3600%24+"h",s/60%60+"m",s%60+"s").dropWhile(k=>k.head=='0'&&k.tail!="s").take(i).mkString(" ")

1

rs,367字节

^(\d+)/(_)^^(\1)
(_*) (\d)/\1!\2
_{60}/#
#{60}/@
@{24}/:
:{7}/;
(_+)/(^^\1)s
(#+)/(^^\1)m
(@+)/(^^\1)h
(:+)/(^^\1)d
(;+)/(^^\1)w
([a-z])/\1 
w ((\d+[^\dd])|!)/w 0d \1
d ((\d+[^\dh])|!)/d 0h \1
h ((\d+[^\dm])|!)/h 0m \1
(m|^) ?!/\1 0s!
!(\d+)/!(_)^^(\1)
#
+#(\d+)([a-z]) ?(.*)!(_*)/\1\2 #\3!\4@
#/
(@+)/ (_)^^((^^\1))
!(_+) \1(_*)/!\2
_+ _+/
+\d+[a-z] ?!_/!
 *!/
^$/0s

现场演示和所有测试用例。

凌乱,凌乱,凌乱...

在Android版Chrome上执行测试用例大约需要3-7秒。千万不能使用调试模式,它可以冻结你的浏览器在这种情况下,因为所有将被打印输出。


rs是什么?-----
Caleb Paul

@Wideshanks我在标题中添加了一个链接。这是我写的基于正则表达式的语言。
kirbyfan64sos 2015年

0

C#,239237170164字节

这没有其他解决方案那么紧凑,但是如果我自己不动手的话,我将无法提出这一挑战。

最新版本的灵感来自ESC的答案

为了清楚起见,缩进:

string G(int s,int n){
    int[]x={s%60,(s/=60)%60,(s/=60)%24,(s/=24)%7,s/7};
    for(s=5;x[--s]==0&s>0;);
    var o="";
    while(n-->0&s>=0)
        o+=" "+x[s]+"smhdw"[s--];
    return o.Trim();
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.