SHENZHEN I/O

SHENZHEN I/O

评价数不足
Audio Fixer
   
奖励
收藏
已收藏
取消收藏
文件大小
发表于
4.850 KB
2016 年 11 月 30 日 上午 2:32
1 项改动说明 ( 查看 )

订阅以下载
Audio Fixer

描述
I was recording an informational video for Avalon City, to tell residents about all the cool goings-on they could be a part of. Unfortunately, it turns out I had something called a "Harmonic Maximizer" plugged into the audio stream, and now everything sounds horrible :(

Re-recording the audio would be a lot of work, do you think you could put something together to just ... fix it?
9 条留言
Cocoa 2022 年 10 月 18 日 下午 8:54 
I finished in 5/480/10
Hint: Use mul 25, dgt 2 to get the result of div 4 , but only -9~9 are available. So firstly you should add an offset onto the original input, and make the div 4 result in the range of -9~15, but not 0~24
McGalcri[ESP] 2020 年 3 月 6 日 上午 7:39 
Shurtan Can you explain a little bit your solution? Im really missed with divisons in this game hahaha, im stupid... I know. :steammocking:
Shurlan 2019 年 5 月 6 日 上午 11:26 
5/627/12 Apparently the first one to get down to a cost of 5.
//4 = *25//100
slow down cadet 2017 年 10 月 9 日 下午 2:48 
Good challenge.
konimaru 2016 年 12 月 24 日 上午 6:59 
9/540/9, provided we really get MAXIMIZER input (i.e. 4n+2)
AVO 2016 年 12 月 17 日 下午 9:56 
8/1141/19. I used some algebra and wound up doing (input/2 + 75) / 2 , which is pretty easy with splitting a div 2 accross 2 chips.
Tzaphqiel 2016 年 11 月 30 日 下午 9:59 
@Smoshi Thanks for the hint. My current solution for division is similar to my multiplication/division approaches from TIS-100. Which is why my solution takes 22.2k power... :neilfacepalm:
Steven Seagull 2016 年 11 月 30 日 下午 4:22 
I spoke too soon! 10 cost, 1560 power, 26 lines. Hint here: Multiplying by 5 and dividing by 10 is the same as dividing by 2. Use dgt to help in dividing by 10. Do that twice! If we weren't limited to 999, you could multiply by 25 and truncate the last two digits to divide by 4.
Steven Seagull 2016 年 11 月 30 日 下午 4:13 
Nice description, and a challenging puzzle! I tried for a long time to find a workaround way to divide by 4, since that takes a LOT of power. My solution is 8 cost, 6468 power, 15 lines. Anyone know a way to cheese division by powers of 2? We don't have bit shift :(