시간 관리를 도와주세요


15

나는 최근 새해까지 전체 물리 교과서를 읽으라고 들었습니다 (불행히도 진실 이야기). 매일 읽어야 할 장을 결정하기 위해 여러분의 도움이 필요합니다. 이곳은 당신이 들어오는 곳입니다.

입력

  • 모든 형식의 두 날짜 두 번째 날짜는 항상 첫 번째 날짜보다 늦습니다.
  • 챕터 번호 목록. 이 쉼표로 구분 된 목록에는 단일 장 ( 12) 또는 포함 범위 ( 1-3) 가 포함될 수 있습니다 . 전의. 1-3,5,6,10-13.
  • Monday -> Mo스케줄에서 제외 할 요일 목록 (이름의 첫 두 글자 :)으로 표시됩니다 . 전의. Mo,Tu,Fr.

산출

출력은 줄 바꿈으로 구분 된 날짜 및 장 번호 목록입니다 (아래 형식 참조). 제공된 요일을 제외하고 해당 범위의 모든 요일에 장을 균등하게 분배해야합니다. 챕터가 균등하게 배포되지 않으면 기간이 끝날 때 챕터 수가 적은 날을 보내십시오. 출력 날짜는 입력 형식과 다를 수 있습니다. 챕터가없는 날은 생략하거나 챕터가없는 날만있을 수 있습니다.

예:

입력: 9/17/2015 9/27/2015 1-15 Tu

산출:

9/17/2015: 1 2
9/18/2015: 3 4
9/19/2015: 5 6
9/20/2015: 7 8
9/21/2015: 9 10
9/23/2015: 11
9/24/2015: 12
9/25/2015: 13
9/26/2015: 14
9/27/2015: 15

9/22는 화요일이므로 예제의 입력은`9/17/2015 9/27/2015 1-15 Tu '이어야합니다.
DavidC

@DavidCarraher 당신이 맞습니다. 샘플 입력을했을 때 어떤 이유로 11 월을 생각하고있었습니다.
GamrCorps

7
그것이 마지막 날짜라면 모든 장을 가질 것입니다 :)
MickyT

@MickyT는이 도전에 대한 나의 영감을 정확하게 얻었습니다.
GamrCorps

물리학이 얼마나 놀라운 지 곧 알게 될 것입니다. 당신은 실제로 운이 좋다.
Fabrizio Calderan

답변:


2

PowerShell에서의 V4, 367 357 323 313 308 307 305 277 바이트

param($a,$b,$c,$d)$e=@();$c=-split('('+($c-replace'-','..'-replace',','),(')+')'|iex|%{$_-join' '});while($a-le$b){if(-join"$($a.DayOfWeek)"[0,1]-notin$d){$e+=$a;$z++}$a=$a.AddDays(1)}$g=,0*$z;$c|%{$g[$c.IndexOf($_)%$z]++};1..$z|%{"$($e[$_-1]): "+$c[$i..($i+=$g[$_-1]-1)];$i++}

편집-명시 적 입력 형식을 사용하여 28 바이트의 골프를 쳤다

설명 :

param($a,$b,$c,$d)    # Parameters, takes our four inputs
$e=@()                # This is our array of valid output dates

$c=-split('('+($c-replace'-','..'-replace',','),(')+')'|iex|%{$_-join' '})
# Ridiculously complex way to turn the input chapters into an int array
# The first part changes "1,5-9,12" into a "(1),(5..9),(12)" format that
# PowerShell understands, then executes that with iex, which creates an 
# array of arrays. Then iterate through each inner array and joins them all
# together with spaces, then finally splits on spaces to create a 1D array

while($a-le$b){       # Until we reach the end day
  if(-join"$($a.DayOfWeek)"[0,1]-notin$d){
    # Not an excluded day of the week
    $e+=$a            # Add it to our list of days
    $z++              # Increment our count of total days
  }
  $a=$a.AddDays(1)    # Move to the next day in the range
}

$g=,0*$z              # Populate a new array with zeroes, same length as $e

$c|%{$g[$c.IndexOf($_)%$z]++}
# This populates $g for how many chapters we need each day

1..$z|%{"$($e[$_-1]): "+$c[$i..($i+=$g[$_-1]-1)];$i++}
# Goes through the days in $e, prints them, and slices $c based on $g

용법

날짜는 .NET DateTime형식 이어야 합니다. "건너 뛴"요일은 배열 (PowerShell 목록과 동일) 일 것으로 예상됩니다.

PS C:\Tools\Scripts\golfing> .\help-me-manage-my-time.ps1 (Get-Date '9/17/2015') (Get-Date '9/27/2015') '5,1-3,6,10-13,20-27' @('Su','Tu')
09/17/2015 00:00:00: 5 1 2
09/18/2015 00:00:00: 3 6
09/19/2015 00:00:00: 10 11
09/21/2015 00:00:00: 12 13
09/23/2015 00:00:00: 20 21
09/24/2015 00:00:00: 22 23
09/25/2015 00:00:00: 24 25
09/26/2015 00:00:00: 26 27

3
여기에 너무 많은 달러 기호가 있습니다 ... 이것은 비싸야합니다! : D
kirbyfan64sos

@ kirbyfan64sos 여기 문자의 12 % 만 있습니다 $... 실제로 PowerShell 골프의 평균은 약 10 %에서 15 %로 보입니다 (내가 게시 한 답변에 대한 비공식적 인 계산을 기반으로 함).
AdmBorkBork

다시 당신에게 :-)
Willem

흠 308뿐만 아니라 ...
Willem

305에 잘 했어요! 300 지금 :-)
Willem

3

자바 스크립트 (ES6), 317 310 291 바이트

(a,b,c,d)=>{u=0;c.split`,`.map(m=>{p=m[s]`-`;for(q=n=p[0];n<=(p[1]||q);r=++u)c+=","+n++},c="");c=c.split`,`;x=d.map(p=>"SuMoTuWeThFrSa".search(p)/2);for(g=[];a<b;a.setTime(+a+864e5))x.indexOf(a.getDay())<0&&(t=y=g.push(a+" "));return g.map(w=>w+c.slice(u-r+1,u-(r-=r/y--+.99|0)+1)).join`
`}

용법

f(new Date("2015-09-17"),new Date("2015-09-27"),"5,1-4,6,10-13,20-27",["Su","Tu"])
=> "Thu Sep 17 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 5,1,2
Fri Sep 18 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 3,4,6
Sat Sep 19 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 10,11
Mon Sep 21 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 12,13
Wed Sep 23 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 20,21
Thu Sep 24 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 22,23
Fri Sep 25 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 24,25
Sat Sep 26 2015 10:00:00 GMT+1000 (AUS Eastern Standard Time) 26,27"

설명

(a,b,c,d)=>{

  u=0;                                                 // u = total chapters
  c.split`,`.map(m=>{                                  // c = array of each chapter
    p=m[s]`-`;
    for(q=n=p[0];n<=(p[1]||q);r=++u)                   // get each chapter from ranges
      c+=","+n++
  },c="");
  c=c.split`,`;

  x=d.map(p=>"SuMoTuWeThFrSa".search(p)/2);            // x = days to skip
  for(g=[];a<b;a.setTime(+a+864e5))                    // for each day between a and b
    x.indexOf(a.getDay())<0&&                          // if this day is not skipped
      (t=y=g.push(a+" "));                             // add it to the list of days
                                                       // t = total days
                                                       // y = days remaining

  return g.map(w=>w+
    c.slice(u-r+1,u-(r-=r/y--+.99|0)+1)                // add the chapters of the day
  ).join`
`
}

2

파이썬 2 - (338) 317 308 304 300

여기서 우리는 볼 롤링을 얻습니다 ...

def f(a,b,c,d):
 from pandas import*;import numpy as n
 s=str.split;e=n.array([])
 for g in s(c,','):h=s(g,'-');e=n.append(e,range(int(h[0]),int(h[-1])+1))
 k=[t for t in date_range(a,b) if s('Mo Tu We Th Fr Sa Su')[t.weekday()]not in d];j=len(k);e=array_split(e,j)
 for u in range(j):print k[u],e[u]

입력 예 :

f('9/17/2015','9/27/2015','5,1-3,6,10-13,20-27',['Su','Tu'])

출력 예 :

2015-09-17 00:00:00 [ 5.  1.  2.]
2015-09-18 00:00:00 [ 3.  6.]
2015-09-19 00:00:00 [ 10.  11.]
2015-09-21 00:00:00 [ 12.  13.]
2015-09-23 00:00:00 [ 20.  21.]
2015-09-24 00:00:00 [ 22.  23.]
2015-09-25 00:00:00 [ 24.  25.]
2015-09-26 00:00:00 [ 26.  27.]
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.