text
stringlengths 180
608k
|
---|
[Question]
[
Something I found while looking through some old files. It seemed like a neat idea for a code golf challenge.
## The intro
One of the most popular events at the annual Cyclist's Grand Competition for Charity (CGCC) is the rocket bike parcours. The rules are simple: Inspect the parcours and place a bet on wheather is it possible to reach and exactly stop on the finish line. The drivers who bet that it's possible then have to prove it to win. If they can't prove it, the drivers who bet against it win.
## The parcours
The rules for the parcours are as follows:
* A parcours consists of uphills, downhills and flat bits. In the examples, it's modelled as a sequence of `/`, `\` and `_` respectively.
* The bike starts with a speed of 0 m/s (i.e. before the first character of the sequence).
* The down-/uphills accelerate/decelerate the bike by 1 m/s.
* On the flat bits the driver must either speed up or slow down manually, again, by 1 m/s. They mustn't do nothing.
* If the bike has a speed of 0 m/s at the finish line (i.e. after the last character of the sequence), the parcours was driven correctly.
* The finish line must be reached.
* The speed must remain >= 0 at all times. If it is/becomes 0 at any point, the next piece of the parcours must accelerate the bike, either through a downhill `\` or through a flat bit `_` where the driver accelerates.
## The task
Given such a parcours, take it as the input for a first program and output whether it's possible or not to drive the parcours correctly according to the rules above. If yes, take the sequence as an input for a second program and output a sequence of instructions for the driver on what to do on the flat bits. In the examples, `+` and `-` are used to signalize acceleration and deceleration respectively.
## The rules
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"). The shortest answer wins.
* Submit one or two program/s that validate the parcours (validator) and generate the instructions for the driver if valid (generator). If two programs are submitted, they are scored seperately and independently from the one program submissions.
* The I/O format may be freely chosen. All characters may be substituted freely.
* The generator program only needs to work on parcours that can be driven correctly.
* The input length is not bounded.
## The examples
Input is taken
```
Input:
\_///
Formatted for clarity:
/
/
\_/
Validator output:
Falsy (The driver will come to a stop before the last uphill)
```
```
Input:
\_\__/
Formatted:
\_
\__/
Validator output:
Truthy
Generator output:
--+
```
```
Input:
\_\_\
Formatted:
\_
\_
\
Validator output:
Falsy (The driver will finish the parcours with at least 1 m/s)
```
# More examples:
**Invalid:**
```
/_/\ (Driver can't go uphill with a speed of 0 at the start)
\/_\\/
/\_\//_\
_\/\///_\\
/__//\/_//_\
/_\\\_\/_/__/\_/_\\\\\_\\/\_\//\\\\/\_///\/__\_\_\/_\\\_\//__//_\__/\\___/_\/_/\_\_/\\\\_\_\_\__\_\\
_/_//_\\//\\\/\/_\/\__\\__//\//_\/_\\\___/\\___\_/\_//\\_\\__\/\\_/_//_/__\/_\\/\\___\_\\\\//_/_\\_\\\_\/\___\_//\\/\\\_/_\///__\//\\\/\\/_\\__\_/\\\/_/_/_//_/_/\\//_\/\/_/\\_\\///_/_\\__/_______\/_///_//_/__//__\_//\\/\\\\\_\\\_\//\_\__/\\\/_\\_\/\_\/_\\_/_\_____/\\_\_/_\/_/\/_/\_\/_\_//_\\//__//\//\//\______\//\_//\/_/\\\/_\__\\/__//\\/\\_\\//_/\\_/_//_\\/\\_/\\/\__/\_\_\\_\_\//__\__\\/_\///___\//\\/\__\/\\\\//__//_/_//\__/\\/___/\\\__\/_\__/_/_/\/\//_\\\/\_/_/_\/__\\_\//___///_/_\//__/\___/_\_/_/\_/_\_/\\\\//\\\\_/_\\/\/__\\/_\_/\//\\_\_\_\_\/_\_//\__\\////////\//_//\//\/\\_/_/___/\/\_\/____/____\\\_///_\_\/\__/\//\_/\\/_/_/\\__\\/\\\\///\//__/\_____\__/\__/\\\__/\\_\/\_\__\/_\\/\_\/\/\\\/_\_\__//_\\/\_\/\\\//\//__\_\_\__\__/\/_\_\_\_/_//\\\\_//\/__\\\\\\___/\/\_\\\\___\\_\\\/\_\__/\_/_/__/__/__\\//_____//_//\___\/\/\/\_\__\__\/_/_/\_//__/\\___/_/_\\/\__\\__\__/\_/_/////\\//\//_\\\\\_\\\\_/\/\_/_//\_/////_///_/\/__\\/_/_\_\/_/\_\__\/\\\_\__/__/_//__\\___/\/\//_\/_\\/\/////__\//_\/__////__\\_//_/\__\/_/__\___//\/\/_/\/\//_\___\/\//\///\/__\_/_/___\/\\_\//__\\\__\/\__//_\\__/\_\/\//\/\__//__/_____\\//__/\\\\\\//_/\_///\/_\\\__/_/\__/\\\//\_\\/\\_\///\_\/\__/\//__\\_\/\\__\__\_/__//\/___\\__/_/_/\__//_//_/\/\_//\//__\\__//\/_///\\\/\__/_\_/__/\__\_/\_/_\\//_/\\/__///\_\/_//\_\\____\_\_\/////_\/_/\\\_//_\_\\\\___/____\/\/_\/_////_\__/_/\/\//_/_\_\__\////\///\_/\/_\____\\//\\__\/\/_\_\_\/\/\\\\/\\__\/_\///\__/\/\\_/_//_//\/\/_////\\\__\\/_/\_/\_\//\/_/_/__\//_\/_\//\\\/\/\_/__\\_\_\//__\_\/_/\/\\\\/__\_/\///\__/____\//\///\_\/\_\/__/\\\__\/\\/\/\_//_/_\_\\__/\/\\_/_\__/\/\/\___\\//_/_\\//__\_\\\\/\_\___/__\\//\\/\_\_\/_/\//\/\/__\_/_______/\_\\__\/_/_/_/\_//__\////\/__//__\/\/\///\_//\/\_//\_//\\_///_/_/__\___\/\/__\\\//__/_\_\_\///_\\_\/_/\\__/_/\\/__/_\/_/_\//\\_\\/__\\\\\/__\______\/_//_/\\\/\/\//_\_//\/\\_\\////\_/\_\\\\/__///_/\\___\/\_\//__//_\__\__/\/\\\/\_/\/_\/_/\__\\/_/\__\/\\/_\\_/\/_\/\_\/\\\\_\_/__\/_/\\\_\/\//\_//\//_/\_/////\\\/__///___/\__//_\\_\\\/\\\___/\/\/\___\____/__////\__\______/__/_//_\\\___//_\_\\\/\\/_/\\_\_/__\__//\/_//_///\//__/\//_/_/_/_/\_\____/_//_____///_\___///_\/__\\/\\//\\_\_\_\_//__//\\__\\_\_/_\//\//\/_\_/_\_//\/\_/_\_/\//_///_/_/\\/_/_/_/_\_\//\_\/\/\/////_/__//\/__\//_\_/__\__\_\_/\\_/_//___/__/_/\///\_\/\/\\__\\\__\/\\/\\/\__//\\\/_/\\/\_\/_//___\\_\/////_\/_\_\__/_//\\\/__/_\\\/\/\_\/__\/\_//\/___/_\\/__\\/_/\\\\/\_//_\/_\/\/\__\\_\\\__\\_/_\///_//_\__/_\_/__///_\__\\_/_\/\___\//_\\_/\\/_/\__/\/_/_\\\\\//_//_\\_///\\\/_\\/\\__\\/__/\_\__\/\//\/_\/\/_\\\/\__\___/_/\/_\\////\\_\___\/\_/__/\/\\__//\//_/_/\\\_/\//\//\/\/_/_\\_/\/\//__/\\/\/_/_\//\/\\_/\//__/\/\////\//__/_/\\\_//_///____//_//\_\/_\_\_\\/\\//__///_\__\/_/_\\/\\\\_\_/\\/_\\_//\\/\\/\\/\_\//_\\//__/_\__/\\_\/\/_/__/\\_\\\_/__/\\\_\_/\___\/_\\//__//_//___\/\/___//_\\___\\/_/_\\_/_\__\/_\_//\_\__/_\//___\\\__//_/__\\\\_/\/\__///____\_/\//_/_\_/___//__\\//\/_/\_\_\\_\//_\_/\_/___\___/\/_//\/_\\\\/\\_____/\/_\/_\_\///_\_/\\//__\__//_/\/\\//___///\\///__\__\////_\\/_/_/_\\\__/\_\/_/_//\_\//_//___/\_/_\\_\_\_///___\/_\__/_/\\/\/_/_\__/_\_/_\__///\\\_/\//_\\_/_\\/\///_\/\__\/_///_\____\/_/\\_//\\_\\_\_\\_\/\\\\\\_\///__\/__\_//\\\/\//__\_\\\_/\/_\_\/\/__/_/\_/\/_\_\__\/_\_//_/\/__\_/_/_//_\/\_\\/_\\\//_\_/\\\\\\_\_/\\/_//_/\_/_/\/\\__/_\/\\\\__/\/_/\//////\\\//\___/_\_//__\__/_/_/_//_\_//\///_\\_\//\\/\//_\_\/\_/_///\\\\_\_\\/_/_\\//\/\/_//\//\_/\_/\\_____/_/\/\/\_\__\///\__\/_/_\\\_\_\___//\__/\_/__//\____/\\\_/\\/__\/_///_//\\_//\__\\_/\/_\_/_\_\\///___/_///\//_/___\///\\\\/\/\\/\___/_/__/\/__/_\_/\/_/\__//_//____\/\\\//_\__/__\_///___///_\//_//__////_\//_//\\___/\/\//_\/_\/\\\\_\//_\\___\_\/_\\\//_\\\/\/\//__\\_\\\_\\\\/___/\/_\____/___//_\\\_/\_\_//_/\_\\_/_\\\__\/_//\\/_/\_/\//_/__////______/\/\/\/_//_\\/\______\__/\/__\__////__/\\__\\_\//__//\_\\\/_//\\_\__\\_/\\/_//\\___/_\///_/\__/_/\///\\//__/_/_/_/////\//\_\\__\_\/\//_/_\\//___/__\/\\___\/\_\__/_/____\__\\____/____/\_/\\///\/\_\\/\\\\//__\//\_//\_/\\_\_/_\/\//\\__\\_//\/_\_/\/_\__/\//\__\/___\__\//\/_\__\__\\//_\_/___/\\_/_//\\\/\/__/_//\/_\_/\/_\/_\/_\\\_//\\__/_//\\/\\_\_\\__/\\\//\__\/\//_\_\/_/_/\___\\\/\\_/\/__\_\_\/\\//_\/\//\_/___/_\\\\\\___/\\_\///\/\_///_//_\_/\\__\__\/_//_\_\\\\/_/__\/\/____/\\\\_\\_/\/_\//_\_\//\_////\/_\___///__\/__/_\/\_//_\\_//_\_\///\/_/\__/__\\_\___//_\____/\///_\/_____\/___/\\\///\/_\/_//__/__/\___\/__//\_///\__///_/_\/_/\_/\_\/\/\\/\///_/_/\\__\_\_\\/\//\\\/\\___//__/_\__/_\\\_\//_/_///\/_///_\//\/\_/\\__\/_\/\_\_\\_\_/__\\_\_\_\__\\__/_\//\_//\_\\//\/___\//__\\/__\\\\//_\_\/_/_/_//_\\_//____\\\_/\\_/_\\\/\\\\\___///\/\__\___\__/_/____/\/_/_\_//\_/\_\___/_/\\_/_\\\\___\/\/\\\/\/\_/___\\_\\\\\\_//////_/_\\\\/\\\\/_\\///\/\/\/\/_\_______/_/\/\/\/_\____\\_\_//\_//__\\\\/\\\\//_\\_/__///_____//\\/_/\\____/__//_\_/__\_\/___\\_\\_/___\////_\__\_\_/_\\\/_\_\/\\_\\/_///\\_//_\_\__/_\/_//_\\///_/\\/\/_\/\_/_//\/\\//\///\\///__/\\//_/\/\_/\_/_\/____/\_\_\//_//_\/\____\_/\\__//\____\\\\__//_\_/_/_/_//\_\\\___\\/\\/\\_///\__\\__\_/_/\/\\__\//\/__/\//_\\__\\__\\\\__\/_\/_/___/\_\\/_\/_\\___///\\_/\_/\__/////_/\\_\_\_//\//\_\__\_\__/__\\//\\_/\\/_\/_/_\/_\/__\\_\\__//\_\__/_/\_\/\_/\////////_///__\_/_\/_/\\\_/\/\\\\/_\\//\////___/_\/\/_\/_/_//___/\/_\__//\///_\//\\//\\//\\___/\\_\\/_/_/\\\/\//\\_\///\__//_\\//\\\_/\/\/\//_///__\_/\\\\\/\\/\\\\\__\\\\\__\_/\\__////\_/\_\/___//_/_/\//\_/\_\\\\/_/_\\/\\/_//\_/\/_\\__//_/_//\/\_/\_\\/_\///_//_///_\/\__\__\_/\\\\/__\_///\\\//_\_\_//__\///__/\/_/\_/\___\//_/\/_\/__\_/_\///_\\/\//\/_/\//\/\///\/\__\__/\\_\__\/\_\//_/_/____//\_//_\\\_\/\\/_/\/\\_/\\\_//__\___\//\_\_\/\//\\/\_/\//_\_/\____///\//\/_/\/\_/_/\///___\_\_\//__\_\__\///\\\_\//_\\/_\\\__/\/\___\\/__//_\\_\_\/_\/__/_\_/_\///____\/\_/\\___\/_\_\_/\_/\\_\//\\\_/\/\/__/\/\__/\__/\//\_\\__/_\///_/__\__\\\/_\\_\___////__\____/\_///\/\_\/___\/\\/\/__\____\/__\__\_/\/////___\\/\\//__/\_\_/_\_\_\____\\/\__\\\/\___\\__\__//\\/\//_\/____\\_//_\_\\\\__//_\/\\/_/_/\_\\\____\\__\//_/\_/___\\\____\_\\\/\\//\_//_\_\\___\\//\/__///_\/_///\/_/_/_/_\____/_\_\___/_\\/\____/\\_/_\\/_/\//\_//___/_____/__/\_\_\_///___/\___\\_/\/\\___\__\/\\\\/\\///_/\\/\\\_\\__\_/\/_\_\\\\_///////\/_/\\\\/\/_//\/__/\_/////\_/\\_/\/_/\///\/\\_//\\_\_\/\\\__\\/_\\_\\\__\/_\_/_/\_/\_\_\\\/_\\\_\_\\___\__///___/\__/_///_\_\__/_\__//\_//\_\_\_\_\/_//_/\\\\////_/___\\_____\\___/\/\\_/___\\\/_\____/\__//////\\\/\_\\__\/_/_/\\\/\/\\_\\\/_//\///______\/_\_/__\\\_\\\____\///____\\\\/_/__//__\/\\/_/_\_\_\_\///_\\__/\\_\/_____/\//__\_///_/\\/_\\/\_/\_//\/\////_/\\\\/\/\\\_\/\_//\/\__/\__//_\/\_//\_\\\\\//\\_\\/\_\\/_//\//__/_\\\\\\_/\____\\\__\\_//\/\___/\/\__/____/\/_\/_/_\_/\__\/\/_\//\_\/_\_\\\__\\/_\///___\/\/\__/__////\__/_\//\\\_\/\//\\_\_/\\__\\///_///\\\_\//__\/\_/\///__\\__\_/_//_\_\___///__/\\\\\\_//__\\_//\___/\//_\\_\\/\\/_/\_\\/\/\\/_\\_\_\/\_/\//\__//////__\_\/_\/\\//_\\\\\\\/_\\\/_//\_/\\/\///_\_\_\\/\____/_/\_\\__/\//___/\//\__///_\/____/_//_\///__/_\/_\\_/__/\/__\\\__/_\_/_/\_\\\_/\_\___//_\/_/\__//////\//\_\\\_/__/_/\\/__\\__//\/_/_//_/\/\_\/_/\__/////_/\\\/\\_\_//\\_/___/\\///__\\/\__\/_\\/_\__\/__\_\/\\_/\__\/\___\\__\__//__\//\//_//_\//_\/_/\\_\\_\_/__//\\\//_/\__///\_\/\\////\\__/_/_///\_\/\_/\_//_\///_/____\\_/\/___\/_\\_\//_\_\//\_//__\_/_/__\_\/_/__\\///\\/\\/\/////_/_/_/_///////__//\__/__//\////\_/__\__\//\_\\//\\_/\__\\/\/\/_\\\\/\_\\\/\/___//\/___\__/\\_\\\\_\\_/\/\_\/\////_//_\_/\//\__//__\\\\\//\\\\\__\_\/\_\//\///\/\\_/_/\/_/___/__\___\/_/_/_\_/\_\//\/\____\\_/\\/_\/\__/_______\\_\//____\__//__/___\\//\\////\/\__\__\\___\\_/____\_/_\/\/_\\__////\\\\___/\\/\//_///_/\___/_////\//__/\__\_/_//\//_/\_\\__//\//_////_\_/\_///___//_\//_/\//__/\_/\\_///\\/\\_/_/_\/__/_\\\__\_/\//\\/_\___\_///_/\/____/_\____///\__//__///\_/\\___\_\_/\/\\/\//\_\/_\\/\\_\\/_//\/\_\__\//_\__//\/__/\/\___/\/_\\_/\_/\_\_/\__/_/\\__/_\__\__\_/\\\__\_/_/\\_\\/_//\_/_\/__\__\_\\__//_\\__/_/\/__///_/_\_/\\\__/_\_____\\/_\\\_\\\/_/_/\/___\\_//\_\_//__\\__/\_/////\___\__\/_/_\/_\/\/\\___//_/_\\__/\/\\///\/\___/__/__/\/__\\//_/_\_/_\/___/__//\\__\\\//\/\\\__/_/\/\\_/_\/\/__/\\/__//_/_/\/\///__//\_/\\\__/___\__\/\\/\_/_\\/_\_\/\\////_//\_\_//__\\/\_\\/\\_\/_\_\/__\\__\\\_/_\\/\/_\\\\//\_\_\\///\\/\/\_\\\\__\//_\/__/\/\___\___\\//\\__\__/\/_/\//__\/\/\\\////____///\_\_\\///\/__/_///_\\/__\__/\/__\\\\_\\_\/___\\_///\\_\_\\\\__\_\___///_\/_/\\\\__\\\_/\//\/_//\\\//\\//\/\__\//__\_/__\\\_/__\//__\//_\_/\/\_\/_\/\__/\_/_/_\/\/_\\\/\/_\/____\_\\__\\\\\_///\\\_/\_\//__\__\__//\/_/_/__\_\\\/\__/__\/_\__/\//\/\\\///_\//\/_/\\_____//\\/\\_____/\/_/_/__\\\__/\\_\//\_\_\_/\/\///_\__/\_//_\//_/\\\___\_\_\/_/_/_\_\//\///_\\\/\_\/\/\_/\_/\\/_//_/__//\/\/_\//_//_/_/_////__/_/__//\/\//_//\/_\\\\/\\__\\_\\___/_/__\\_\/__///\/\_/\/_\//__\/_\\/\__/__/_\/\///_/_\\_\_//___/\/_\_/\//_/\_\_\_\/_///_///\\_\//_/\\\/\\_/\/_\//_\__\_\___\_\\\\\/\\//_/\_/\//_\/_\_///_\/\\/___\\_\_\___\/\/\\////_\__/__\_\\/_/__\_\\\/\////\\___\/_\\\\\_/_/_\__\__//_/_\/_\\\__\__\/_\\\_\_\\/_///_/\/\/__///\\_//__\__/____\_//\/\\\\\_/\\/__\\__/\\\\_\/_\\_/_/_//\/\\///\//_/_\///_\/_/\\//\__///\\\_\/////_\\\/_///_/\\/\/_/_/\__\\/_/\_/\\\_\/\//_/\_/\_/\\\\/\/_/\\/////_/_\\\/\\/_\/\\__\_/__//\\_/_\_//_/_\_/\/_\\_\/\//\_/_\___/__\///////_\_/___\\/_\\\\\//_\\__\\/_/_//\__\_/\///_\///\\/_/\\___/\\\\\\///\\/\_\/\_\_/\\\/\//_/\\_///_/_/\_\/\//_//__//////__/\_/___\___/\\___\\/_/\//\\\\\\/\\_/\/\\/_////_\/___\/__\__/\\___\\_//\_\__\\__//\\\/\/___/\//\/\\\\//\//___//\\\///\/_\\_/\_\\\/\/_/__\\\_\_//\__/__\\___\/_///\\\/_/\//\//___/\/\__\\__\////\__/_/_\\_/\/\_/___/\_\\//_/_//\\\_\\\/\_\/\\//\_/__\\_/_\_\\\/_/__\/_\\\\\/__//\_/\//\//\/\/\///_\__\_\/_///__//\/\/_/\//_\\/\//_///___/_\_/\\/__/\\//__\_\__//_//_/_\\//__/_\_\_/_\/_/_//__/___\\\___\______/_/\//\_/_\\\__//\/_//\\\__/\/////_//\_\\/\_/__\/\/__/\\\\\/_\//_\\\__/_\\_\\/\__\\\/_/__/_\//__///\/\_/\_/_//\\_///\_\/_//\/_\\\\\\\\__\_/\///\/_\_\\\//_/\/\\\/__///\_/___\/\\_\/\/_/\/_///___\__/\/___/\///\///_/\\\/_/\_/\\/\_/\_///_/\\\\/_/__/\/\/_//\/\_//\//__\__/__//\\\/\__/\\\_\__/__/_\//_\\_\_\_\\/_\\/\_/\_/__\
```
**Valid:**
```
_\_/
Generator: +-
\\\_//
Generator: -
\/\_\_
Generator: --
_\\__/\/
Generator: +--
\\_\__\/\/
Generator: ---
\\\__\____\/
Generator: +-----
__\\_/\______/\\\_\/\/_///\\_\//\_\/_\_/__/___/__\\_\_//__\\_/___\_______//\/_//__\/\\\__\/__\__/_\/
Generator: ++++++++++++++++++++++-------------------------
_/\_//\_\\//___\\//\/\/_\\_\/\\/\_/__\_//\/\__\/\//\\/\/\\\/\\\_//_\/\_\\\/__/\__/\_/_\\__/___/\__\_////\___\/\\\_//\\_\__/\_/\//\/_\/__\//\\_//\\/\/_/\\/_/\_\/\_/__//__/\//_/\_\__\_\_/\////__///__/////_\/__/\\/\_\\/////_\//_/\\\/\//\\/\_\_////\\_\/\_\//_/_/_\\__\\\\\_//\\_/__//\_/\_\/\_//__//__\_\//\_///_/////__\\/\\/\//_______//_\//_/_/__/\/\/_\/__/\///_\_/\/////\/\__///__////_/\\\_\/\___\\\//\/\_\/\////\_/\___\\_\_/_\\__\\___/_\_///\____/\\\/\_/\/\\\\/_\/\/\\\/\\__///___/___\\_///\_/\///__/_/____\\/___\___\\/\__//_\/\\//\_//\_____/____/\/\_\/_\__/\\\/__/_/_/\__/_/_\\/_///__\\\\/_\//_/__\//\_\//_\/_\\_\/__/_\_\\_\\//_//_\_/_\/\\\\/__/\/___//__/_/\/_\/\//___\/_//\/___\__/\/_\//__\\_\///\\/_\_/_\\//\\_//\\\\\_///_\_/__/\_/_/_\\_\_/\/_//_\\/__\\/\\__//__\__\\\\_/\____\___\//\_\_//_/_/__//_\_/_///__/_/__\/\///\_\/_\_/_\\//\//\//\_/\\/\/\///\/\/\\_\//\__\\//__\_\_\\_\_//_\/_/__/__\_\\\_//\\/__\_\\_/\\_/\_////\/_\_\\__\/_\//_\_\/_/__\\//__\_\\\\/__/_\_\/_\\__///\/\_\/\_/\\_\\/\/_\\\//\/\//\_\/_/_/\//\\\/\\/\\_/__/_///__\\/\_\_//_//\//___/___\_/\/\__/\/_/\\\_\\/__\//\/__\_\//\__\/\__\//__\_/_\\_/____/\/_\/__\_\\_//_\\_\\__/_\/_/\\/\\__\\/__//_\/\/\_\/_/__/\/_\_////\\/_\_/\\\_///___\_/__/\/\__/\\_//_\_\_/\/\_\_/\\\/___//__///___\/_\\/_\\\\/__\//\__\\_\\//\/\____\/__///___//\__/_\__\__\\\\\/_\\\//\/\\//__/__\\//\\/\\\__\\\_\_//__/_/\__\_\_/\/\\\_\\//___\_/\/\___/_/\/_\\_\____/\///\/\\\\_/\/_\\_\//\/\/_/_\_//__\\\_\____\/\\_//\\\\\//_/_\_/\\_\/___\/__\_\_\\\\//__\\__\_/_/_\_\\__\_/\///__\/\/__/\__\_\\\/_//\_\//__\/\\/\\/__/\/\\\/____/_\__\\_/_\\\//__//_/_\\//\/\/\_/\_/\\_\//\__/\\/\\_\_/_/\_/_/_/\\_\_//__\/\__\\/_\////____/\_/\//\\//\_/\/_/////_\_\/\/\\////\/\\_/////_\___\\\\\/___\///__//\\__//_\\/\/_//\\__\\//\\/__\\/_\/_/_\_/\__//\__\\\\_/\/\__//_\//_\\___/_/_/___\/_/_\\\\__\_____///__//_//_//\///\//_//\\_\_\_/\/__/\\/\_\/\_///__//_//_\\///_/_/_/\\_\__\\/\____\__//////__\//_/_\\/__/\////\_/\__///\\/\//__\/__/_/_//\//_/\/__/\_/_//\\/\\___/_\\_/\/\_/_\__\__\/\/_/\__\///__////\__/\__/_\\_////////__\/_/____\/_\\\\/\__\\\_\///__\/////_\//\//_\__\/\\__\\_/\/\\//__\_/_\/\//\_\/\\/\\/\\_\\///\\\__//_\\_\//\__//_\/\_///\\/\/\_\//\/____\\____/_/\/_/\/__\\\_/__\\/_/_/\/\\___////__\\/////\___\\/_\_//_\\/_/\//_/\__\/___\__\/\//\/__\_\\\_\/_\//\/\//\/\\///\///\/\_\\//\_\\/\\\____\\\/__/////_\_\///_\\\\_\__\_____\\_///\//\_//\/\_\\_\\/\__/\\/\\_//_\//\\/\_\\_/__/_\/\\/\_///\/\\/\/__/\_\/\\_/\////___\\//\\_\/\//\//\___//\/_/_/_/__\//_/\\_\_\/_/__///\_\\_\\\\_/______\/\\__\/__/_\_/__\/\\___\_/__//\_\/_/_\\_//\/\_/\__/\\\_\\///\_/\\_/_\/\\/_\/_\\\/_\\\_/_\///\\/__//_\\\__/___\\_/\\_\__\\\//\_/_///\_//\/\/\_\\/\\/__\_____//\\_/\/\/\///\_\__\______\//_\\\\/_/\\/\\//_\\_/\\__/__\\\/\\\_/_/\__\_\//____\\\\//\\_/\\/\\\_\///_//\_//\\\/\__//////_/_\//\\\\__/___///_/_///\\_/_/\_\_\//\/__\__//\//\/\/\__\__\\/_\_\//\_//\\\///\\\/_\\____\\\/__\\_/\//\/\\\/\_//_/_\\\_\///__//\_/_/\__//___//_\//\/_\//\\///\__\__//\//\/\/\___///_//_\/\\_/_/_\//__//_\_\\//\/\_//_/_\/\/__/////\_/__\//\/_/\__/\_\\\/_\_/__\\_/_/\///_/\_/\/__/_/\/\/\\//\///\/\\/__\\_\\/_/_\_/\\//\_\\_\______\\_\_\////_\_/\\__/_/\\\\//_\/\_\\_/\_\__\_\\\\///_/__/\__\_\/\____\__/_//\/_\\/_//\/_//\/_/_\_//_/_///_\\\_//\_\_/__///_/\_/___\___/\_\_/\\//_\/_\/////\\_\//_//_/___\/\\/_//\__\__/___//\___/_\\\/\\_/_/_\\//\/_\\_//_//_/\__/_/_/\_\/_\\\/__\\___\___/_//\/_///\_/__/__\__\\\__/_//\\/_/_/__\\\\_\\_\/_\_\\/_/_/\/\\__\/_/__/\//__//_\_/\\\\_\/_\_//\__/\\_///_/\\\/\\/\_/\_\/\\\//\_/_\\_\\//\//\\//___///\\\//\__\_//_//\/_/\/\/__\\\//\/____/___/\__/\\_\_///\//__/_//_\\\\_////\__\//\_/_/_/\\_/_/\\___/\\\\_\_\///\_//_\_\\\/\/\_/__\//_\\/_////_\\_/\___\/___/__/_//_\\/_\/__/\\/__///\\/\/_\\__\///\//\\\\_\\_\/_\_\//\\/\\/\\//\_\\\__/\\\__/\_\\\_/_\\_/\\__/\\/__\\/\\\/__/\//_\/__\___\//___/_//\_//_///__/_/\\\_/_/\_/\_/__///_/_\_\_/\__/\\__/\//\__\/////_/_\\\\\/__\\\___\/___//__\\/\\_\\\\/_/__\_/\/_//\/\_/\\/\_\\/\\_\\\\/\_/_/\/_//_/__/\\\_///_/\/_\\///_\/\/__\\_//\\/\__//_\\__/_\//\\_\_\__\\/\/\/__/\/_\\\\__////_\/_//\\//_/\\/\__/_\/\__/\//_/\__//_\_\//\_//____\\\\_\/\/___\/\/\/___/__\///\/_\___//\_/\__\\_/___///\//_/__/___//_\/__\\\_\/_\\//\__/\____/_/\\/__\///_/\__\\/_/_/___\/_\__\/_\\/\/\_/\_\/\__\\\//\\\/\_\____/\/_\_/\\/__\\///_\_\\//__\_/__\//\___/\_\_//_/___\_/\\\/\\_\///\/_\\/_\_/_\/_\\\_\___\_\//_//\_\_\_\/_\\/\//_\\/\\__////\\__\___\/_/\_/\___/_\_\_\__/__\//\/_\\___\/\\_/\\_\\/_\\__/__\_/\_\__/\//____\//_____\__/\//_\////\//\//\\//__/__/\\\/_//__/\\\_\//\_/\\\\/___\__//_/\\/__\_/\__\/_\//__\_/___/__/_\///\/__/\_\\__/__\/\_\/\/_/\/\_//_\_\/\__\/_\\/////__/_\_/\_/\_/_\/\\_\\\//\_\\\/\_//\//_\__//\//\\\/_\/\/\/\_/_/_/___/\\/\_\\/\\_/\__\/\//////\_/\////\\__/__\\\_//\_///_//\/\_/\/_/\/__\_\__\//_/_/_\\\/\/_/\\__/\_\_\_\_//\\\//___\__/\___\_____\_/\\/__\\\\\_\/__/\\/\____/\//___/_//\/__////\\//_\/\_/\/\\\/_/__\\/\////_\/\/_\/\___/__/\___//\////\\\_\\\_/\////___/\\\\/\_/_//_/\_/\_/\\/\/_//____///___\/\_\_\\//_/\\\/\___\/_\/_/__\//__/____\/\_/_\_\/\//\\_//\///\_\_\_/\\//\_\\_/_/_\__\_\__\//\\/_\_/\_\/__\\//\\//\///\\/\_/_\_\\_///\///_/\//_/\\//\_\_//_/\/\/\\\\/\/\_\_/\//\_\///__\/\\_\___///_\_\//\_\\/\\/\_\\\/_\/__/__/\/_\\_\/\__/\\\_\_//\/_\\/\_///_\//_\\__/__\_//\\\___\__/___///\/\_\\_/\/\/\\\\/\///\_///////\_/\/\\\_//\//\_//\_//\\///_//\/\_\_\/____/\\_\___\_\\//\/\_///_\\/_//_\/_\\\_\_/_\\//\_////\_\_/\\/_//__\\//\_\/_\///\//_\_/\/\_/___\\//__//__\__/_//__/_/_\\_/_\_//\\_\\\/__///\//_/_//\\/_//__\_\\/\_\_\///__/_\/_\\_/\_\\\/\\\__//_///_/\_///__\/\/\_\_/_\/\_/\/\\\\_\\_//\_\\\///\\\/\__\___\_/\/\_\/\/_//_/_\/\\/\_\/_/_\/_/\\___\/_/_/\____//\\\_/\_/_\/\_/__\\\/\/\\\///_\\\\\\/_\__/\_////_/\/_\///\//_\/_/_/\\\___\\\_\//\_\\\_/____/___/_\_\/____\__//\__//\/_\/__\\/\_\___\\//__////__///__\\\_\_\__//_//\_/_\__\_\_/_//_/\\\\_////////__/\__\/\//\//\\\_/\_/_/\_\\///___\\_////_\_\\__/___\_/\_\\\_/_////_//////\\__\\/_\///__///__\_/_/__/_\\/\\\/\\/__/_\_\\\\/\_/___\\_\//_\_\\/\_\/_\///_\__/\_//\/___\__/\_\__\_/_/\\//\/_//_\\\//////\///_//_/_\_//_/_\\_\/\\_/_\\////_\_____\\/\/\_///_\/_/\//_\/\_\\_//\\__\\_/\/___\/__/\/\___/_\\_///\/\/_/\_/\\\_/___\__//_\__//\\/\__/\\_\/\\_/\_\_/_/_/_\\\////_/_/_//__//\\\_/\//\_/\_/\_\/\\___///__\\\__\\_//_/\__/_\_\\/\_/_/\\\///\\//\____\/\_\/\/_\///_\\//___/___\\_\\//\_\\/_\///___\\//\/\\_/\_\\//\\/\_\_/\\\__/_\_\_/\\\\_\\///_//////___\/\\/\/_\\/\\/\/\\\_\\_//\\_\__/__//\/\//\_/\/_//\/\/\/_//___\_\____\/_/\\/__/__/__\\\_\____\_\/_____\_/_/\\_\\__/\___/\_\////_/_\/\__\////_\\//_///_//\____/\_____\\\//\__//\\\/__//_/\\\__/_//_\/___///_\___///_/__//\_/_\/____\_//_\///_//\\/_\//\___\//\\_\/\_/__\_//\/_/_////\\/_///__/\/\__/_\/\/\//\_//_/_///////_//_\_/_\//\_/\\\_\_\/\\\//\\/__/_\/_/\_\\_/_/_\\////\/\_///\_/\/\\\___\\_\/\\\/_\//\/___/\/\_\_\__\_/\\/____/\/___\/_\_\\_\_/\\\\\\/_\/\\/__\\_//\\\//\\__\_\__/_\_\\\_\__\_/_//\_//__//\//___\/__/_____/\\\_/__/\/\/_//\__\///_\/\_\\\//_//_//\/\_\_/\\\__\/\__//\__\\_/__//_//_/_\\__/__\//\_\/\__/\\\_//\_//_/__\///_///\//\\__///\__\/\//__//\_\\//\_\_\_/\///__\\\\//_/\_\\_//\///\___/___/\/___\\_\\/__/\\\///\_//___/_//\\_\\_/_\//\_//_\___/____\/__/__/_\__\/\/_/\///_///___\_//\_\\\/\\//____//_//\\\/_/\/_\/_\\\/\\\__//\_\\/\\//\/_/\\_/__/\_\\//_/\\\__\/\//\\//\_/__\/__/\_\_/\\_\_//\//_/_\\_/_/___/_\_\\\\\_\_\///_\_/_/\__/_\/\_\_\_/_/_//_/_\_\/_\/_\_//\_//_\//\_\/\_/__/___\\\/\\/_/__\_///_/_///\\\/_///_/\_____\__//\\\_/_\\__/\\\__//_\/_\/_\/__\_\//_\___\/\/\\\__\//_/\\//_//_///\_\\\_///__\\/__\\_/_\/\\\\_/\\\/\\/\_\//_/\/_\/_\/////\\\\//__\_/___\/\_//_\/\_//_\///\\\\_\_\_\_\__\_/__/\/__\\//_\/\_/\_\/\__/\_////\/\/\_/\__/\\//\/_/_/\_/__\_/\/\/\_/_/\_/\\\\_\/////___/_\//_/\/_/\______\_\/___/\\\/\/\/_____/__\_//_\\\\_\//_//_\_\\\_/\/\__//\_/\__/////\__/_/_\/\/\\/_/\_\_\\\/\/\\\\/____\/\\\/__\___/_\\//_///_/_/_\/\\\\\_/\_/\\_/\/\\/___/\___\_\/_\/__\/\///_/_\\_//\_///_\_//__/__\\\\_\__\__//\\/_\//\\\//__\/\____/_\//_/_\\/\\\\\_/\_\//\__/\\_/_\/\\_//\\__/__/___/\/\/___/\\/\/\_/\_\\\_//\_\/__\/\//___/_\/____/\_\_/\\/\/\/\__\_//_/_\//\__\\\//\\/\_\/_\////_////\_/_/__\\\\_\//_\\___\_/\///_/_\\\//\__\\_\_/\/_/_\///_/__\//__\/\\___/\\\\_//_\/_\\\\\_\/_\\//\_\\//___//\\_\_/\/_/\/\/\/__\\\\__/\/_//_////\_//_\___/\/\///\/__//_\\_//_///\\_\/_\\\/\/\\\/_/\_\///___/\\\\\/__\/_\/\__\____//\_\_/_\_\\_/__\\\/\_/\////__\_\/_/_/\__\_\__\/\\\/\\//__\\__\/\/\\__\\\_/\\_\/\___/__\\/\\___\////\\_____\\_/\/_\\//___//_\\\//\_\/_\/\______//__/_\_//__/__//___/\/_\_//\//_/_\//_/\//__\/__///\_\\___/_///\_/\///__/_//\/\_//////_/\\_\\_\/\//\\___\\_///\_\_\/__\_/\/\_/__\___\\/__/\_/\_\__\//\\_\\\/_/__\/_///\//____/_\___\///_//\///_/_/\/\\/\_____\__\\//////\\///__\_//\/_//\/\\////_/_____\\_/\///\\__\/\\_//\//_\//__\/_\____\___/__\/\/___/__\_\\__/\/\__\_\__///_\//\_/__///\/\_/\_/\///_/_/_\___/___/_\_/\_/\//\/\\/_//_\__/\\\_/_/__/\///\//\_\/\\/\_\\/\//_\/\\_/\\\\/\_//__/\/_\/\/_//\\//\//_\_\/\/_/_\//\//\__////\\_\\\_///////_/\/____\\\\/_\\/___/\\\//\\/_//__\//_/__\__\___\/\_/\/\//\__/_\__\_\\//\\_\__//\_/\_\\__\/_\\_\/_\/_/__/___\\//_\_\//_\//\\/\/_//\/\\/__\\\/\///_\_\\_////_/\\__/_\\__/__/_\////\//\___/\\/_\__\_\/_\_\\////_////\/_\_//\_\_\/\_/_/_//\_/\/__\/__\/_//_//\\\\__\//\_/\_\\\\//\\\\_\\\____\\/\_\_/\////\_///\___/___\\\\_\\\//\\\\\\/\_\_\_\/_/_//\\/\___\_____\___\/__\/\\__/\/_\\/__\_/\_\__/_/_/_\/\\____\__/\/_/___\/\____\//_\////\_/__/\_\//\//\_/_//\\/\__\_////_\/_/_\/\/__\__\\///\\\\_\\_\/__\\///_/__/_\\/\\\/\\/\_\_/_\\////\_/\_\/\//_/\/_/\\\\///\_/\\__/_\/\/_\/\_//_//\__\___/\_\/___\/___/_/__\//\_\_\__\\/\/_\_//_\_\\_/___//\//\/\\/\_\/\/_/\_\/__\_\/_\__\/\_\///_/_\\\\/\____/\/\_/_\_//\/\/\//_//\\_\\/_\/\_\\__////\_/__/\/\////_//___\/_\\/_/_\_//\_/\\___\///_\/\\_///__/_\/___////_\__\_\__\\/__\___/_/\\\\\\//\\\/\_\/___//_\\_//_/_/\/\_//_/\\\/_/_\_\/\__/\_/_\/\/\_/_/\/__/\_/\\/_\_/\_/\//___\_____/\/_/\/\_\/\_____\\/___/\\__//\_____\\/\_\//\//__\/_\___\\/\_/_/\/\///\__//__\__/\\__/_\_\/_/_//__\////__\_/_\/_\___/_\/\__/_\\_\\//\/\\/___\___/_/\\\\//\___\\\_/_\_\_/_/\_/\/\___\//__\\\\_/_\////\_/_\/__\\/////_\_\_////_\\///__/\/_\__/\___\//_/_/__//_/\\//_//__\/\__/_\///_/__//\_
Generator: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
```
The generator output is just an example. It needn't be "ordered" as the one seen above (although I assume this to be more practical to implement).
That last test case may or may not be 10000 chars long and my computer may or may not be trying to find a valid parcours of length 500000 at the moment.
[Answer]
# [sed](https://www.gnu.org/software/sed/) `-E` - Validator, ~~82~~ ~~61~~ ~~59~~ ~~55~~ 48 bytes
```
:a
s/D(_*)U/\1/
ta
s/_U|D_//
ta
s/__//g
/./cF
cT
```
[Attempt This Online!](https://ato.pxeger.com/run?1=ZZw9rm3rUUXz0wxHgGQKMov4QYREwosoq4TMTwNsB0j0hAQJQUCPoDWcvWqMWesag9-957y91_q-qllzjpIQ__Yfv_3Hf_ivv_vFL__yF7_-73-p7q766ef6z9__7p9--av_-bO_-Puv39ZPfzR_8sc_V_95ff3u8_P8_K8_TfnD99_--av-tH7zV1-_-dv93r_zx__-zV_XVH91zfdzv6rn--nTX99_fP_l88uv5_vf__75_ec3n8_M57c9z4-fX_R-8_PD59fPF6bn-eh-43nM9y--v_b9j883Py_-_kXtE57_-fzj--X7sn3e50mfZ87na5_nls_0Uf2cpJ5jzOezvQ_4nOB5DJ96DlfPmTkT367nM89tPnceX_x8ezji54s8tnpP8dzgubyP_bzz-c9TL0_xPDOvyduf2_NsjrN_e8rE9dpKbbXqedDzSqrxPId3bh3KZ35qth9rzzmpzv7u-Vezjdgu7GGfb241thxFaX3z85A9fu1Re8s9W6feTq0c9g6jDoZ61YroEcPznf3LvqTpSK-U9ua9bY6y9gxPA57_PDfcquw9n6Nt4YbuPM99pMjVn7LR4N7H7RHqTjjbKi9a9isSe-RA2Xss8JaMB0XiTzf3p-e4e6K9ZqvsWsHOIFfVsrfa_91mzPZj1fwU3vdwp9lrbKU5GMrmgU_tOGck2nuKffTzkW2c_dgSjmXYKd6T1XZ7ogMaWc7XrDD53PNUjvto_2ngqYiLVcdYtrUr633InoHKr6IRwg7gFgr5bp2L4pSGUmnxM5w-vl5SQcVUr0d3xJ98xI5-M5B17vW8jqHj662FZUK3NlvdWlvTTZ-aMeJrqCpmqBLe4yhuCZFlMySP4rGZHTa_O1EylywqMJmpSnv2LqihhwxYp7TLcfEeiqfH0OBnaBju6lykrvBdZzA-iiu9zsVfdww0et6U-XFq-HmPUB1VDcZLlNhQVLud3h_aOtrljaC1NmSsd63o0sEhQpVcl3k4GFy8gAeZKGMtC_NL_lD-VjxmY_2QvZarFQCD559mnqHbhvNmaRGbFV3rDPfecQC0rfOBjdttwh7Zy2kafBhZrynn_cchZ81UWxfSe8iY9s_C1V_xQYA2miwkt6ky6SvCtK_hgDHBK74WK6A7OERf5nrRSJv3R9m4VXNxLWDMTi6D0abs44Tt202TnQDbK5rtUJoBzK_so21gbEDElLBUyKO1ypIB-XJrcILXntCMKJQlGjCT-4sVkpOz3liHfZqejeLdWtwWzCEqPmkEqZgY52rV5NT6ViR3dfOSKXA8bJbjdRMuGkDIW2D9q4cqBuBoLu3a6DJcMbVwzjYGNRAy8wpqr6RiMbTS8uowbwW6_57xHGMQXh4NQs8Ce6GbslIDOiD3lShT0knisczOQcPh0yNlGlh2UR027-Beh4XlZlCZdn3VdaCN64a518jA8Q6Y6Xm0gjhLag6MEvbg1Y2Qw60nE8wxEtZLQfmKbR4BU9y8YHVPXFRr-0JZFidVaipDtJNGar806IQNkoryWNgI9BtN2WU6vD3nk_R-4sqsDBgOnga14lbU4AZATgYg1cR2uPDq_PCHZFk2d9z00pWkZZa-dmGpZJHJU22fFZniCuBo84QMha3w_q0KTkrJ3qLqEh2P1V_z88SJxbfSktBF0eBF0OBdmy_9Sn7qPrxGTGTh2YjLurPUNaxDZKJwSKaEG_cMu1c1vObWkfxL8nVnrl5PYS9gWvlgObXh8Dnhg9fAgVXeCS-PO0ZfdikovsAzpjUrkhQNtnY5AH0slMCHAkWLEd468Te-jh5OO2QormWSoYDlumncsxbsw9lRwLp5sTY4bDZOMoyK89aYKRJkVB2v1iqEPolIg26Xm-iDPBlQXlx9demqQVyVI1XpC9sZWFhqs-Qvoa7uy1L1a6VgsldHgFj7HrCindOW8OeH3-yFBf2-keiA0MKCRCrEynmdg8T_Kvi3487auJNeUYroz0nNP00ear2QLZbEcmd0opOu-BBNxc9bZOgYCfA3sgwqWx0luOi00ct_IxfGfJMQA-Z6jcW7jbSJ1lZmso2BVui79es58GEXNDkluHYioKD0vMtcagdL9AApWv3nv5pFC5vYXzt_nLZVzx2iUY3q9g-boJyJm5qktM7jviN5SHgOKCXeHh_75O3mZuZwsPSSOfSU0n4n3N-yuWh9s2lKiW-MqYaH-Y7I3QEZFiRDxPzkGOBCq2VsUT_H2CUJKVukdMsXmlvZ1N3JNaJl7gkVvbvo4yqpFrPbQBjmVxf3eoMx21bceAKiNqeQ4m0XLTxpP8Vb9lqgg8SHh15QDWNuIO4cD-MasOe3mK4dy46xdy_sp_RtsUjvlWv04Ei3xInxSuE2rlGyCIDX9fK4FmHg7DPwYqCDs5ZaNAlC97H-vmHGVulQsjx1EHoNnZzXHaKNS6MOQS4YblCXuWPVVf-olfGpwXxu-3KWPg4MT7aJ0tdVtSyhFJBXkZBbAtoeKUOSLkxx9c98X40ZYpxGMO9kfeOO7cqTZdrcNWICitYkwKm5j0CHO9D6OXcj4EfQDnl0rCT8hh3GIS4iXjkWKROfHY9in0m4acFAVKbep6ahLhnllmHuxMDhMoFM5qBLBpFUR4hv2Slt4AO60tuYd9lIIFRq5jpbLFE6zjd2-_7OCIuMEkRKEaF8VA1wk-_zB4YFLXgPgjk4aTbxZrE99J9fDlblpInhnORHHKfLI3pCfGHj0tfkhqmoq_GU7DCHI4MGhMlxhxnRV1jImoA-b8WQGm6GgALC9CwM7J1JdE7GpR2oOU5ysKDOcsljeRiZ5mK89WTYkCEUTlr6CdUU6F1Oe-aJHiqr_QzhWqUoa_I94dK7mtTx_9I09asygwAFbmYAANb2uFFo8LpLeBD1Ag3c2kzA-h2v4ykhOI8ckWm8OqCQHK181UUjgWNUl0kePut3uKFDKfhWOO29sravgmMPvh7C3GHbNMLhg_S0HnMQRjuj4aeT22Xw38T-cAP8UjfXe-UFR4gMRgglyog4Ql3Uy4ipI5IKlsIreF4lv2mRprnmk6pDCk7hHP-E2kcqrc5iUBzzsrn8hZNuHmw3b7xcPkbZGD-liZeiikeH2dYOigvl_iM3r8gcLIO2PGRQN9NSDETfiGaaYjntatRamty8-TEgxOD0eut6uHyxtwH61qUwlLEn5WpTFnNy68JLhwh-rW7xH7ms7Owry3xoGi3ImECidbtLqRI-XpE6bRjwyyQgt4ZbtuzcDmwMzr9qJZXFY7MGyWLM22atXqxjunqyEjbG7Aa3aW-2bjlsYyjQjQGOn6OqSZf5WCc8KdvQybjLFg_bI5gbpyTKzFzZuIzCkfnWSkZswx4QN7SGZWxsis9lrMBEgkcQzTWI3cU7lw9tE4T8gi8M9pdRG3UhAIcR3AnaXLhYRVA-zKFk2Ap4VAWXcUQ-XiEL1hSMngZblBZi2CpVqtXW19m4zwgyQI40JBwIGEONvCjGyclvFwGzp14Iop3DvijjaJSgUWfEyOD1dp85JlbFae-IdcRKKI4oeS6k6ZdtGmG0LJGCKZS8blqBPVuPMfXNkMhKkBTBHBahx8FObG6lcdfAfX7Y1ub5v8ab-trY-NoZ-JIHvhrS6f3EFvz7B2iR8neupFN2dk2x84UkdZ2zV1uXvhF5XpIdsUKdZwU2042Q7Y2K731GtF7ARCKj3teeC0duNhQ-uDHYrB1NENZkiSu8al6ZYRaiev1iVDhI8cpHT-1Zgu8OaDK99ca8nddnWWELWWpqJn9eyHzKgYmySsh9OXO6Osd5biC0ns2r5X_irtVEYYEd3FyPd_SDTSMfElNuQAZ2nQ2huRo9TYBpME3mThrOjTm9FAoFhWWn7qxW46kdy5LELaqzn9ntkjxcN0rQdDNLUslwaGVClpaHlSojtgKVieEg1iXLtq3J3LV2rIVgLZ0BnTNch1PTW_taxUOWrK119rYJUCXc3fPshVChfzb7VagdmJMOG-9qpT4RMzc3zGbkYhCeRQp2nVzxB7bGeiZzPZgEK5eUIzwgPM8nIF6H7arYou9udyR3xSk-SHVlpWyHDjegguuuK59ecLUjH1FaZcvoSDaO1Er8Sqeml0kNH3THeJAzMe82Ak7YgTR3oaiqnYqRX18peTks9Y6zib0zgFSPGpDyeJ9Cvy2CatLH3iKsvBJBImpn3cPvGRd9tF-gzo1Bm6DPtICDUZnLna74LqpERy2z_la3wWgwI1WwkQaMxATzas9swBAFfLjZcywAnsomQVxYSXnJcyZFYq5EXVws2-EbJt1LGgUmVJocHmvJ6_F9NzqE5tmISxcuN74MAI5d4iqt75IBo2VHOldrHYMIYyTWRBrsxZz2mlpSwAFTCP9z5UkNdCSWLE0vO1aJBeuMe45QIzIs1BA9EJ2EYhlhJ32Kxr-CAtvLAzOgxDGLodVJDxnNmFFIeGL5at01HSIDyl9kt1Pc4mtgtZGeEUxK7z_m1rc5ZB_DqcWUjQ0ebk3rxgjlGJdBUfaAZECVj2bPWrvXrwrRGPL8-3bZOA5nAdluhD7ZtMpnRoksMJx-tCoZr9U1hoFSWmKFu7CPsyfJqIKDrUCK97xfC00ijluE5lKKS0WnLV-VsN2S0HDL5Ur8gzZ0hoB7dKyyFdco-caz05giZZS5EN76XvoV03NrK5ePC7glDthHvZIgKxQDHYKsMDsrK9k1qakJTmxZTerfWnoHXpX8MDM5sSUOHo4GzGjuDA189nKt4EvAsXWjMS1H5scj1hcYqLAJjjtIsNihOGDrm3pqsWeZvRxhdDNM1LEdp6HZIGy4RIVnl9O6QT2CcgOHQWpT8bIMcOUu74JVomNVpyshZAOufWJLJoUYxHQ7tnUpVQqJnKgI7vGhlqIc3jaFvFl2BHxqskC0mP_-QJtmtD9NlgrsFzFuUupVE14odyEMrFgWVg5-eQTyWE1cS6_kleMzaeWSNT4l5Y2CKcdoLAg3ACeoMI8a6S4g1QL3CVuVslu4FFxr43RjhNWNf2UDafcpLWVjKqCsM2wtPUXRJXYJlYM-WJ1wjxiF0I1DmktYXhlI-0d-Bbve6KKE2g2hBaMKzy44EpmwzNVBkKjQg8dsgS_TWil8MQedEVClzBp5XRdDO77Oe2Elp_CSruRVaym5gcHOhlC3aihcmCMz5TuRxXoxygvgijhQoLpP8bFBN0RIE5tgditzR8zyjvICmI04VjfJ8Q93jKwFW_1xGFsz7CCbgL10vnDXLhKTTAMVIXicmcEYJyOJncdp7QHgrgzKZrywPWK6W97IGujQ_OnYt8ajuxAlzNLUa3takYLQB1phgzsK6oh22moonO4Tz17dFJsfEMgUuqHXmorSlsNGVZyerapoYTZLKDMyMle6jQD13nOnPSVTZiIKrSYRJ54046VQ2shQqiKw_aa7bo1YbDKu4Q0Z-8Y89Ay67gCtLVOmqXdVysDMGmgASxTpSANXwOxYiSso_-RRuhvCXeHjdx1FCI3xTS5TrCjZvhB_0oBj7pVEQ0DkDjIkGgDRLkqZ9CVdEyiSScHi08CuEydX8eqSSbMOSPMtRG8sn5TL0FAN7WYBg7gcZOZNrQ4ix8SdV3NrNHKOuD_V6aX0NxfGNE5QbitFP5DqZvNlEDLDlF0qql-tcITbrrb-1L5EAu1rp3iP-SDq1GqlsGUxdArUIVE4qFSauGI7adO7CHrjoceadTARw0fQIwwZqySZea6xgJICV3HkqcwU2IDFUF2IkHkG-I06OPcwUCsdK1csHkcbcxtGa1uvAAJcet4WPYqYc21ClqRKVecEu3y_nYQoXsjb0ld0dRMFtrKyGEUz0bptpRtjapX70MkJtg7YZjAP8V7plsrZBdJ6K7G2NFj1pbezAn2_0h3T7JuEyejMgQult3F-LyE8vHt0FlwvOSOQqDs8-RVCxrvQJUFGoC2nwtwCdzI_oZgceG2JjI2bSAynTIwmTFF45FwMjZzGWJQXqcpoxa3mtSCWDy-Jv91xWtw8ZZgTMMFY942gDgHVlZAsee0jI2bnNmUlMgw0_YWiqmwYrv3lxcdkvAPesUENsHIyaqJtFSnPmOgkfHnKCauMQ7ECbc8wDmzgmKFlV3YSsrPsEqWTjYeHBN5tDLqdjBjJiAVTtZfrUW68dVTfvQ2bTf8mG4jGlK2ljg-q7zw8GPNuP7vohd3XbasHA1jv1J2-XBPnbuq3hzTCUlgKjFngh2l979eGaN0j7HGv9ltVv2wDwl6nI7qJjxcKGmqeYIsy4c4pIRXbhI9YjfqQs_Gm2JBesujQUgiybIkVQJtATq6b1dQ9bX87L8mUrvpypgKgRlTfjlRCDLA32NZZmlTjNKAVY9VZEsDakZGSydqWWYFcJwFC0wtnwcgCii2XBlhkjSsNSVnmigISXAiyLkcfcSRetdzKSlYn1Iub3YoWBt1wEoxYWrlEsinKrFiVyb29A2NYuDpTICJZwuMU_GZ54Zzt9i0maHT5kXeyVHRw0LnfWmlGyRwOhd-86u_OVMpfqRw2YATwWbFStdhzJmHqmXfQDfM2TnAbVlpVmyk7JCFkhz1s4adKziKFeFVjxCqlYz1liVX0Gbppu9VyCimVQup08l5ErdpAOa1zzDEU_98eht34AoYS2wsxdSDX9C0tC2snD4_tOAKdiKHtKCXvtcQ0cVqLLLdDgVfb4YTVLjdM3pWoVAJEvIWZXCX0CpLchqCexJS9Ey2uNo7eLs_h2M3gLpBjjik0sX6NeyRiysR5M4TjouNeHLNtf1dJn3XonjRMPeL8wzoiUZSz5WboidL8fQmJJBsVJWQKXvKMzIovPH9pV6U92ugn5Z5WnrEd8QH39_-r3v8B)
**Explanation:**
First following transformation is applied on the input: `\___/ -> ___`. This is done repeatedly, till the whole terrain is of following shape: `_/_/___\_\_` - rising from start and then falling till end.
Then following substrings are removed: `_/` and `\_`. Now the terrain is of flat shape `____` and it is just checked if the number of `_` is even.
# [sed](https://www.gnu.org/software/sed/) `-E` - Generator, ~~115~~ ~~107~~ ~~78~~ 72 bytes
```
:a
s/D(_*)U/\1/
ta
s/D([^_]*)_/\1M/
s/_([^_]*)U/P\1/
ta
s/_/P/
s/_/M/
ta
```
[Attempt This Online!](https://ato.pxeger.com/run?1=ZZrNqi5XEYbn5zIy0URC4UwcR3By4EzOKBULQb2BxEGuJRNBFPWO9Gr8vvU-T60WQZO9e3evrq56_wry01-__-Mf_v7tF1__5ovv_vVjdXfVN5_rb3_-4U9f_-rfv_317z98X9_8fL768nP1L-vDD_n929_Nd199Oa9LH-t1YbjwuT7tTVOfzp_q4_tCzvvHj_XpY_3ia47_y39-9s_pqQ-vt069_lX9-vXDvH57Hf2-_Pp1Oj--f5p5__ph3nfU-e194_u21z2vE-r8-D6l3ufO-3_v_5-DKj-8L_Ho69J57LzjvKDO3-q8pN6PvB7sOo-8z33fnre9Sz03n6sp8lw9Hcz3zPmefh9a54um8mmTC-976nyGT-SD3zeet6Wec5nD31_7_sfw_jpnVy69T8yj5zL_qByTkru9co7aqq0lB5-_Umz3lnbO6307r6fj71Nz9nT6c9qWLu-JQw8pu7bedHFr3qmezqf16TEVOFNqPGM-RbSYSBf79P_OhXcEBTyQSlLfqR6ENDVl3sBheHgoKQPLkKcy6FNWDc1IAed0sHkacL4vZTcoSz_Gqt-vGGY8xWec4irIDVg5PgeecdKYBU4mKCXa2Z4vPy9tp-ZIJ8-EcGPhs1PMWbdtGc3yLhOrNC2syIiXoNCq-fp0GcYe0gTx-WUqxQQnuTR8dvPcnucsmiZPLXrOOQ2L4XNxQJgQ5CIdC2a-nO6n7wC2hapUvYwYhCEyofTM8noQiUYUYHcAXQLP-vIcLA1vmOo41xSUQ62wBeesJqQvZacchwoXjV2eBNC9oHj0rot5ISLIBVJbaJw0XCGlUjHdA2Uzp-AOekQtasW7tYAL7OLv0MnWDn8LVIJ4fw7dz9HWGLo208rX0NN0jx5kkI32CfRAay64mWOnCYHXWhDoH3T66j10UUcb2UIdey_vIM7wosoIFT4Ihkpij11sJmqb1bdSQyOCuf16rsK8NIjn5KNSswaDFXDzqf7RADQ1wqVd2ElAUNa5LrLiitWtiskX6BVTBKuh5m0Rg_Heuq9H92GEILY27DJaM_JzlgAodtCzAtKRYsciLsoGtdSOjqf9UCIiEr1oxSmfqSRtcEAUch9BYLSGrqtI4ceKXnDVamOTdDp1oKELwwINiwesE1MsLexCn6bxpwgyqYm3M8XcLRcwrV73MKNpMwIJTSxfrbruhPCA8sJsfgHcFE7NTiwCmlqBRDELzTXt7pshRHbaQaZAFlQSaQRytMuNol0KMhgqjw4KSIjqVQEaTZ6_h22FONYlGdPY9BlSkuqqZ5EYgbD6UarMeC2uEQyQ0iZWchfyceXJZFQbB1uAFO95vpY0CTiGgBMw4lJ81OK0zVdl2G6T0PCVyZXoB2PoJQHf0SuVLbhGyDeavYMpXEaYG8Jb3dt5regFz22Eq4fBJXGQfcQrDhKgaOgkyNrMHmUG_TXbUx0c27Kb9L-V9N7wKuQHzmzFtnjj4SjAUDMcGvLZQ7U2vmxwbNVodMsx86MR0QUItdkExR0gWOxQFNjqpppa7Fl6LyWMaoaIStuRDc0G4cBNVGh2ydYY9RiUm3C4kVpXvF5GcOVbng2rtY6gTlUCyBpce2KbTAowGNOdWPpSopQkckGFcY-H2oqSvK0L-WW7I6BTswtEG_OfN7Ruxvh3yKYC54WN65Rq1WxeKHchBKxYFgIHHx4D-UrNqpZaySvHMxllkjU6ZcobAVPSaGwIX0CcoMMcNaa7DVJt4L7AFqXsFi4Fd7SrdKOF1aV_7QbS7lNKSmxqg7LKkF5aRTEldgmRAz5YnVCPFQpDNwqpLyF5pSHlX3uJ7HqpCxIqG0IbjGrzbIIjlkmWuX0wSNSmB8tsA9-ytbbxBQ96KSBK4Rp-XdeGQl_5XkjJRXiZrsyr9tLkRgyWG4a6oKFQYUqG5WFksV6M8CJwLThAoLjf5iODbogkTWQC7tbyDpvlHeUHIDbGsbpMXv1wx9i1IN0fydiKYW9kM2AnnSfctYvErKcRFUnwKDPEGJmxjr3HKe0bgLuWKPF4w_YY093yxqwBDvWfXvlWeFQXrAQuTT22p4CUCH2D1maDWwroWOy03RA43Rc8-XRdbP4nAulCl_RKU9Hakmx0Rfakq0YLvdmEMmNG5pPuRgB677nTVgnLdERDq05ExbPDeCCUMUJKUURsv-yuu0YkNmnX5A0z9qX5pmeiawgUWaZNU8-ulIa5a6AGbKLYiTThijA7duI2lH9ylOoGcAN89K4XEYbG1U0-plhRdvsC_OsGlJlPMhoSRG4hg6MRINpFaZmepKsDLWS2YavThF0ZZ67i1WUm3XXANN-G6NjyhXJpGqKh3SzIIC4Hy3ldqzcir4jLV31rFHJKzG918VLqmwvjDs6g3HaKeQDVePP1IGCGKLtUVD9GIYXbqbb61L7EBNp3nMZ7xAdQb68ChbRF0ymiDo5CoabStSu2k9a9C6PXHnrsWW9MRPAB9BiGtFWcTD9XWIiSBq6i5KnlFLEBiaG7JEL4TODX6si5NwYqpWPnisXjpo25G0YrWw8DIrj0PCV6BDF1xSHLpEpX5wI2-T6TJFE8Im-bvhZXl1HEVlYWrWhmse5YmcboWuU-dOFEtt5gu8S8Ee_hbts5p4BbpxORpUGqr3vLFdL3w90Rzb5MmKXO3OBC6x2cz60JD-8elQXVW58xkIg7NPlhQtq7ocsEuQBtcyqZ28C9nr-muD7w2BKhjZvICk7pGI2ZgvCFc0Eacxq0KD-kaqm1ajWPBbE8vEz87Y7Txs2LDH2CTDD2PRbUm4DqthAveewjY8zeryk7sWRg6I8oKsoGcuXitY9Zem_wXhlUAGsroyfKVuHy0EQl4eEpGVZLh2IFyswQDmTgZoY2u7KT4J3llGid2Xg4ZMO7gwG3sxTDGZFguvZQPdqNto7ou29DZnd-sxuIwrRbS918UH3r4WDEu7030Qu5r7ut3jCA9E7d6ss1ce6X-vTgRkgKS4E2S_iBrc_9WhOte4Qz7mC_RfVDNkjYUTqsG_t4REFNzQrSlNncOWVIRTbJR6xGfSNno00rQ2pJokObQoBlm1gJaLMhZz93V1P3tFydB2RKVX0oUxGgxqieidSaGMFeY4uyNK5GNUQraNW7JBBrx4y0nqxs6RXAddZAGHqhLAjZBsU2l25gMWvc1uCUpa8IIIMLRtYl9QHH2quSW7uS1QXqtZtsRQmDbjhrjEhauUSyKZpZkSqdO7MjxrBw9bLAiGQLb05Bb5IXrrLdfQsGjSo_5p1dKnrjoLxPrxSj9RyKQm8e_XdnKuEvVG5sQAjIZ8VK1caeKxK6nn5HuoFvI4Nbs1KqWk8JSTYhS_bNFt5V5ixciFc1QixSeqWnbLGIvoKu26ZbspBWCaTeSd4X0avWUC7WKXM0xf_bw5AbXwApkb1NTL0hV_ctJQtpxw9vtqMEJrGCFiqt3yuJO8RpJbLcDg28yg4VVrvcwLzbohIJJOI0ZvZTNr0SSe6GIJ6MKfkmRlytHT1VnuLYzchdRI65mUIR6wfdFyK6zCrvknBcdNyLV2zba7XuE4Xu2YGJR5R_WEdMFCW33AytaIefl-BIZqOihbDgAc-FWfHA-aFdlVLaqCflnlbW2FJ8iPv5T_b-Cw)
[Answer]
# Python 3.8 - Validator, ~~92~~ 88 bytes
```
lambda c,d={1}:1in[d:={g+1-a*2for g in d if g for a in(f in'/_',f in'/')}for f in c][-1]
```
[Try it online!](https://tio.run/##RVDRisJADHzfr9i3tndKWH05Cv0SI6Haqy7oWkpVRPz2msmeXGm3M0lmJuzwmI6XtP4ZxvnW8Hxqz7uu9ftF1zzDqw4xbbq6eR6@w7L9WvWX0R98TL7zsVcE3iovez0KkmKRQVG90ALx@@1mGbbz/RhPvz7UzuszjDFN5a2MabhOZVVVs7CQY2L9O2EWIVYOKpwhkAioE0yQMQxiTGeEiAzChWAoePGZEWWA0p9USyazDAsg6xFCtMEOPsBmK@wsCIgd/ctB8haWiQxmK3BWgqBsAsEy/FGYjYViAYsWuwbKDpLvQKff)
# Python 3.8 - Generator, ~~115~~ 113 bytes
```
lambda c,d={1:''}:[d:={g+1-a*2:d[g]+(f=='_')*'+-'[a]for g in d if g for a in(f in'/_',f in'/')}for f in c][-1][1]
```
[Try it online!](https://tio.run/##LY3RrsIgDIbv9xTcAc6l4ZybExKeBEiD4iaJZy7L1Bjjs8@WSaD8X/u3nZ7L@Tr@/k3zendhvaT/Q07iuM/uZayUb@uzda@hNV3a/djsh9iq3jmJUu9k20mfYn@dxSDKKLIoPSnmRKx6ChJQ7jch9ZtLDOIYfWeiN3F9nMvlJIxtBJ1pLuOi7qqM021RWusVA0ITINDfYAiIEIgZMWySFSJjg@yASmxkG3kQAKrkKcADkS@/Ogg2walvK6VqW91RF0CtUTN8AA)
Thanks to Kevin Cruijssen, Steffan, and xnor for -6 bytes.
[Answer]
# [C++ (gcc)](https://gcc.gnu.org/), 107 bytes (generator and validator)
```
g(char*x,int s=0){return*x?*x-47&&g(x+1,s+1)&&(*x=*x-95?32:43)||*x-92&&s&&g(x+1,s-1)&&(*x=*x-95?32:45):!s;}
```
[Try it online!](https://tio.run/##7ZxLb1zXEYTXml8xthGaehBt@YEgdmQvszGyyyodNBSJkgnItCDKiRBbfz3KzD39VfVICZDssuD4IXE493VOn@7qqjrz5OXLi@dPnrx79/z8yQ@PX9178@Dq@vX@5tFnd395dfn651fX9958d@/NxZe/PTt7fv7m/sMHN/cf3j07O7/35tHh7d999d0Xn3/95Rd3f/31@NPnZ2c3@tzFh5/76u7XH9188/bdJ1fXT178/PRy//snN6@fXv307e7knVdX18/fe@vpi6u/frvb/fj46vr87i@7O8d73d97cXV9@fL1q/2j/R//9P333@zu3Fz947Je768P73z2zW535/gsV4cfHh5@9/cfrl5c7s@fX74@HnZ@1gc/2J9dP9gfb@P67v6jR/vDbe8PF7hz9Wx/rgsc3v80rz/dn53tT9775NP14Tv95p8PN//i8vq8f7x78fAv61YOHzney5vDT8/12/X24Tpv7h7/dufl4cFfPzv/@DdP98d/b/Z5/fGD/dWD/ZsH@3nM28N/9@9fHf76dvf23S4qcpdRmbGLrIzDX3eHPw5/Ob55@H3F4Yfa3j@@c/xMHd/N2n48vpHryOMPx7e3Aypr@@g6YjvN4Y3DYYf/HY88XvjwRqwzbP8c/3e4@LrYOt/xTMdz1vGw43mDc3Kq3O4kttuo42dzneB4B9tp@lPbzcV2z31PfXRsn9me5vjMxYW3o6tv8XhgnzZy3cX2BNvDc9rjNbfXNl7cxXZOXUZX356@z923s/62DVM/XjJSa7RiO9F2yR6N7Tx9zTUOwTmPY7Y@ltxnaXTWe9uvak3EmoV1s9uRazTWcEQPLVfeTrJuP9at5hruWuOUa6ZWOKxnKOKgerxiBdEWDNsx6y/rItkzkiuU1pPnmmZF1rqHbQK21/aEa1TWc263tgauena2826h2I@@DVtPcK7TrVsI32GtqeJBg/lSiG3h0MOexQCvIesTKcS32Vw/bbe77mg9ZhLZsQK2qsOVaFlPtf5dk1FrPlY0bwPPdfqZaj3GGum@sY7sPuE2dn2fCtFcd7FOvX1kTRzzsYawGIa1itedxZrtUhz0RAbrq1Zg9ue2s/btbrG/TaCjqB8sUollTe0K63WSdQ898iuiOxDWAlwD1eG7xjl6cIKEEpribXFy@hih0lHco5dFduz8xCnW0s9ekOHstV2uF10fnqQwrdA1Nmt0Y6U1suk2Zr3EV0IlYqpHqXMPS3ENYYdl9iLZIr7TzFpsHFuK5H7I6BGoGJm1p2c9S0dDVteAlSmZZWXxrB48ckxP8LZoenFH6kHCA5/hBMOp@pHGffVf1zIg0feVtH5YNf3zuoVIRVV14u1SUmMB9dh1Ol/j2vObvUQ6syiMyV0r6DSD1SWUkMugHlYnOOWCPhEVpRjL6OSn@tPDnwQPtTFOai/DlQRALzz@pOZRdJPivGppdNkMxTWZwdet8irMLqxzZjoPr1vm4Uga/eEO65WUdX3jEKfmHm2yELmna0zyZ3RWH@WjC2h2TEaH3KoqpXntwGRehQOKCh7Ka0oFPTudIdI1lwdVaPf1FdmdrbIfnBRQ1M5@mE60GvZiha2rU03WCmB6gWZrUVIDev2CfUgbndgaRFQAlqLDI0mVAQbsg5MEB/Bad0iNiI4soEGvyfXGCiRWzsqNYdhH0mOi@tqkuDVgLKLoT1KCiBglzhWrVE5S3woSPzr1slcBy4PJYnl5hQMNGiGvASZ/ZfUolmFUKE9QuiiundSEc9bEdDR0kalRqHkkIrYTWpDywjBvBej6fS/Pogw2Xi4SBDmrYW@jm2CkqqFDh/sK0V4lqUpcDDPrIBuHVxYos5QOG1wUa7FjqoL4A010ZxBa7eRV2oGkXGdj7pXIGo5nuEAAylaKL1VIz0AN7NGXzg5k4VaHSSdHhTC5tKF8KG0aAffg6gIr7rtcRJL2AWVqnIhSqnIj2tJE1kCFnXeZngRv9Zw0jmSpZYxeJoW3y3my576Ulbtl6ITTOa1Ra2cr2hktAHByA0hiYs1wdK7WD@8jy2Byi05Ps6JqqaYvaVhCtYjKE8k8E2QElwAOab6LTA@sGqpyq8BKEfZ2F7yKW5HslFDdGTcgplSQugTVQYVdjQV1Vp125e9x745OLVA3PNFdhto6CvvoPFM1ktqYQK2OI9Z9gjBS9U@Vr/v4ipOzqJMPoBCdagO75CIEfsPrBgc1WAa15J3VYvZSjeIjSzVOCD6Mohu2dq/YbVDfqgp@o0CgRQHeUuWvuFzPYSWLrCMuwSTVAxi0m5R72s5u36uRcbfNwtoNh8Ota9cwCIyi98kqEzG9VFleSaoA9JUgl3kZik@XoqTp6epSsCtZZkrWaNBys6RC89LdWcPCIDYD/FXC7DpYPa5bil7Z3dZDxRDVRZxHasmPlKgeiCvyJDyOgNACCyBSQCw4L3Ujyn8h@FfwAmD76FxaKuqQOqp/6rzpyymy0U1i0DOyolVdOw/1pHY@TyBDKpE0@CuwTEdZU14Urp5pSm//p3DpZd58UWliuwAVxIFqPbwXZEGD8shUCySyqG@fzry7lgiTEebHGgVpzjOoS2qKgR5BL9Hxr/9IFnBBpD86U5GSRI9vIjtqiG7@YBII5y43Id5JmYd@B@SRptn4oEG6sY@uTt3UOlTXCuYoYfhgkKk2CTYHWnttUqVCyaOXAmWTPq2nUUAGirNHkfrZt9FwIUMsE3TjYAiEJEDZQEq6fHWahE34mWgjEsxdQkVzFjmdyUAlOxp5UbQl0ooyGqYXOxuXgCiT07TX6C4S8CQKpq/SfF8HqCBOVZ3SPWv6KYiZZLGiKadJKLfSoTOUOgLa4xBvI1hE7gXXkIMVugGcKB4pBwNAZ5YABBYIOQ6@HpztBB7uVxswmGco6j4xCtZvBrKYKvHRKpdMY2oMThgLSGHKJaUOsjm4qQDkNjEMGtWoq8539mvCxZQSyFg4UHgyqSjpWQ0V0bScEGJgB6nUsQ0yFZIO@vGCsCIp942kWIM0f6NanylaivpFv9t1lxIjoCgO20Wdui6q0X13vi84cGRACWYM7imF3zodKkO4RIw6plAe1G@Jec5ycRPlVLQu5JYE8AYcNp0HjDmtIPi5y0sDMjAHjGUXIlAd8kQwBiEpCL49h0yiZqUnaoYadT3MLZp7Fis9jynAIhRmNcoIZabOvWS1TvVV7yUseNt@jpJAJqIc0h1@W6QPzQ2DraFQ8ktYgjyF45ID0CWz0VIOZk6tEx0YbF10w5CUK@BIdQyE2OMUTUPXEwglUDBaWVKrSpCyNS26NlHc3SMBpSidpeWCiuFO0QurhqpWQ@kA07iMIyVBEcHCFTR@ox@znUlXbx0MTOpQ5uMQSkE/vSItaDaLOZEaSH/dql7LPJaYSqVIw6gCAK/a95sWeklPgAfRxuWsVEKnqTabtC88BQjWKRExi/YUxVd1NHQojYYKDqU6SmlHOWgUN6t2kLQJXpTUEcqvNdKDCL@EZoZbjs7wgvQByQV@QiWi2UyUbPHSRQJgxZ48wdDKuhWC1ka/TSQ1L07pm1IDLRBIkjJb5rZPxO04X6h@w7vQkla6OYNe1iq0PBBC7QUqbfqB1Uc55cGoN73SqQeSaE1yC8GVGwMRmhbcnaOF2QoPQ4HLU01LmN6LU84WWljMR2q1IAuml6hWU05dIyTep1pNWE3Js4nDIeC5/Mv3@eRGe9wc@q@FKLs1OrLFbCSRVuKOoLLNTaIEx6CG0j04KmCGZF/YQ3optfBlksE6qnhW5oa61RwWiU38uFwq1E9RtV2Do8wDlHTPbvkH@5riohoRmBaA@3MQgyhy6EW@aDPrMSXbFIfILCfOlsGmUHaG5o1MJkJ3aIOSWqm5YGOLRdKNm1MWLTZJFgn1SC0YhkJelgiRA4MppvBI35CuQhkmSlJyebhrC1XLMP0VRgAsRqwdZAsXF0axobwwByETUvnCcDDVw/XHpW8NmiVgVL1AYT0TSj7tfkKZPRHO0vRUUxh2XEAGlPgTKkW6LWflT2l7kCxuP3PwbSFS3Rm21B9juTAJG8DqkD@DLkTPiI0ozIiFuKypauVAG@o4EbLkuBiuElxXEYPS53AyDYlR4Cfcpql9tQmkDINTmqAfA751dmuHo3a7433vPtn/4fL68tXj1z@9@np//2K3W8vh9P2Li@On1@2@f8TxEAmx7x@2/TJFXnxw7PaJhqBoHxqncKVBOy5T3/RaDgcp@eraGZ0PrvxvXxf/6XW4xUFRi@dQdiK@SlUdZQ2vgpS9ph0kVbIEK0tgLdL8Q2mJtQwfUopDijm6tswLaZMAzQkpDN9LYPGIUeFkYUE0H/TchBkpUY@ry5CInFG0tMBpzZEJvxCOCanBofZC96yYKENPmqIULZRlKrmLiEXHmDyu5kVMjZEcfb5axDB6HAxZ0OSbikhhqrZPSG1TgS5nHnQx@djEM8pTCfIm2cLy4mzoQRWbJQ@g/GR0QKEGNAQUZRMzGJJgUKXhgakUHWMGVrPYDIKGLWVF8bXDjkgRwVretlRpaZOHkdEbthSaz5DMbCg7adZl0So8hT3hKTog3Ug0vpQcKLOuSA93JZjVFDrieglVlqpXRJ3CfVpmU@aZsjfJxzy9LthrVAa0StUgUlQG@Sw9KAbKKfW9ZRYmddNFCMIP2IMVs6E1OyXbxvDB0fikQna0106kaqAF9sr1MOWggK8Iexr4bI7Adrs8gZdM2mbvatDEMaBBlelTcX8JUmH0ajiYhnWZKDoRBKokP@PdQAgPoqJJSqvoQY5J8miO3gFZDRMr7gM127YKhzp2VtApZ9rTPcw@djyE/LBSSVMmOLBapA3S6ghVYOBuYkqRGgBxmJMBZSSBcNL75KshuQaakwGavA7Ct7RK8iLGIIABfxL/kB7LBF1Ni0@oTw5oDEsSFg5TNKQ98pGmd0Thsa2BpR1SZbQkRNTKH20CBxMWwGEY@QUEhpnCGan7PpKe2j6sGzJwFNrDCMPmpkvx0KXTvlXhaUnAsvuTTkFNERK4QhSwla1Q@9ecugUlYIuSfgSXTpluZTfGuCbtCM8M7RDrVhlcshAG1rDU446y3EXApJYYMshn0gKZxAyLJN8Y40lrohogf2RnWDaWdL4aSo52XxC0WIhzyAwIH6BPmTcQAly7ys2dN3DIsUFcR81IEdslb2iMRdTD0uCixDtBLecHl5W9xjxvyM4bw7gdilOoNBlKEdDoGWi2Ssa86YkQR5JKlUi4aXpcfgxbrvELlaQUak/YlD@SHo1kqHcN8x8R8jHZOXtCP8g@SQERX@WdDGJCShVc5Eu5arFhwqA15HgrCZsV3m4gfKZdDvIxT440T7OW4IuAo1gobf2pIR@pxUh1@gKUwyma0D3c4DDJe5dOyHgwnLthkRi5JmQOGoQRBqxhJFeclfkeu3GnAd1tl2uZWBlWo7luO4HR4UOu1wQ/pjZKpdgGaG8sGaWNNsLnSh3hoCqJFjldeMP3JLlQZhNJI2IwBzMx6Xtt1zLTm2lJBvI5pZ2e7Lgp2@ulnRX0iwycFaFtLvhi3QzXqbJHfCL@wb8xGzKvYkuVr0QcBG4iNCLgxJBHUbu0KEpiZwolinUKbyYRIY0GQ6ZDKUBeJlFoM6EsiaW@LwSUyQze55bi5aTXWSdMb6KTqYpEAehOWCX8tVkWoqlLegu/fNp7Ct0lK3uEfUfyhLOTR20ePlAMNaAHbtNEm5yTGng0hSx73Zr1hGAtATzWZmgLXGj/nyNclE@YQRjFusyIIEzIYjrYFe38lAohaVv7BAFcCo7MHIRO2QVQMuLIxKoGptduaN1Z@QNjhbhgw7HwSh68PpSb@0kENIiX4elL7ZkDneO90M6sk2or8SPZMFoyvFlHC6mJhqICwIOs8Ba0SCnp6v@GcldGwIIO1kVTG/fg4CFWR/fk3QA1im8IG/hWtA8yNEVlNF1YNJGf5SOW/mQPcq8lLXpSU/TQIrYB8Vk9UhvDmxm1bSAsGZS2QEhoCxd@5Cx5h@w3GZu27ANQ4y1XOBydNBIBTBl6w6s73EakLMy2OSQY28tc6FmSJySG5HIYNCqpxUxx0eJuSswSyQoRIs0VeUDFuWiHRMgCUNq3WzE9a4BG5U3UCG@R6A@X8l@lcUKIiY1TO1QMiwubkcJkGSu9hjEmHTIaMPOOZW@DNvazhVr@Ukl7tHplNbRKdRHhcYDp0WlDSWW42ZfQBL6hesjyqD1UWDSUdkVKhONFe13Kzfb0osEdlLANeiKcWcqPNrdRCL6eONO8tWxuI7XpQyg5PZ3DGgrF7pWTFoViEEneVlIyiXqraJ2watpKIL8K5YHGR/uk9IihHePa3y7xOOULUbsAlPS@B/WHKd1abSzmPkSQE9EFS5GER8NA@Urt1RK1Lq1aHYZ3zboAyfE0U7S2bEOkSAWQ20cML0bh9IYumQMybQopO0VFsAi/i3JO7TsPbQMM9XkxpCZvq7b9aLB@FVNyraFJpDB66jsvtEMWGp0tNN67YclJOze0fIPWs2xYQgBWX0Ubqb2jyf6WKD95DEpPlv1yyeALDCK861X8Tcr/n0pVjKJhizU8ejz326VtyuWvg8AJMjY2ljuR9Aa/kKtcw6tBt8YdbqrMzuSw0MnMLR3RDu6yqDC@5yBt5FZkUCfGfhvvKXQHPsz90AyjH9E2Jfsrx5evpBUJNnGN1kc6zmDfQn4SukpyrMiCsQtD32JSI21pQzsKXarPl7Q2Se@xqQTJLuzaNWbIsa2w7GTXRu6yy6aGE0TgXSquTUg0B@gkk1t11kv5kP3YleNqafLEikipX5XFxJ0nGCu0jk/3/SDViVeROKQShWwB5aa796ZJP6mlpdKG6hiWt8G0CMPO/jrtidFeT9M8yG@6mSjv5wxv6Ri2rgEFS42A7CFy3oEjyx0GuypojcYmQn9tSQzJaezJD0nZllnLvi/vg83wJtIYTsAa2@/oooeNze6tGnqJvvAj3le5KWzaT@WezKJ4lr5NI2UmRnlxdzY9QjBs2FbVxMgamk5kAops@RYdOnZGiFkOfyMTxALkStkjJk6nvLknS9Z4sV/S67SGB7YPc9nhb5pK2Rdiaj1iVNizJGcEX08wvg@n5tcKhAmYAf5LclB7d7SpU/2WNxNpXxKng30WHGTd2@9ulb20zVJSjca/ZE1Ug21v8zAaWaTB1i/@V0nC3zogMgUSXpvC@fKiOtnLFjl3r7iD90ZWameWbfE5HJ1qBMSicFGyh5km7ZjHA6uvpVAWNqUFeKBr14XS9GRpE1e6QJrI@KAPc/tul41qXQ55qgaHEyb7K4YEXsNvIh61vHGL/Qeheq8vBmMSsQJ5H6xsL/pek6EDpzq3GkPkfQzyHXhTrpIE8rbq0dz2WqPyyseJZbFmlhf9B@k1IEcZU2gvwVjuChGxiMpVLEJtgfW31I0sZMbbmzzlAPV2ZjRlbThlp/5wJQpCjGdG7k15JENGCr64KmuEZ1ooZkMdxLu33lcNZ9aAibqf0aH9N3a629ft6/Z1@7p93b7@n18Xt6/b1@3r9nX7un39r6/dP588e/H4@c27i2cvL1/9eHVzc/W3y38B "C++ (gcc) – Try It Online")
# [C++ (gcc)](https://gcc.gnu.org/), 71 bytes (only validator)
```
v(char*x,int s=0){return*x?*x-47&&v(x+1,s+1)||*x-92&&s&&v(x+1,s-1):!s;}
```
[Try it online!](https://tio.run/##7ZxLb1zXEYTXml8xthGaehBtBQGC2LGzzCbILqt00BAkSiYg0wJJK0Js/fUoM/f0V9UjJUCyy4Ljh8Th3Nc5fbqrq@rM8zdvLl49f/7hw9vz598/u3n07snV9d3@9tuvHv58c3n30831o3d/ePTu4je/PTt7e/7u8dMnt4@fPvzll8Nbv/v12dmt3r14@vDrz26/ef/hi6vr569/enG5//3z27sXVz9@tzt55@bq@tV3u90Pz66uzx/@vHtwvOj@0eur68s3dzf7b/d//suf/vTN7sHt1T8u625/fXjnq292uwfHm7o6/PD08Lu/f3/1@nJ//ury7njY@Vkf/GR/dv1kf7zm9cP9Z9/uD3e0P1zgwdXL/bkucHj/y7z@cn92tj9574sv14cf9Jt/Pdzp68vr8/7x4cXTv61bOXzkeC9vn72@enF4560@sf3qzeHx7l6ef/6rF/vDv3n9@ZP91ZP14e0D7w//PX58dfjr@937D7uoyF1GZcYusjIOf90d/jj85fjm4fcVhx9qe//4zvEzdXw3a/vx@EauI48/HN/eDqis7aPriO00hzcOhx3@dzzyeOHDG7HOsP1z/N/h4uti63zHMx3PWcfDjucNzsmpcruT2G6jjp/NdYLjHWyn6U9tNxfbPfc99dGxfWZ7muMzFxfejq6@xeOBfdrIdRfbE2wPz2mP19xe23hxF9s5dRldfXv6PnffzvrbNkz9eMlIrdGK7UTbJXs0tvP0Ndc4BOc8jtn6WHKfpdFZ722/qjURaxbWzW5HrtFYwxE9tFx5O8m6/Vi3mmu4a41Trpla4bCeoYiD6vGKFURbMGzHrL@si2TPSK5QWk@ea5oVWesetgnYXtsTrlFZz7nd2hq46tnZzruFYj/6Nmw9wblOt24hfIe1pooHDeZLIbaFQw97FgO8hqxPpBDfZnP9tN3uuqP1mElkxwrYqg5XomU91fp3TUat@VjRvA081@lnqvUYa6T7xjqy@4Tb2PV9KkRz3cU69faRNXHMxxrCYhjWKl53Fmu2S3HQExmsr1qB2Z/bztq3u8X@NoGOon6wSCWWNbUrrNdJ1j30yK@I7kBYC3ANVIfvGufowQkSSmiKt8XJ6WOESkdxj14W2bHzE6dYSz97QYaz13a5XnR9eJLCtELX2KzRjZXWyKbbmPUSXwmViKkepc49LMU1hB2W2Ytki/hOM2uxcWwpkvsho0egYmTWnp71LB0NWV0DVqZklpXFs3rwyDE9wdui6cUdqQcJD3yGEwyn6kca99V/XcuARN9X0vph1fTP6xYiFVXVibdLSY0F1GPX6XyNa89v9hLpzKIwJnetoNMMVpdQQi6Delid4JQL@kRUlGIso5Of6k8PfxI81MY4qb0MVxIAvfD4k5pH0U2K86ql0WUzFNdkBl@3yqswu7DOmek8vG6ZhyNp9Ic7rFdS1vWNQ5yae7TJQuSerjHJn9FZfZSPLqDZMRkdcquqlOa1A5N5FQ4oKngorykV9Ox0hkjXXB5Uod3XV2R3tsp@cFJAUTv7YTrRatiLFbauTjVZK4DpBZqtRUkN6PUL9iFtdGJrEFEBWIoOjyRVBhiwD04SHMBr3SE1IjqygAa9JtcbK5BYOSs3hmEfSY@J6muT4taAsYiiP0kJImKUOFesUjlJfStI/OjUy14FLA8mi@XlFQ40aIS8Bpj8ldWjWIZRoTxB6aK4dlITzlkT09HQRaZGoeaRiNhOaEHKC8O8FaDr9708izLYeLlIEOSshr2NboKRqoYOHe4rRHuVpCpxMcysg2wcXlmgzFI6bHBRrMWOqQriDzTRnUFotZNXaQeScp2NuVciazie4QIBKFspvlQhPQM1sEdfOjuQhVsdJp0cFcLk0obyobRpBNyDqwusuO9yEUnaB5SpcSJKqcqNaEsTWQMVdt5lehK81XPSOJKlljF6mRTeLufJnvtSVu6WoRNO57RGrZ2taGe0AMDJDSCJiTXD0blaP3yMLIPJLTo9zYqqpZq@pGEJ1SIqTyTzTJARXAI4pPkuMj2waqjKrQIrRdjbXfAqbkWyU0J1Z9yAmFJB6hJUBxV2NRbUWXXalb/HvTs6tUDd8ER3GWrrKOyj80zVSGpjArU6jlj3CcJI1T9Vvu7jK07Ook4@gEJ0qg3skosQ@A2vGxzUYBnUkndWi9lLNYqPLNU4Ifgwim7Y2r1it0F9qyr4jQKBFgV4S5W/4nI9h5Usso64BJNUD2DQblLuaTu7fa9Gxt02C2s3HA63rl3DIDCK3ierTMT0UmV5JakC0FeCXOZlKD5dipKmp6tLwa5kmSlZo0HLzZIKzUt3Zw0Lg9gM8FcJs@tg9bhuKXpld1sPFUNUF3EeqSU/UqJ6IK7Ik/A4AkILLIBIAbHgvNSNKP@F4F/BC4Dto3NpqahD6qj@qfOmL6fIRjeJQc/IilZ17TzUk9r5PIEMqUTS4K/AMh1lTXlRuHqmKb39n8Kll3nzRaWJ7QJUEAeq9fBekAUNyiNTLZDIor59OvPuWiJMRpgfaxSkOc@gLqkpBnoEvUTHv/4jWcAFkf7oTEVKEj2@ieyoIbr5g0kgnLvchHgnZR76HZBHmmbjgwbpxj66OnVT61BdK5ijhOGDQabaJNgcaO21SZUKJY9eCpRN@rSeRgEZKM4eRepn30bDhQyxTNCNgyEQkgBlAynp8tVpEjbhZ6KNSDB3CRXNWeR0JgOV7GjkRdGWSCvKaJhe7GxcAqJMTtNeo7tIwJMomL5K830doII4VXVK96zppyBmksWKppwmodxKh85Q6ghoj0O8jWARuRdcQw5W6AZwonikHAwAnVkCEFgg5Dj4enC2E3i4X23AYJ6hqPvEKFi/GchiqsRHq1wyjakxOGEsIIUpl5Q6yObgpgKQ28QwaFSjrjrf2a8JF1NKIGPhQOHJpKKkZzVURNNyQoiBHaRSxzbIVEg66McLwoqk3DeSYg3S/I1qfaZoKeoX/W7XXUqMgKI4bBd16rqoRvfd@bHgwJEBJZgxuKcUfut0qAzhEjHqmEJ5UL8l5jnLxU2UU9G6kFsSwBtw2HQeMOa0guDnLi8NyMAcMJZdiEB1yBPBGISkIPj2HDKJmpWeqBlq1PUwt2juWaz0PKYAi1CY1SgjlJk695LVOtVXfZSw4G37OUoCmYhySHf4bZE@NDcMtoZCyS9hCfIUjksOQJfMRks5mDm1TnRgsHXRDUNSroAj1TEQYo9TNA1dTyCUQMFoZUmtKkHK1rTo2kRxd48ElKJ0lpYLKoY7RS@sGqpaDaUDTOMyjpQERQQLV9D4jX7MdiZdvXUwMKlDmY9DKAX99Iq0oNks5kRqIP11q3ot81hiKpUiDaMKALxq329a6CU9AR5EG5ezUgmdptps0r7wFCBYp0TELNpTFF/V0dChNBoqOJTqKKUd5aBR3KzaQdImeFFSRyi/1kgPIvwSmhluOTrDC9IHJBf4CZWIZjNRssVLFwmAFXvyBEMr61YIWhv9NpHUvDilb0oNtEAgScpsmds@EbfjfKH6De9CS1rp5gx6WavQ8kAItReotOkHVh/llAej3vRKpx5IojXJLQRXbgxEaFpwd44WZis8DAUuTzUtYXovTjlbaGExH6nVgiyYXqJaTTl1jZB4n2o1YTUlzyYOh4Dn8i8/5pMb7XFz6L8WouzW6MgWs5FEWok7gso2N4kSHIMaSvfgqIAZkn1hD@ml1MKXSQbrqOJZmRvqVnNYJDbx43KpUD9F1XYNjjIPUNI9u@Uf7GuKi2pEYFoA7s9BDKLIoRf5os2sx5RsUxwis5w4WwabQtkZmjcymQjdoQ1KaqXmgo0tFkk3bk5ZtNgkWSTUI7VgGAp5WSJEDgymmMIjfUO6CmWYKEnJ5eGuLVQtw/RXGAGwGLF2kC1cXBjFhvLCHIRMSOULw8FUD9cfl741aJaAUfUChfVMKPm0@wll9kQ4S9NTTWHYcQEZUOJPqBTptpyVP6XtQbK4/czBt4VIdWfYUn@M5cIkbACrQ/4MuhA9IzaiMCMW4rKmqpUDbajjRMiS42K4SnBdRQxKn8PJNCRGgZ9wm6b21SaQMgxOaYJ@DPjW2a0djtrtjve9@2L/x8vry5tndz/efL1/fLHbreVw@v7FxfHT63Y/PuJ4iITYjw/bfpkiLz45dvtEQ1C0D41TuNKgHZepb3oth4OUfHXtjM4nV/63r4v/9Drc4qCoxXMoOxFfpaqOsoZXQcpe0w6SKlmClSWwFmn@obTEWoYPKcUhxRxdW@aFtEmA5oQUhu8lsHjEqHCysCCaD3puwoyUqMfVZUhEzihaWuC05siEXwjHhNTgUHuhe1ZMlKEnTVGKFsoyldxFxKJjTB5X8yKmxkiOPl8tYhg9DoYsaPJNRaQwVdsnpLapQJczD7qYfGziGeWpBHmTbGF5cTb0oIrNkgdQfjI6oFADGgKKsokZDEkwqNLwwFSKjjEDq1lsBkHDlrKi@NphR6SIYC1vW6q0tMnDyOgNWwrNZ0hmNpSdNOuyaBWewp7wFB2QbiQaX0oOlFlXpIe7EsxqCh1xvYQqS9Urok7hPi2zKfNM2ZvkY55eF@w1KgNapWoQKSqDfJYeFAPllPreMguTuukiBOEH7MGK2dCanZJtY/jgaHxSITvaaydSNdACe@V6mHJQwFeEPQ18Nkdgu12ewEsmbbN3NWjiGNCgyvSpuL8EqTB6NRxMw7pMFJ0IAlWSn/FuIIQHUdEkpVX0IMckeTRH74CshokV94GabVuFQx07K@iUM@3pHmYfOx5CflippCkTHFgt0gZpdYQqMHA3MaVIDYA4zMmAMpJAOOl98tWQXAPNyQBNXgfhW1oleRFjEMCAP4l/SI9lgq6mxSfUJwc0hiUJC4cpGtIe@UjTO6Lw2NbA0g6pMloSImrljzaBgwkL4DCM/AICw0zhjNR9H0lPbR/WDRk4Cu1hhGFz06V46NJp36rwtCRg2f1Jp6CmCAlcIQrYylao/WtO3YISsEVJP4JLp0y3shtjXJN2hGeGdoh1qwwuWQgDa1jqcUdZ7iJgUksMGeQzaYFMYoZFkm@M8aQ1UQ2QP7IzLBtLOl8NJUe7LwhaLMQ5ZAaED9CnzBsIAa5d5ebOGzjk2CCuo2akiO2SNzTGIuphaXBR4p2glvOTy8peY543ZOeNYdwOxSlUmgylCGj0DDRbJWPe9ESII0mlSiTcND0uP4Yt1/iFSlIKtSdsyh9Jj0Yy1LuG@Y8I@ZjsnD2hH2SfpICIr/JOBjEhpQou8qVctdgwYdAacryVhM0KbzcQPtMuB/mYJ0eap1lL8EXAUSyUtv7UkI/UYqQ6fQHK4RRN6B5ucJjkvUsnZDwYzt2wSIxcEzIHDcIIA9YwkivOynyP3bjTgO62y7VMrAyr0Vy3ncDo8CHXa4IfUxulUmwDtDeWjNJGG@FzpY5wUJVEi5wuvOF7klwos4mkETGYg5mY9L22a5npzbQkA/mc0k5PdtyU7fXSzgr6RQbOitA2F3yxbobrVNkjPhH/4N@YDZlXsaXKVyIOAjcRGhFwYsijqF1aFCWxM4USxTqFN5OIkEaDIdOhFCAvkyi0mVCWxFLfFwLKZAbvc0vxctLrrBOmN9HJVEWiAHQnrBL@2iwL0dQlvYVfPu09he6SlT3CviN5wtnJozYPHyiGGtADt2miTc5JDTyaQpa9bs16QrCWAB5rM7QFLrT/zxEuyifMIIxiXWZEECZkMR3sinZ@SoWQtK19ggAuBUdmDkKn7AIoGXFkYlUD02s3tO6s/IGxQlyw4Vh4JQ9eH8rN/SQCGsTL8PSl9syBzvFeaGfWSbWV@JFsGC0Z3qyjhdREQ1EB4EFWeAtapJR09X9DuSsjYEEH66KpjXtw8BCro3vyboAaxTeEDXwr2gcZmqIymi4smsjP8hFLf7IHudeSFj2pKXpoEduA@KweqY3hzYzaNhCWDEpbICS0hQs/cpa8Q/abjE1b9gGo8ZYrHI5OGokApgy94dUdbiNSFmbbHBKM7WUu9CzJExJDcjkMGpXUYqa4aHE3JWaJZIUIkeaKPKDiXLRDImQBKO3brZieNUCj8iZqhLdI9IdL@a/SOCHExMapHSqGxYXNSGGyjJVewxiTDhkNmHnHsrdBG/vZQi1/qaQ9Wr2yGlqluojwOMD06LShpDLc7EtoAt9QPWR51B4qLBpKuyIlwvGivS7lZnt60eAOStgGPRHOLOVHm9soBF9PnGneWja3kdr0IZScns5hDYVi98pJi0IxiCRvKymZRL1VtE5YNW0lkF@F8kDjo31SesTQjnHtb5d4nPKFqF0ASnrfg/rDlG6tNhZzHyLIieiCpUjCo2GgfKX2aolal1atDsO7Zl2A5HiaKVpbtiFSpALI7SOGF6NwekOXzAGZNoWUnaIiWITfRTmn9p2HtgGG@rwYUpO3Vdt@NFi/iim51tAkUhg99Z0X2iELjc4WGu/dsOSknRtavkHrWTYsIQCrr6KN1N7RZH9LlJ88BqUny365ZPAFBhHe9Sr@JuX/T6UqRtGwxRoePZ777dI25fLXQeAEGRsby51IeoNfyFWu4dWgW@MON1VmZ3JY6GTmlo5oB3dZVBjfc5A2cisyqBNjv433FLoDH@Z@aIbRj2ibkv2V48tX0ooEm7hG6yMdZ7BvIT8JXSU5VmTB2IWhbzGpkba0oR2FLtXnS1qbpPfYVIJkF3btGjPk2FZYdrJrI3fZZVPDCSLwLhXXJiSaA3SSya0666V8yH7synG1NHliRaTUr8pi4s4TjBVax6f7fpDqxKtIHFKJQraActPde9Okn9TSUmlDdQzL22BahGFnf532xGivp2ke5DfdTJT3c4a3dAxb14CCpUZA9hA578CR5Q6DXRW0RmMTob@2JIbkNPbkh6Rsy6xl35f3wWZ4E2kMJ2CN7Xd00cPGZvdWDb1EX/gRH6vcFDbtp3JPZlE8S9@mkTITo7y4O5seIRg2bKtqYmQNTScyAUW2fIsOHTsjxCyHv5EJYgFypewRE6dT3tyTJWu82C/pdVrDA9uHuezwN02l7AsxtR4xKuxZkjOCrycY34dT82sFwgTMAP8lOai9O9rUqX7Lm4m0L4nTwT4LDrLu7Xe3yl7aZimpRuNfsiaqwba3eRiNLNJg6xf/qyThbx0QmQIJr03hfHlRnexli5y7V9zBeyMrtTPLtvgcjk41AmJRuCjZw0yTdszjgdXXUigLm9ICPNC160JperK0iStdIE1kfNKHuX23y0a1Loc8VYPDCZP9FUMCr@E3EY9a3rjF/oNQvdcXgzGJWIG8D1a2F32vydCBU51bjSHyPgb5DrwpV0kCeVv1aG57rVF55ePEslgzy4v@g/QakKOMKbSXYCx3hYhYROUqFqG2wPpb6kYWMuPtTZ5ygHo7M5qyNpyyU3@4EgUhxjMj96Y8kiEjBV9clTXCMy0Us6EO4t1b76uGM2vARN3P6ND@Gzvd/ev@df@6f92/7l//z6@L@9f96/51/7p/3b/@19fun89fvn726vbDxcs3lzc/XN3eXr29/Bc "C++ (gcc) – Try It Online")
Note: in both functions 4 bytes could be saved by replacing the boolean ands and or with bitwise ones, but it would be extremely slow.
In the generator, the ands before `(*x=*x-95?32:43)` and before `(*x=*x-95?32:45)` must be boolean in any case (otherwise it does not output the correct instructions).
# [C++ (gcc)](https://gcc.gnu.org/), 239 bytes (formatter, extra)
```
#include <cstring>
#include <cstdio>
f(char*x){int*a=new int[strlen(x)+1],i=a[0]=0,m=0,M=0;for(;x[i];++i)a[i+1]=(a[i]+=(x[i]==92))-(x[i]==47),m=a[i]<m?a[i]:m,M=a[i]>M?a[i]:M;for(;m<=M;++m,puts(""))for(i=0;x[i];++i)putchar(a[i]-m?32:x[i]);}
```
[Try it online!](https://tio.run/##7ZxNr51VcoXn91eg7ondYBXpRIoCmB5mxC@gUAm5DbGEDTJ0ghTlr4fc8@56nqpjEimZZXBPt/H1uef92rt21aq11j6vfvrpxfevXv322x/fvHv1w9/@@vqjL179/Mv7N@@@//Lh7q2/vvnxy4fvnr36l2/f/@nX5//@5t0vf/r25bvX//bR409fPx7xw@t3z359/vHfffPJm5fffv3pNy8//eTt45@vXn76@Xc/vn/2@a9fv/nm848/fvP826/fPH7q5bPHv7/5@OWz2/svX/7Tn58/f9E//8M/Pn889PbrL97@5fbXZ28fT3P74cuvzr@/Oqd8@8XLrx5P@faTn/72y8/P/vCH589vb795vKIXe/zN7Y6vi714@5e///Nnt189//w/fvvtISryIaMy4yGyMh5/fHj86/GH25uPv694/Edd79/euX2mbu9mXf@8vZHnyNs/bm9fB1TW9dFzxHWaxzceD3v8z@3I24Uf34hzhut/t/88Xvxc7JzvdqbbOet22O28wTk5VV53Etdt1O2zeU5wu4PrNP2p6@biuue@pz46rs9cT3N75uLC19HVt3g7sE8bee7ieoLr4Tnt7ZrX6xov7uI6p5fx6tfT97n7ds5P1zD14yUjdUYrrhNdl@zRuM7T1zzjEJzzNmbnY8l9lqNz3rt@VWciziycm72OPKNxhiN6aLnydZJz@3FuNc9w1xmnPDN1wuE8QxEH1eMVJ4iuYLiOOT@ci2TPSJ5QOk@eZ5qNrHMP1wRcr@sJz6ic57xu7Qxc9exc571CsR/9Grae4DynO7cQc4d1pooHDebLELvCoYc9iwE@Q9YnMsSv2Tz/um733NF5zCSy4wRsVYcr0XKe6vz/TEad@TjRfA081@lnqvMYZ6T7xjqy@4TX2PV9GqJ57uKc@vrImTjm4wxhMQxnFZ87izPbZRz0RAbrq05g9ueus/btXrF/TeBEUT9YpInlTO0J63OScw898ieiOxDOAjwD1eF7xjl6cIKEEk7xtTg5faxQ6Sju0csiO3Z@4hRn6WcvyJjsdV2uF10fnqQwV@gZmzO6cdIa2fQas17iJ6ESMdWj1LmHpXiGsMMye5FcEd9p5iw2ji0juR8yegQqVmbt6TnP0tGQ1TXgZEpm2Sye1YNHjukJvhZNL@5IHyRm4DMmwXCqfqR1X/3jWQYk@r6S64dV0/8@txBpVFUn3i4ltRZQj12n8zOuPb/ZS6Qzi2FM7jpB5wxWl1BCLoN6WJ3gzAV9IipKMZbRyc/608OfBA@1Me5qL8OVBEAvPP6m5lF0k@J8aml02Qzjmsww162aVZhdWPfMdB4@t8zDkTT6wx3WJyl7/cEhk5p7tMlC5J6uMcnf0Vl9lY8uoNkxGR1yp6qU89qBybyKA4oKHuY1U0HPTmeInJrLgxrafX0ju7NV9oOTAora2Q/TidZhL1bYuTrV5KwAphdodhYlNaDXL9iHtNGJrUFEBWApOjySVBlgwD44SXAAr3OH1IjoyAIa9Jo8b5xAYuWc3BgD@0h6TFRfmxR3BoxFFP1JShARY@I8sUrlJPWdIJlHp172KmB5MFksr1nhQINGyGeAyV9ZPYo1MCrME5QuimsnNXHOmZiOhi4ytQo1j0TEdkILUl4MzDsBen7fy7Mog42XiwRBzmrY2@gmGKlq6NDhfkK0V0laiYthZh1k4/DKAmWW6bDBRbEWO6YqiD/QRHcG4Wonr9IOJOU6G3OfRNZwPGMKBKDspPiyQs4M1MIefensQBa3Tph0cjSEyaUN5cO0OQi4B9cLnLjvchFJ2geU2TgRpVTlRrTlRNZChZ13mZ4Eb/WcNI5kqWWsXibF2zV5sue@zMrdMnTC6ZzWqLWzFe2MCwCc3ACSmDgzHJ2r/ceHyDKY3KLTc1asljZ9ScMS1iIqTyTzTJARXAIc0nwXmR5YG6qaVoGVIvaeLvgUtyLZmVCnM25ATKkgdQnVQYVdjYU6p05P5e9x747OFqgbnuguw7aOwr46z7RGUhsTqNVxxLpPEEZa/6x83cdX3J3FTj6AQnSqDeySixD4Da8bHNRiGWzJO6vF7qUaxUeWNU4EH4OiG7Z2r9htUN@qBb9RINCiAG9p@Ssu13NYySLriEswSfUABu0m5Z62s9v3amTcbbNYu@FwTOvaNQwCo@h9smqImF6qLK8kVQD6Ssg1vAzFp0tR0vR0dSnYlaxhSs5o0HKzpMJ56e6sYWEQmwH@KjG7B9vjTkvRK7vbeqgYorqI80iX/EqJ9kBckSfhcQRCByyASAGx4Lz0Rsx/IfwreAGwfXQuLYs6pI71z86bvpwiG90kBj0jK9rq2nmoJ7XzeQIZ0kTS4K/AMh1lTXlRuHqmKb39x3DpZd58UTmxXYAK4sBaD@8FWdCgPDJtgSSL@vbpzLtriRgyYvixRkHOeQZ1yaYY6BH0Eh3//iFZwAWR/uhMJSWJnrmJ7KghuvmLSSCcu9yEvJOZh34H5JFDs/HBAemDfbw6ddN1aNcK5igxfDDIVJsEmwOtZ21SpcLk0UuBskmf1tMokIHi7FGkfvZtNFzIkGWCblwMgUgClA2kpMu30yRsYp6JNiLB3CUq2rPI6YYMNNnRyEvRlqQVZTSGXuxsXAJRJqdpr9VdJOBJCqav0nxfB6gQp6ru6Z4z/RTETLJY0ZTTJNS00uEZyo6A9jjkbYRF5F5wDTnY0A3gRPFIuRgAOrMEILBAyHHw9eDsSeAx/WoDhuEZirpPjIL1m4Espko@2nLJNKZjcMdYQApTLil1kM3BTQUgt4lh0Kijbp3v7NeEy1BKIGNxoHgyqSg5sxoW0Rw5IWRgF6nUsQ0yFUkH/XhBWJGU@0ZS1iCHv7HWZ0pLUb/od7vuUmIEinLYU9Sp61KN03fnh4IDRwaUYMbinlL81unQDDElYtUxQ3lRvyXznDXFTcqpaF3ILQngDThsOg8Yc1pB8HOXlwZkYA4Yyy5EoDrkiWAMQikIvj2XTGKz0hO1Q426HsMtDvcsK72PKcAiFGY1yggzU@deslqn@qoPEha8bT9HKZBJlEO6w29L@tDcMNgOhckvYQnyHo4rB6BLZqOlXMycrRMdGGxddMOQlCvgSHUMhOxxStPQ9QRCCRSMK0u1qoSUrWnRtUlxd48ElKJ0lssFFWM6xVlYtVS1WkoHmGbKOFISFBEsXEHjN/oZtjPp6kcHA5NOKPNxCKWgnz6RFjSbxZyoBtJft6rXMs9ITGUpchgtAPCqfb85Qi/pCfAgbVyTlUp0mrbZpH3xFCDYUyJiFu0piq91NDyURsOCQ6mOMu2Yg1ZxG9UOkjbBi0odYX6tlR4k/BKaGW45OsML6QOSC/yESkSzmSjZ8tJFAmDF3j3B0sq6FYLWRr9NJLVZnOqbqoEjEChJDVs2bZ/E7TpfWL/hXWhJK6c5g152FY48EKL2ApU2/cDqo5zyYNSbXunUAyXaIblFcDWNgYTmCO6To8VshYehwOVp0xJD78U9ZwstLPORrhZkwZwl6mrKrWuE4n3aasJqKs8mDoeA55pffsgnN9rj5tB/R4gat0ZHtsxGEmkldwSVPdwkSnAsaiinB0cFzFD2hT2kl7KFryEZRkeVZ2VuqFvNYZHY5Md1qVA/pWq7BkcND1Dqnt3yL/Y15aIaEQwtAPc3QQyiyKUXzUWbWY8t2aYcIrOcOFsWm0LZWZo3MpmE7tIGlVqpuWDjEYvUjZtTlhbbJItCPVILhqHQyxIhObCYYgqP@oa6CmWYKEnl8piuLayWMfRXDAJgMWLtIFtMcWEUG8qLOQiZUOWLgYNpD9cfV99aNEvAqM4ChfVMKPkc9xPK7J1wlkNPNYUxjgvIgJI/oVLktOWs/C1tL5Jl2s9cfFtIqk@GLftjLBdDwgawOvRn0IX4jNiIYhixkMvaqlYutGHHiZCl42K5SnBdRSxKn8PJNCRGwU9Mm2b7OiaQGhicaoLzGPCtu1t7POrh4XbfD3/86J9fv3v9/ttffnz/2Ucfv3h4OMvh/v0XL26fPrf74RG3QxRiPzzs@mVKXvzu2OsTDUHRPhynmEqDdlxDfdNrTTio5Nu1Mzq/u/J/@3rxP70eb3FR1PIcZifiq6zqKGt4FVT2mnZQqmQJVpZgLXL4h3KJtQwfKsWhYo6urXkhxyRAc0IKw/cSWDxiVTgtLIjmi57bMCMV9bi6hkTkjKKlBU47R0P4hTgmVIPD9sJ7NiZqoCdNUUoLZQ2V3EVkRMfYPK7zIlMzSI4@3xYxBj0uhixo8oeKSDFV2ydU2yzQNZkHXUwfmzyjnkqQN8kWlhdnQw@qbJYeQP1kdEBhAxoCRW1iA4YUDKocHphK6ZhhYJ3FZhActtSKMteOcURKBLu8x1Ll0iYPI6M3bCk0nyWZjaHsrlnXolV4CnvCUzogp5FofKkcqFlX0mO6Esxqho5cL6HKUp0VUfdwn5Z5KPNM7U36mLfXBXuNZcBVaoNIUVnks3pQLJRT9r01LEx600UIwg@MByt2QzvslLaN5YOj8UlDdrXXk0htoAV7NfUwdVDAV8R4GvhsrsCednkDL03aw97VooljQYOqoU/l/hKkwujVcjAt6zJRdCcIVCk/491ACA@ioknKUdGDHJPk0Vy9A7IaJlbcBzbbYxUOO3ZW0D1n2tO9zD7jeAj9sKqkqQkOrBY5Bmk7QgsM3E1sKdIBkMPcDCgjCYRT79NXQ3INNKcBaHodxLe0SnoRYxHAgD/FP6THGoKutsUn7JMDGmMkiREOUxpyPPKRQ@9I4bGtgaUdqjIuCYla/dFD4GDCAjgsI79AYJkpJiN130fSs@3DuqGBo9AeVhg2N13GQ5fO8a2Kp5WAtfuTTkFNEQpcIQU8ylbY/jWnPoISsMWkH8GlU9OtdmOMa2pHeGZoh1i3ZnBlIQysMVLPdJQ1XQRMasmQQT6TFsgkw7Ao@cYaT1oTa4D@yM6wbCzpfLWUHHdfELRYiHPJDAgfoE/NGwgBU7tqmrvZwKFjg7iO2pEi26U3NNYi6mFpcFHyTlDL@bvLaq8Znje088YybodxCpWmoRQBjZ6BZqs05m1PhBxJmiqRcHPocf0YY7nGL1RKKdSeGFP@Sno0kmHvGsN/ROhjGufsHf2gfZICIl81OxlkQsoKLvlSU7XYMDGgNXS8lcJmxWw3EJ@5y0Ef8@ZI8z5rCV8EjrJQbv2pJR/ZYqSdvoByOUUTuocbXCb52aUTGg@WczdGJEauCc1BizDCgLWM5MZZDd8zbtxtQJ@2a2qZrAyrcbjucQKjw4eu1wQ/phulUrYB2htLRrnRRnxu6ogJqlK0yO3CW74n5ULNJkojMpiLmdj0vdu1hunNHEkG8jnVTu923NTY69XOCvpFA2dFuM0FX@w0w3Wv7BGfiH/wb8yG5lVsqfpK5CBwE6ERASeWPIra5aIoxc4UJco6xWwmkZBGgyHToRQgL5Mo3EyoJbHs@0KgTGaYfW4pL6deNzphziY6TVUkCkB3wirhr80aIZq65Fv45XO8p9BdWtkjxnekJ5ydPLZ5@EAx1IAeuM0h2nROOvBoClnjdWvWE4K1BHiszXALXLj/byJcyieGQVjFuoYRQZjQYrrYFXd@qkIobbtPEMBlcGTmInRqXAClEUcTqw1Mr91w3Y3yB8YKueCBYzErefH6UG7TTyKgQbwsT1@6Zw50jvfCnVl31VbxI9kwWhreRkcL1cSBogLgRVbMFrRIlXT7v6Xc1SBgocPoounGPTh4iNXVPc1ugFrFN8QGcyvugwynqAZNFxZN5Gd9xOpP40HuteSiJzVFDy1iGxCf1aPaGLOZ0W0DMZJBuQVCoS2m8CNn6R0av8natDU@ABtvXeFwdGokAkwNvTGrO6aNSC3MY3NIMPYsc9GzkickhnI5DBqVdMRMuWi5m5JZIlkhQuRwRTOgci7ukAgtAOW@3YrtWQM0mjdRI2aLRH@4zH@VgxNCJjbu7VCxLC5sRoohy1jptYwxOSHjgA3vWONtcGM/W6j1lyrt0erVqKFV1kWExwWmV6cNJZUxzb5CE/iG6qHl0T1UWDRMu5ISMfHiXpeaZnt70eAOSmyDnghnlvrR9jYK4eudM222lu1tpGP6ECXnTOeyhkKxz8rJEYViEUmzraQ0ic5W0bpj1dxKoF@F8kDj4z4pHzHcMe7@dsXj1BdiuwCUnH0P9oepbm0bi7kPEeROdMFSpPA4MFBf6Xi1pNbVqu0wZtfsFCAdTztFu2UbIkUVQLePDC9G4ZwNXZoDMscUUuMUlWARv0s5p/vOw22AYZ8XS2qabdVjP1qsX8WWXGtpEilGT7/zwh2y0OhsoZm9GyM5uXPD5Ru0njWGJQRg@yraSPeOJvtboubJY1F6WvZrSgZfYBAxu17lb1L/f5qqGMWBLaPh0eNNv11uU675OgicIGtjY00nkrPBL3SVO7wO@mjcMU3VsDO5LHSaudURx8FdIyqs7znIMXIbGdSJtd9m9hROB77M/dAMqx9xm9L4K9eXr@QoEmziWq2POs5i30I/CV0lOVayYO3C8FtMaqUtN7Sj0KV9vtLaJr3XphIkuxjX7mCGXNsKa5zsbuSucdnUcoII3lVxx4REc4BOsrnVyXqpD3keu3JdLYc8GUWk7Fe1mEznCcYK1/H9vh@kOnkVxSFLFLIFlJt3P5sm50lHWio3VMeyvC2mRQy7@@scT4x7PYfmQX7zZqJmP2fMlo5l61pQsGwEtIfovANH1nQY7KqgNVqbCOdrS2JJTmtPfihlj8xa4/uafbAZs4k0lhOw1vY7uuhlYxv3Vi29xC/8iA9Vbgqb@6mmJxtRPMtv00jNxCgv051tjxAMG7ZVmxitoTmJTKDIlm/p0LUzQmY55huZIBYgV2o8YnI6NZt7srTGy36p17mGF7aP4bJjvmkqtS/E1npkVNizpDOCrydY34dT@2sFYgiYBf5LOai9O27qtN@azUTuS@J0sM/CQdb9@N1HZS@3WSrVOP6lNdEGe7zNy2g0Ig22fvlfk8R864BkCiS8m8L58qK628sWuXevTAc/G1mpnVlji8/l6LQRkEXhomSPYZrcMY8H1q@lMAsPpQV4oGv3Qjn0ZLmJK6dADpHxuz5s2vdx2VjrcslTtTicGLK/Ykngtfwm8qg1G7fYfxDWe78YjEnECjT7YLW9@L0mSwdOO7daQzT7GPQdzKZckwTytvVob3utVXn1cWJZrJ3lpf8gvRbkqMEU7iVYy90QkUU0V7EI3QI731K3stAw3rPJUwfobGdGU3bDKTv1lytRCLGeGbk39UiGRgq@uCprhWeOUMyGOoj32XpftZxZCyZ6P6tD@9/Y6Z5eT6@n19Pr6fX0@v/8evH0eno9vZ5eT6@n1//19fCfr7774dvvf/7txXc/vX7/9s3PP7/519f/BQ "C++ (gcc) – Try It Online")
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 32 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
®1‚„_\Ik©0¢ãʒ0®r.;ηO¤Ā(ªdP}ZÄ=i,
```
Combines the Validator and Generator programs into a single program to save bytes.
Input as a list of characters.
Outputs an empty string as falsey, or `1` as truthy. In addition, outputs all possible generator outputs as a list of lists of `-1`/`1` for deceleration/acceleration respectively.
[Try it online](https://tio.run/##yy9OTMpM/f//0DrDRw2zHjXMi4/xzD600uDQosOLT00yOLSuSM/63Hb/Q0uONGgcWpUSUBt1uMU2U@f//2ilmBglHQWleBCBxAQT@kqxAA) or [verify (almost) all test cases](https://tio.run/##yy9OTMpM/V@mFFCUWlJSqVtQlJlXkpqikJlXUFpipaBkX2nLpeSYXFKamAMR083JLAZLBAMl/EtLgEIaxZpAAZ3Q/4fWGT5qmPWoYV58TET2oZUGhxYdXnxqksGhdUV61ue2@x9acqRB49CqlIDaqMMttpk6/2sPbbM31Di0MuZ/tFJMTLy@vr6SDogBRPEIZkyMko6Ckn68PogBFNMHigBJIFsfLKuvD1aiBGKCeBB5kDTQFJBIPFSFAkgJ1GAQiIfaBzEmHmIE2G6I8WAOiA8xGKEPLAgWVooFAA). (The larger test cases are omitted; the more `_` are in the input, the slower the program becomes because of the `ã`.)
**Explanation:**
```
®1‚ # Push pair [-1,1]
„_\ # Push string "_\"
I # Push the input character-list
k # Get the 0-based index of each character in "_\",
# or -1 if it isn't present (in case of "/")
© # Store this list in variable `®` (without popping)
0¢ # Count the amount of 0s
ã # Get the cartesian product of the [-1,1] with this count
# (resulting in all possible count-sized list of -1s/1s)
ʒ # Filter this list by:
# (implicitly push the current list of -1s/1s
0 # Push a 0
® # Push list `®`
r # Reverse the order of these three
.; # Replace every 0 in list `®` with the -1s/1s of the current list in order
ηO¤Ā(ªdP # Check two things:
# 1. The sum results in exactly 0
# 2. No prefix is negative (so we never have any negative m/s speeds)
η # Get the prefixes of this list
O # Sum each inner prefix-list
¤ # Push the last sum (without popping), which is the sum of the full list
Ā # Check if it's NOT 0 (0 if 0; 1 otherwise)
( # Negate it (0 if 0; -1 otherwise)
ª # Append it to the list
d # Check for each inner integer if it's non-negative (>= 0)
P # Check if this is truthy for all of them
} # Close the filter
# (we now have a list of all possible paths if truthy; or [] if falsey)
Z # Push the flattened maximum (without popping): 1/-1 for truthy; "" for falsey
Ä # Get its absolute value: 1 for truthy; "" for falsey
= # Output it with trailing newline (without popping)
i # And if it was 1:
, # Also output the list itself on another line
```
[Answer]
# [brainfuck](https://github.com/TryItOnline/brainfuck), 124 bytes (validator and generator)
```
,[------->-[<->---]+<[---[>->+>->>+<[->-]>[.->]<<<<<<[-]]>[->+>+<<]<[-]]>[->->+>+<<<]<,]--[>+<++++++]>>[--<.>]<++>>[--<<.>>]
```
If the parcour is valid, it just outputs the instructions; otherwise, it prints one or more bytes of value `0x01`, followed by some instructions (which are of course meaningless).
[Try it online!](https://tio.run/##PYxRCoAwDEMPVLNdoOQitQwVBBH8EDz/7DYx0NCX0K73clz7s521ToYhwjQMcNGWGUGJYUPCaQl07TJ4cOtF1X/8gkgmbw9EpcsZLTTFucjYA@i15lJynnNYmV8 "brainfuck – Try It Online")
Note: it works only if the difference in height is always less or equal to `255`, counting from the start.
# [brainfuck](https://github.com/TryItOnline/brainfuck), 103 bytes (generator only)
```
,[------->-[<->---]+<[---[>->+>-<<<[-]]>[->+>+<<]<[-]]>[->->+<<]<,]--[>+<++++++]>>[--<.>]<++>>[--<<.>>]
```
[Try it online!](https://tio.run/##PYpRCoAwDEMP1EUvUHqRLgwVBBH8EDx/7RwYSuhLst7Lce3PdkYUx5DBNQ2gaM/cYGJQTSLNO4kqf8TAwr4VlU@0rKCTMYPxJxgjaq2t5aXNLw "brainfuck – Try It Online")
Note: for both programs, the input must be zero terminated.
Both programs works only if the total number of `+` and `-` of the output is less than `128`.
[Answer]
# x86-64 machine code, 45 bytes (validator and generator)
```
31 D2 6A 01 59 AC 88 C4 B0 2B 9E 7B 13 73 07 FF CA 79 05 AA FF C2 FF C2 9E 75 03 83 C1 02 E2 E5 D1 E9 B0 2D F3 AA 88 0F 19 CA 19 C0 C3
```
[Try it online!](https://tio.run/##ZZzRb5zXccWfuX/FVoURKpYzcdL4wa770CAB8lAgSFGgqCcYUCRlMaBIQkulco3861V2vzu/c2adIJbE5e733e/euTNnzjl3r5@evvj@@vrTp6vDu/3l/k8vLne/@P7@8fXV/f7N7s3Xu4uPj@/3tzcfX53@2F08fTi83X/5zf7p8Wn//vrj7v3t0@3V8/Ft9483h9e7i3ePf91fvX21v7rvf9@/2v/s85/tLg5Xb9/sLv7y8LS/eXy4Pf3rev/uw@G5rq6vb49vvrm9Xnf4y8Nhf7i9fny4qaer98/HTz4/nq5897De4A997RfHB772vf5v3eF46dMdrm5u9rfXxwf51c4vbyM/Pcv2HLvT2E4XePt@vfXL8RRfHJ/i@LZ9j@f0@nfvb@7@/Gp/fbz64fXrnqbjrKyfrk4/XX08fep59/LF/uU3u9uPz7fvH/Yvfvti/@Pdw/P@zeX126v3@5@/vz18uH8@Xunx4fC8X68dXn7zt93un4@PeP/h5nb/r4fnm7vHX7z9t7OX3t89fH96bbc@ebrmv//X73//uz/95x/@53f7b/df/eY3v/7qm93u9It3V3cPly93P@4uthvcPTx9eP7O7z4@yBrGfO2b3cX/vr27v91fHq6vHt5cvvjs8OLV@ujL/bff7r98ubu4uHuzv3xzyTOsX55ev3g6Du/5@KE/Ph4Od6/vb7/ef3bIhxfc6DghFxe394fb7b0fng@XL/7w7qnf@@L0Wy6QD/9xdf327uH2OEM3t19vvzs90sfjI/7y1f6H4483j/sfefv@s1/@6r@Pt/nh28vLDw@Hu@8fbm@2Wf35yzcvv/v4@ed/Ps7tvh/sh/0/HS/y8be/njfcX352t3/9w/Pt4eU24I/HX/7t06fKil1U5C7z@M/YZVTm6a88/mp3@jOOr@yOL9bxXXH8x/HP00unTxzfsv18vMLxs8ePbu89Xen0m9Pvdqd3ni5Sp7cc73D68fRCrkuffji9vH26ThdMPrFds7bbni4W20VO74h1hVq3P42kTsOL7Zbb23Mb1XbVdZftqtsQtivV9vlY/zi91B/VQ5w@vz3FNqjt3rtaj7cGfXrfaeBrXmKbpDVwxrsNaA1gzVKuC2wX355/vWubgdgmph@8Px25BnG68hrSuvH26ep5OH2wLxu5RrFN0zbDXHZ7xLUetb24ViPmbXT3bYr72j2c9a/oWYo1eWs51pLEms3sRcv1f@655iG45mnO1tuScZZmZ722/arWaq@lXoPdPrlmY01H9NRy5@0ia/hBKKzhrXnKtVIr5tYzFMFWPV@xInVb9e0z6x/rJtkrkite15PnWmaF7xrDtgDb/7YnXLOynnMb2pq46tVZ2y@qA2BNYPQC57rcGkJ4hCs4kwcN1kshtoVDT3sWE7ymrC@kfbSt5vppG@4a0XrMJLJjBWxVhyvRsp4qenNF9G5aM7FGEdynn6nWY6yZ7oF1ZPcFt7nrcSpEc41iXXp7y1o41mNNYTENK1WskfWGL8VBL2Swv2oFJolhu0rnruzskI6ifrBIZa@1tBmEVIcfM78iugNhbcA1UR2@a56jJydIKKEl3jYnl48RKh3FPXsr021j6u3fl1hbP3tDhrPXSpXrcv3xJIVph665WbMbK62Rsrc56y2@sjYRUz1LnXvYimsKOyyzN8kW8Z1m1mbjs6VI7oeMnoGKkVmDrN/7foVBF5qVKVllZfFUOWA3rNFtm6Y3d6QeJDzxGU4wXKofaYyr/7m2AYm@76T9w67pn9cQIhVVFLYuJTU2UM9dUbWYR1Z5laCV2jqMyV0r6LSC1XWakMug6FYnOOWCUMXMDqlM7YpOcyv9relPgofaGGcFnulKAqA3Hn9T8yi6CQJYtVQFX3FNZvB9q7wLswvrXJnOw2vIPBxJo9/cYb2Ssu5v0ODU3LNNFiL3dI1J/o7O6qN8dAFNIEqHXMMXrWsHJusqHFCCO8prSgW9Op0h0jWXB1Vo9/0V2Z2tsh@cFFDUzn6YTrSa9mKHrbtTTdYOYHnBf2tTUgN6/4J9SBud2BpEVACWosMjSZUB0OwPJwkO4LVGKADbkQU06D25XoiGkR23wd4m1jrpsVB9b1LcmjA2UfQ7KUFEjBLnilUqJ6lvBYkfnXrZu4DtwWKxvbzDgQYNw9cEk78aOqcBXC9uL9cqXRTXTmrCOQ2PozEMEFeFmkciYjuhBSkvDPNWgBqRr321VqXxcpEgyFkNexvdBDNVDR063FeI9i5JVeJimtkH2Ti8skCZpXTY4KLYix1TFcQfaKI7g9BuJ6/SDiTlOhtzB60GZYkCAShbKb5UIb0CNbBH3zo7kIVbHSadHBXC5NKG8qG0aQRMC8QNVtx3uYgk7QPK1J0RpVTlRrSlhayBCjvvsjwJ3uo1aRzJVssYvUwKb5fzZK99KSt3y9AJp3Nao9bOVrQz2gDg5AaQxMRa4ehcrR9@iiyDxS06Pa2KqqWavqRhCdUiKk8k60yQEVwCOKT5LjI9sWqoyq0CO0XY2632Km5FslNCdfvdgJhSQeoSVAcVdjUW1KluqKn8Pe/d0akF6oYnustQW0dhH51nqkZSGxOo1XHEvk8QRqr@qfJ1H19xdhV18gEUolNtYJfchMBveN3goAaVoZa8s1rMXqpRfGSpxgnBh1F0w9buFbsN6qGq4DcKBFoU4C1V/orb9RpWssk64hJMUj2BQbtJuaft7Pa9Ghl32yys3XA43Lp2DYPAKHqfrDLb01uV7ZWkCkBfCXKZ/KH4dClKmp6uLgW7kmWmZM0GLTdbKrQu3Z01LAxiM8BfJcyuD6vHdUvRO7vbeqgYorqI80ht@ZES1QNxR56ExxEQatIK3N4gFpyXGojyXwj@FbwA2D46l5aKOqSO6p86b/pyimx0kxj0jOxoVdfOQ72onc8TyJBKJA3@CizTUdaUF4WrV5rS2/8pXHqbN19UWtguQAVxoFoP7wVZ0KA8MtUCiSzq4dOZd9cSYTLC/FijIK15BnVJTTHQI@glOv71H8kCLoj0R2cqUpLo8SCyo4bo5i8WgXDuchPinZR56HdAHmmajTcapBv76O7UTe1Dda1gjhKGDyaZapNgc6C192aIfSZ59FagbNKn9TIKyEBx9ixSP@GPI3zLpNSZ5ygzFq7ugpR0@eo0CZvwM9FGJJi7hIrmKnI5k4FKdjTyomhLpBVlNEwvdjYWI6/FadprdBcJeBIF03dpvq8DVBCnqs7pnrX8FMRMsljRlNMklFvp0BVKHQHtcYi3ESwi94JryMEK3QBOFI@UgwGgM0sAAhuEHAdfD852Ag/3qw0YzDMUdZ8YBetLSMhwX2tiOXseAL0UHTMWkMKUS0odZHMwqADkNjEMGtWsq8539mvCxZQSyFg4UHgS9QSVoMqxDEJBNQmFEF1CxzbIVEg66McLwoqk3ANJsQZp/ka1PlO0FPWLfrfrLiVGQFEctos6dV1Uo/vu/KngwCcDSjBjcE8p/NbpUBnCJWLUMYXyoH4lSTHSDhqQPq0LuSUBvAGHTecBY04rCH7u8tKADMwBY9mFCFSHPBHMQUgKgm/PIZOoWemFmqFGXQ9zi@aexUrPzxRgEQqzGmWEMlPnXrJap/qqnyQseNt@jpJAJqIc0h1@W6QPzQ2TralQ8ktYgjyH45IDED@z0VIOZk6tEx0YbF10w5CUK@BIdQyE2OMUTUPXEwglUDDaWVKrSpCyNS26NlHc3SMBpSidpe2CiuFO0RurhqpWQ@kA07iMIyVBEcHCFTR@ox@znUlXbx0MTOpQ5u0QSkE/vSItaDaLNZEaSH/dql7LPJaYSqVI06gCAK/a400LvaQnwINo43JWKqHTVJtN2heeAgTrkoiYRXuK4qs6GvoojYYKDqU6SmlHOWgUN6t2kLQJXpTUEcqvNdKDCL@EZoZbjs7wgvQByQV@QiWi2UyUbPHSRQJgx549wdDKuhWC1ka/TSQ1b07pm1IDLRBIkjJb5rZPxO24Xqh@w7vQkla6OYNe1i60PBBC7QUqbfqB3Uc55cGoN73TqQeSaE1yC8GVGwMRmhbcnaOF2QoPQ4HLU01LmN6Lc84WWljMR2q3IAumt6h2U05dIyTep1pNWE3Js4nDIeC5/Muf8smN9hgc@q@FKLs1OrLFbMhCUuKOoLLNTaIEx6CG0j04KmCGZF/YQ3optfBlksE6qnhW1oa61RwWiU38uFwq1E9RtV2Do8wDlHTPbvkH@5riohoRmBaA@3MQgyhy6EW@aTPrMSXbFIfIKifOlsGmUHaG5o1MJkJ3aIOSWqm5YGOLRdKNm1MWLTZJFgn1SC24kkJelgiRA4MppvBI35CuQhkmSlJyebhrC1XLMP0VRgBsRqwdZAsXF2axobwwByETUvnCcDDVw/XbpW8NmiVgVL1BYT0TSj7tfkKZPRPO0vRUUxh2XEAGlPgTKkW6LWfnT2l7kCxuP3PwbSFS3Rm21B9juTAJG8DqkD@DLkTPiI0ozIiFuKypauVAG@o4EbLkuBiuElxXEYPS5@NkGhKjwE@4TVP7ahNIGQanNEE/Bnzr7Nbq5AkctKt6d@045qxUqVCL0N@lVnUrLfmNsKosAZBI99SlsGlpOaR@hlRgtFoJ8mnhG8DNtsTLEdgWYmRt2TIQggflNEtnSqji7jLZQdEXbRoQUbZDk1ih2hxSOEOQWWNWjizDKYB@iurIMj3aidFCWkxuUusi9sHohN5VbU8YEQ3WJ2hc3V6ncEJbAqQgqeiUdxNaj7xZ4s7kEwRNkkBgLlHre1LF0MjXJo8UqD7UVIXAj6xPLvAiwas0PbBvohjMKmoVuyvWtKXsFb532OUnclPgyDYhQQ1yC9Jwl@JCxxgykE1SZw2obEeFT64XPNXipsFxYyZJXDKgqpE30saApdARf0moslW9I@ocwtIGmgbOlGVHBuDp38AyotSmXaqmh0Q5CFVpHDEqd6mXKzMLqUEXIUjPa19RzCbNjIusCMPbBZhPhexoGZ1I1RQKwJRzfMoVQA8e1ul5b47Adgs4wYSMx2akalCfMcpdlSlB8VlJ9WX2arhyhh2XKDojuaskqeJHQNwNoqKJNyvDQY5J8mgOPIxUhDETRV0NpO2voS6UHXTOA/ZyDwOLVfyQx1PKX8rYBf6ItOlXXY4KDHxETHlNEyBebrJ6zCSwRBqWvCIk10BHMeiQfi/MBvyXvy4GqQmgkaCFnFYmnWraVkK9X9Cam2a3GJai1uz7jjRlIVqK8wBs7ZDSoC0h8lGeX5MSGIsADsOcLiAwDALOSN3LkPTUymBHkCmh4NNHGDbfWoqHLp32YgojStaUhZ10CmqKkGgTojWt1oRamuaJLZIAW5T0I7h1ykgqCy1mLOkh@ECA@OxbZXBJHZgyw/KFu6QyMoYdLLE@EKqkBTKJWQPJmDHmE7itGiDPX2dYDkt0vhrqhE4UELTYYnNQ55D5oE8ZEiC3XbvKDYsPJciFQFxHzUgRgyO/Y4xN1NPS4KLEpUCX5j/cVpYRc5chi2oMM3IoTqGHZJJEFKJFo4Eomc2mzq@@P5UqkSXTlK88BrYR44EpyQPUnrDRfCQ9mqNQPxbu6SPkzbEb9KylliWQAiIOxu58dfelCi5CoVy1OARg0BpycZXEugpb6IXP5NyXN3fyfnmetQRfBBzFrOg4Sw1JRC1GqnsVoBzux4TCYIDD@O2TJyExfbhRw8InEkTI8DJIEExFwxytOCtzGHaYTlO12y7XMjEN7Ebzt3a3oi2HnJwJfkwd/kl10FC52AxKh0eEz5U6wkFVIuJzOsuGl0cSmAwUovvFyo1ue1LSOoJk9jLTMgOEakoPPDtFUraMSw8qKAWZEitCRzfweroZrnO1ivhE0IJTYjVkyMRqKa@EjtXhkEH3AE4MyQ8FR5uiJOClUKKYlPABCZGs6ApkOthvJFMShQ7IyWZX6vtCQJnM4LNbKa5JGpS1r/TBMBmFSBSA7oQpwTOaZXGVuqSX8ICn/ZRQOLJnR9hLI58zp1PU5uFtxCQCemCYJo/kBtTEw5Nn2b/VTB6kYQngsTdDx7pCZ9oc4aJ8wgzCKNZlRgSyXbbJwa7oNKOYdcm1OvsG4FJwZOYgdMrKdslcImOmGpjeu6F9ZzULjBXiNw3Hwjt5cNWcInU/iSgE8TJ8aqlzYKBz/AQ6bXRWbUXoJ4cgSyYua0MhhcxQVAB4kBU@VhUpdVj931CjyghY0MFaX@owGrwyZOHonuxwr1F8Q9jAQ9HZvtASldF0YTtEUpU3VpqKfbW9l7TpSU3RU4uABMRn90hBCx/QkxU@TIOXbP0Sj8KFH4lGfhh7KMZBJGvbarzldIajE@8vgCmTanh3h9uIlC3X0n2Csb3NhZ4l40FiSAKGQaOSWqCTkifupsQskawg1tNckSdUnItc/yFZu3QWtWL6sACNypsw7Lb995tL@a/SOCHExMa5xSeGbYMDNmGyjJ1ew@yRDhlNmHnHsl6v4/EcC5ZnUnIVrV5Z4atSXURMG2B6dNpQUhlu9iWegG@oHrLx6VwQtgOlXZES4XjR@Y1ysz39VXAHJWyDRgZnlvJYzaMBgq9nbisfl5pHI21kEEpOL@ewO0Kxe@ekhY4YRJKPSpSMjz7@WGesmuzx8mBQHmh8dPZHjxg6Ba0z2xJEU14HtQtASXv51R@mtFi1sRjWEEHORBdsMhLTDAPllbT/SNS69Fd1GD4J6gIkF89M0TqGDJEiFUAOFjG8mF/Th5QkeGfa6FB2P4pgEX4X5Zw6Sx062hbq82JITT4qbEvNYP0qpoxYQ5NIYfTU9zjo1Cc0OsdCfB7BkpNOI2j7Bq1n2YSDqKm@ijZS5yGTMxtRfvIYlJ5s6OWSwaH8CJ/kFH@T8rSnUhWzaNhiDY8ez/126eht@SsOcDeMw3rlTiR9aC3klNb0atKt24abKrMzOWxhMihLR7QruSwqjLP7aXOyIoM6Mc6Q@JycO/BhWIdmGP2Ijt7YMzi@tSStSHAwabQ@0nEG@xbySNBVkmNFFoyTBfpmjhppS4e0UehSfb6ktUl6j4MSSHZhJ6oxQ46jcmV3tg4nl50jNdwNAu9ScW2soTlAJ5ncqrNeylvrx64cd0uTJ1ZESv2qbBPuPMFYoX18fpYFqU68isQhlShkCyg3jd4HAf2klpZKh4Rj2LgG0yIMO/vrtM9D5xdN8yC/aTBRPqMYPqYwrEoDCpYaAVke5CYDR5Y7DE4K0BqNg3H@Ko4YktM4Zx6Ssi2zlr1MPtuZ4YORMdxtNY6U0UUPa5YdSTX0En2JRfxU5aaw6YyQezKL4ln6hoiUQRblxd3Z9L3AsGHFVBMju2M6kQkocoxZdOhw@4tZDn/LEMQC5ErZ9yROp3xgJUt2b7Ff0uu0hwe2D3PZ4a9oStkXYmo9YlQ4hyNnBEfux3e81DwqHyZgBvgvyUHtR9FBRfVbPiCjszZcDvZZcJB9bw@3VfbS0UFJNZr/kt1ODbb9usM8Y5EGq7r4XyUJn6QXmQIJr4POfCFPnZ3PipwnMtzB@3AmtTPLVu8cLkU1AmJRuCnZw0yTToHj69RXLSgLm9ICPNC160ZperJ0MCldIE1k/EMf5vbdLhvVuhzyVA0OJ0z2VwwJvIbfRDxq@TASnvpQvdeXXbGIWIF8tlO2F31Xx9CBU51bjSmyN1@@Ax80VZJA3lY9mkc5a1ReeROx4dXM8qL/IL0G5ChjCvnjx3ZXiIhFVK5iE@pYp7/ebWQhM94@uChXo4/ooinrECWnz4fTThBiPDNyb8r3FzJS8GVMWSM800Ixh8Qg3n2cvGo4swZM1HhGh/b/12/ur74/fPri3Vf/cvzj6vDu27uH59v7vwM)
Following the standard calling convention for Unix-like systems (from the System V AMD64 ABI), this takes in RSI the address of the input, as a null-terminated byte string; takes in RDI an address at which to place a string, which will be the instructions for the driver if it's possible; and returns in EAX −1 if possible and 0 if impossible.
In assembly:
```
f:
xor edx, edx
```
Set EDX to 0. EDX will keep track of the minimum possible speed at each point.
```
push 1; pop rcx
```
Set ECX to 1. ECX will keep track of the maximum possible speed plus 1 at each point.
```
repeat:
lodsb
mov ah, al
```
Load a character from the string into AL, advancing the pointer, and then move it into AH.
```
mov al, '+'
```
Set AL to the ASCII code of '+'.
```
sahf
```
Set flags based on the character in AH. Here are the possibilities, with the important bits bolded:
```
S**Z** A **P** **C**
NUL 0**0**100**0**0**0**
\ 0**1**011**1**0**0**
_ 0**1**011**1**1**1**
/ 0**0**101**1**1**1**
```
```
jnp done
```
Jump if PF=0, true here only for the null terminator.
```
jnc must_accel
```
Jump if CF=0, true here only for `\`.
```
dec edx
jns second_part
```
(For `_` and `/`) Subtract 1 from EDX (the minimum speed). Jump if the result is nonnegative, in which case we are done with this part. Otherwise...
```
stosb
```
Write `+` to the output string, advancing the pointer.
```
inc edx
```
Add 1 to EDX. The next instruction adds 1 more, for a net +1.
```
must_accel:
inc edx
```
(For `\`) Add 1 to EDX.
```
second_part:
sahf
```
Set flags based on the character in AH again (as the `inc` or `dec` has overwritten them).
```
jnz must_decel
```
Jump if ZF=0, true here only for `/`.
```
add ecx, 2
```
(For `_` and `\`) Add 2 to ECX (the maximum speed plus 1); the next instruction will subtract 1, for a net +1.
```
must_decel:
loop repeat
```
(`/` jumps here) Subtract 1 from ECX and jump back if the result is nonzero (if the maximum speed did not drop to −1).
```
done:
```
If the parcours is possible, the minimum speed is 0, and the maximum speed is 2 times the number of flat pieces that should be decelerated on (because the maximum speed is obtained by accelerating on all of them, and changing one acceleration to a deceleration reduces the final speed by 2).
If it's not possible, either the end of the string has been reached with a nonzero minimum speed, or the loop ended prematurely with the maximum speed becoming −1 from a `/`, in which case the minimum speed will have changed from 0 to 1 on that `/`, and thus will also be nonzero.
```
shr ecx, 1
```
Shift ECX (the maximum speed plus 1) right by 1 bit. If the parcours is possible, this produces the number of flat pieces that should be decelerated on.
```
mov al, '-'
rep stosb
```
Put the character code of `-` in AL and write it to the output string ECX times, advancing the pointer and counting down ECX.
```
mov [rdi], cl
```
Add the low byte of ECX, which is now 0, to the output string.
```
sbb edx, ecx
```
Subtract ECX+CF from EDX. ECX is still 0. CF is the bit shifted out of ECX previously.
If the parcours is possible, CF will be 1 and EDX 0, so the result will wrap around to all 1s, and CF will be 1 afterwards.
If it's not possible, EDX will be nonzero and CF may be 0 or 1, but either way the result will not wrap around, so CF will be 0 afterwards.
```
sbb eax, eax
```
Subtract EAX+CF from EAX, making it −CF: −1 if possible and 0 if impossible.
```
ret
```
Return.
[Answer]
# [Python](https://www.python.org), 62 (generator) + 68 (validator) bytes
## -1 @Steffan
```
(
lambda s:((l:=len(s)//2)-(c:=s.count)("A"))*"+"+(l-c("?"))*"-"
,
lambda s,i=1:[min(i:=i+ord(c)%z-1for c in"?"+s)for z in(7,9)]==[0,i]
)
```
[Attempt This Online!](https://ato.pxeger.com/run?1=7ZxBjlzZcUXntYoCAQFValIhCTZkESAMj-xB76CjEWi32DYBimywKQOW4QV4DZ5oYu_Ai7HnnmgVrsw4576kZMFTD5iSyMqs_P-_F-_GvScAQv_679__48e_f__ud__xd6_fvf7wzcf3H57_wzdv3_zq8tOr_rfffPzuxV_857883L395td_-6tv7n94-fDw9uWrt6_fPfzwWPXzxxcP37589cNPvn3_m3cfHx-e_dWzx8cfP_vi2RcPb198-_DsL69vXzy7e54bPH_z6mcvv_r1m3cPb16-evPF-w-_evj28Ue_ffGz795_uP_2_s27p4u--OHx8u63T-8efvH8l49fv3r11U-fv_n67pEF_f7LV199fXf5ztun79y___5pPT99fHl3_-a7-7c_-eHjhzffPzy-_PKLV2-f392_fvv06ZdPv7x_f__q_rL0Lx9_9POnt2-e3n751U-_9oKffPzwzbsf3n7z8fXDP_3yz18--5tnz3_585dPe3r-Z794-bSsf368XPTd_bv3H-_fv7x__-rLr352Lv7w-vu333z7-uHZX1vJl_fPnj97drno-w9v3n18SGEf3jw-__Htux8_pPxP7169ev_88XLZZZe749_9V_93TfXdXdd0191d9XQ9_Xx39_T300-Xj58-namnd7O_uXx2-dpcPu65vr180Hvx5c3l4-sV03P96l5xvc_TB0-XPf1xufLy9KcPau9w_c_lj8vz93F7w8utLjedy3WXG5c39V59XUpd1zGX7_be4LKE62341nV1dV00i-Lqun7nup3LtscHX68e1ni5kNtW7yquW7ju3ttennl9XSvmKq73zGPy9Ov2uTfL2Z-udWJ7bam2XHW90fWRVON6H565dSjveanZfq1d56Q6-9n1V7Mnscewi71eudXYchSl9cnXm-zya5faW-7ZOvWe1Oph9zAKYahXrYquarhesz_sQ5oT6dXS7rz3mCOtXcP1AK6v6w63KrvP69K2cMPpXO971SJbv5aNA-693S6hzgpnj8qNlucViV3lQNl7LPCWjBtF49fT3HfX5e6KdputsmsFO4NcVcvuav-7hzF7Hqvma-F9Dnua3cZWmoWhbG54rR3rjER7V7G3vn5lD87z2BKOZdg23pXVnvZEBxxk2V-zwuR717uy3Kv2rwd4VMTGquMse7Qr673JroHKr6IRwjbgFgr5bp2L4pSGUjnia3N6-7qRCiqmej36I_7kLbb1m4as417Xx9F0XN5aWDp0a7PVrbU17fRaM1p8HVXFDFXCe2zFLSGybJrkqnhsZpvNaydKZpNFBSY9VTme3Qtq6CEE1ik95bh4D8XTYzjga9PQ3NXZSJ3Cdx2D8VZs6WZd_LhtoNHzpPSPXcP7XUJ1VDUYL1HigaLaPel909bRU94IWmtDxnrXii4nOGSokusyEAeDixdwIxNlrGVhfskfyt-Kx2ysT8LXcrUCoPH828wzdNt03iwtYrOia53hPHdsAG3r-MDG7R7CLtnNaRp8GVmvKef5h0SONVNtXUjvIWPavwtXv4kPArTRZCG5TZXJuSJMzzUcMCZ4xddiBZwODtEnc91opM3zo2zcqtm4FjBmJ5vBaFP2scP26abJdoDHK5ttU5oB9K_so21gbEDElLBUyKO1yhICubg1OMFrV2hGFMoSDejJ_WCFZOesN9bBPk3Pg-LZWtwWzCYqvmkEqZgY52rV5NT6ViRn6-YlXWB7eFi21-lw0QBE3gLrXz1UMQDH4XJcG12GK6YWztmDQQ2EzNwEtVtSsRhaaXl1MG8Fur-nPccYhJdHg9CzwF7opqzUgA7IfSVKl3SSeCyzfdBw-PRImQaWp6gOm2ewr4OF5WRQ6XZ91XGgjeuGudfIwPEOmOl5HAVxltQcGCXswaMbIYdbj0wwx0hYLwXlK7Z5CJji5gGre-KiWtsXyjI5qVJTGaKdHKT2ywEdYYOkojwWNgL9RlNmmQ5vz_FJzn7iyowMGA6eBrXiVtTgNICcDECqiT3hwqvz5g_JsjzccdLLqSQtM_S1A0sli0yeas9ZkSmuAI42T8hQ2Arvn1HBTinZW1RdouO2-mveT5xYfCstCV0UB7wIGrxr86Vvkp-6D48RExl4NuIy7ix1DeMQmSgckinhxl3DzlUNrzl1JP-SfN3pq5u7MBfQrXyx7Npw-Bzhg9fAgVXeDi-XO0ZfZikovsAzujUjkhQNtnbZAH1YKIEPBYoWI7x14m98HGc4bZOhuJZJhgKW46Zxz1iwN2dGAevmhrXBYbNxkmFUnKfGTJEgrWp7tVYh9ElEGnQ73EQf5MmA8uLqzSmdahBXZUtVzoXpDCwstVnyl1BX52Kp-makoLNXR4BY-xywou3TlvDnk092w4J-n5bogNDCgkQqxMp5nYXE_yr4t-3O2LidXlGK6M9KzT9NHmo9IVsMieXMaEcnXfEhDhU_b5GhYyTA38gyqGx1lODipI1e_he50OabhBgw22ss3mmkTbS2MpNpDLRC361fzwEfZkGTU4JrOwIKypl3mUttY4keIEWr__xPs2hhE_tr-4_Vtuo5i2hUo7r9y0NQzsRNTVJa53HekTwkPBuUEu8ZH_bJ083N9OFg6SVz6Cml_U64v2Vz0fr0piklvtGmGh7mOyJ3B2QYkAwR85NlgAutlrFF_RxjlySkbJHSKV9obmVTZ0-OES1zT6jo9hS9XSXVYnYbCEP_6uJubzBmjxU3noCoh1NI8UwXLTxpP8VTdlugg8SHh56gGtrcQNw-Hto1YM-nmK4nlhlj917YT-nbYpHeK9fowZFuiRPjlsJtbKNkEQCv68bjWoSBs4-BFw0dnLXUokkQug_r7xNmPCodSpanDkKvoZP1OkO0cWnUIcgFww3qMnesuuoftTLeNZjPbm-cpQ8HhifbROlzqmpZQikgryIhpwS0PVKGJF2Y4uqf_j41polxGsG8k_WNO7YjT4Zpc9eICShakwCn5j4CHe7A0c9xNwJ-BO2QR8dKwm_YYRziRMRNjkXKxGfHo5hnEm5aMBCVrveuOVCHjHLKMHdi4HCZQCZzcEoGkVRHiG_ZKW3gA7rS2-h32UggVGrmOlMsUTr2N3Z7e80Ii7QSREoRoXxUDXCT7_MHhgUtuA-COThpNvFksT30nw8Hq7LTxHBW8imOc8ojekJ8YePS1-SGqair8ZTMMAdHBg0Ik-MMM6KvsJAxAX2eEUNqOD0EFBCmx8LA3plE56Rd2oaaw0k2FtRZDnkMDyPTnBhvPRk2pAmFk5Z-QjUFepfdnn7iDJXVfodwrVKUNblOuHSvJnX8vzRN_arMIECBnRkAgLVn3Cg0eN0lPIh6gQZ2bSZg_bbX4SkhOLcckWncOqCQHK1c6qCRwDGqyyQPn_VtuKFDKfiMcNp7ZWxfBccefDyEuc22aYTDB-k5esxBGO20ht9ObpfBfzr2kx3gl7q53isv2EJkMEIoUUbEEeqiXlpMHZFUsBRewf0q-c0RaZprPqk6pGAXzuGfUPtIpdUZDIplnmwuP7DTzYM9zdNeDh-jbIyf0sRLUcWjw2xrB8WGsv-Rm1dkNpZBWy4yqJtuKRqiT4umm2I57WjUWprcvPkxIMTg9Hrrerh8sbsB-talMJTxTMrRpizmZNeFlw4RfDO6xX_ksvJkb7LMm-agBRkTSLRuZylVwtcrUucYBvwyCcitYZctO7cNG4PzR62kMnhs1iBZjHmPWasX6-iunoyEjTE7wW3am61bDo8xFOjEAMfPoarJKfO1TnhStuEk4y5bPGyPYG6ckigzc2XjMgpH5lsrGbENe0Dc0BqWsbEpPpexAhMJHkE0xyBmF_dc3rRNEPILvjDYb4zaqAsB2IzgTtDmhItVBOXDHEqGqYBbVXAZR-TrFbJgTMHoOWCL0kIMU6VKtdr6OhP3MYI0kC0NCQcCxlAjL4p2svPbQcDsqRsE0c5hX5RxaJSgUWfEyOD1nj59TKyK0-4R64iVUBxR8riQpl8e0wijZYkUTKHkddMK7Hn0GFOfHhJZCZIimMMinHGwE5tbaZxt4D6fTGtz-Xd3d5d_lDd1d_MvAb94cfmne5ev33764sXlm7vaT799-TpQ9OmvXuyvmrP6o-uuv4c9OcxOgfTdzuQqxN4ATh0dePJb5T4N94fP_V9fL_7U6_JvBp1WK_x7TElZOZsyR3L2G8gj5C_qItax8zYoimxoZiW-uIHcDEBNJNdknCxcc27Sy1Sm_3SusdeAm5ukdtWuJYOEVhG6aF06T-fxGZuYh5bfGg-aG3g_GobOMtRIoFlzFDGHOJ2FkA0zYDuJELytngoz7oDvpo0mFIAbSZXAdBYTHeoYInqt0V1FqQYYpf_k8hzD4SzFU5FlKa47Q964ag2inAksqi4UF-mSgRx8SuR1RkxmSpNoZcK4lofhLu25ApXOITIGN8u2R5OebYNBM8PkOs09x_ptbO13jXQVD-MyQNcx2s2iKjHz3M-zEG908mbSy_wAVsqpjYu2Up-ImZ0bqzMSOsMEIx0UPdniJ5SPbU36ejAJhj95S4xBeK5PVD0n7KkKUCbAno4zhOIUZOTLslIehw43QIuDt8OnXnBqR1KjtMq805FsHKmV-Cmdml46NgbRHe1B4sX420Q5wg4uOpVFVW1XjCR9k9eHCOTvsTexdxqQ6lEDeAPvU-hnnqGanGNvEVZeiS9huTN44ve0iz7aNyMDOwayAmHTohZGJSF0TsVnUSVO1DLrb3VmKQ1m5Btm4yCawGJe7ZoNGKKALzcTlwXAU5lpiAsrKbm5zqRIzJWoi4tlTr3FWiekRoEJlSaHx1ryeHzf2RKhuTbi0tHP2TMNgGOX4MzRd0mj0bItna21jkGE0RJrIg2AY067TS0p4IApZBJhy5Ma6EiMe5pepr0SC9YZdx3hV2RYqCF6IDoJxTLCjvQpGr-CR9vNAzOgxGEWQ6uTHvKdMaOQ8MTy0bprTogMKD_IlKm4BelgcyM9I5iU3j_mDJJzhocxnFpM2djg5ta0ThuhHOMyGMtEkgyo8tZMfGv3-lUhGkOe37djz5kIGIX2NEKfzHzlPaNERilWP1qVjNfqGsNAKS2xwl3Yx7EnyaiCg61AiufcPhaaRBxnJJuTUmwqOm35qoTtloSGXS5X4h8cQ6cJ2EfHKltxjZJvPDsHU6SMMhfCW9_LecX0nB_LweUE3BIH7KNeSZAVioEOQVaYneGZ7JrU1AQntqwm9W8tvQOvSn7omazYEgcPRwOmNbeHBj67ca3gS8CxdaMxLUfmxyPWF2iosAmOO0iwmKFYYOubemoxZ5m9LGF0M0zUth27oZkgPHCJCs8uu3WDegTlBg6D1KbiyTLAlb3cFqwSHas6XQkhG3DtHVsyKcQgpntiW5dSpZDIERXBPd7UUpTN26aQO8uMgE9NBogW82-_0KYZx59Dlgo8L2LcpNSrJrxQzkIYWDEsrBy8eATyWE1cS6_kkeM9Ocola3xKyhsFU7bRWBB2AE5QYW410l1AqgXuI2xVymzhUHCONk43Rlid9q9MIO08paVsTAWUdYatpasoTolZQuWgD0Yn3CNGIXTjkOYSllcG0v6Vj2DX07oooXZCaMGowrMLjkQmLHPqIEhU6MFltsCXbq0UvuiDTguoUnqNvK4TQ9u-9nthJUfhJV3Jq9ZScgOD7Q2hbtVQuDBLpsu3I4vxYpQXwBVxoEB1n-Jjg06IkCY2Qe9W-o6Y5RnlBjAbcaxOJ8c_nDEyFmz1x2ZszbCDbAL20vnCXTtITDINVITgcWYaY-yMJHZup7UHgLvSKJvxwvaI6U55I2ugQ_OnY98aj-5ClNBLUzfT04oUhD6gFTY4S0Ed0U5bDYXTfcSzWzfF5hMEMoVO02tNRWnLZqMqds9WVbQwmyWUGRmZLZ2JAPWe-067SrrMRBRaTSJWPDmMG4VyjDSlKgLbT3fXGSMWm4xreEPGPm0eegZdt4HWlinT1G1VysDMGGgASxQ5kQaugNmxEqeg_MmtdDeEu8LH7zqKEBrjm2ymGFEyfSH-pAHL3C2JhoDIWciQaABEOyil05d0TaBIJgWLTwO7dpxcxaNLJs04IM23EL2xfKRchoZqaCcLGMThID1vanUQOSZuv5pbo5GzxH1XRy-lvzkw5uAE5bZSnAdS3Ww-GYTMMGWHiuqbo7CF21Nt_al9iATa5zjFe8wHUadWK4Uti6FToA6JwkKl0sQV00mb3kXQGw891qyDiRg-gh5hyFglycxzjQWUFLiKJU-lp8AGLIbqQoT0M8Bv1MG5BwO10rFyxeBxaGPOhNHa1k0AAS49txY9iph1bUKWpEpV5wh2-X5PEqK4Qd6WvqKr01FgKyOLUTQTrXusnMaYWuU8dOQEWwds05gH8W7SLZXzFEjrrcTa0mDVJ73tFej7Jt0xzT6dMGmdOeBC6T04r0sID88enQXXS84IJOoOT74JIeNd6JIgI9CWU2FugTuZn1BMDtxMibSNk0gMp0yMJkxReORcNI2cRluUG6lKa8Wt5mZALG9eEn8747S4eZRhTsAEY903gjoEVKeEZMnNPDJidnZTViLNwKHfoKgqG5prPzzxMWnvgHdsUAOsrIyaaFtFytMmOgkXT9lhlXYoRqA9M4wDGzjM0LIrMwnZWZ4SpZONh5sE3j0YdDtpMZIRC6ZqN65HufHWUX3nadhszm8ygWhMmVrq8EH1WQ83xrzb7y56Yfd1ptUDA1jv1Fl9OSbO2alXD2mEpTAUGLPAD916O18bonVu4Rn3ar9V9Y1tQNjrdEQ38XGDgoaaK9iiTLhzSkjFNuEjRqM-yNl4U2xIL1l0aCkEWbbECqBNICfbzWjqnLafzo1kSle9caYCoEZU3xOphBhgb7CtszSpxmpAK9qqMySAtSMjJZO1LbMCuU4ChEMvnAUjCyi2XBpgkTVOaUjKMlcUkOBCkHXZ-ogj8arlVkayOkI9cbNT0cKgE06CEUsrh0gmRZkVqzK59-zAGAauTheISJbwcAp-s7xwnO3MW3TQ6PIj72So6OCgfb-10oySOSwKv7mpvzNTKX-lcrABI4DPipGqxZ5jEqaeeQfd0G9jB7dhpVW1mbJNEkK22cMWfqvkLFKIRzVGrFI61lOWWEUfQzdtt1p2IaVSSJ2TPA-iVm2gHK2zzDEU_2gOw258AE2J7YWYOpBr-paWhbWTh4ftWAInEUPbVkrea4k5xGktspwOBV5thxVWO9zQeadEpRIg4i3MZCuhV5DkTAjqSUzZPXHE1cbRrcuzOGYzuAvkmMMUmljftHskYsrEedOE46DjXByzbT-rpM86dE8OTD3i_MM4IlGUveVk6Ipy-PsQEkk2KkpIF9zIMzIrLrj-0I5Ku7TRT8o5rVxj2-ID7v_f_5ju8-vz6_Pr8-vz6_Pr__PrT_6j78-vz6_Pr8-vz6_Prz_1urvb_7vz_wE)
Takes "AH?" for "\\_/" to save a few bytes
[Answer]
# [Retina 0.8.2](https://github.com/m-ender/retina/wiki/The-Language/a950ad7d925ec9316e3e2fb2cf5d49fd15d23e3d), 104 bytes
```
+`^(((?<-3>-|/)|(\+|\\))*)((?<8-3>)|((?<3>)))_(((?<-3>_|/)|(?<3>_|\\))*)$(?(3)^)
$1$#5$*+$#8$*-$6
[^-+]
```
[Try it online!](https://tio.run/##PY@9bgJBDIR7vwaLtHunkxUhEEUUyjxEnBtSUNBQIMp794tnFtBK/vk0Y3vvl8f19rdu6/d5Hc9zrfX0Oe2@psXbUmNcIlobGukxcbKsMreGlxSSkuKpLvVUd21uVj7KZl@GsWyOZZjKwX7mafy1dXV4WDgi3DwQnqVlyoLQHPBsIE5CDUgDagmiO9kQy4CApN2hMQnSloFOLk7gfYIeA5fDjdAzSZNITmLJeikD2BqocHVaEdLokn6ZLtHZ2g4N8l4QPa3vv9KvBfqI7v0H "Retina 0.8.2 – Try It Online") Link includes faster test cases. Outputs nothing if there are no flat bits or the input is invalid. Explanation:
```
+`
```
Repeat until all the instructions have been generated.
```
^(((?<-3>-|/)|(\+|\\))*)
```
Start by matching either `-` or `/` (removing from capture group `3` captured in a previous iteration), or either `+` or `\` (capturing into capture group `3`), repeating as much as possible, into capture group `1`.
```
((?<8-3>)|((?<3>)))
```
Either remove from capture group `3` and capture into group `8` or make another capture into capture group `3` and also capture group `5`. Then match the flat bit that we're going to create an instruction for, depending on which option was taken.
```
_(((?<-3>_|/)|(?<3>_|\\))*)
```
Match `_` or `/` (still removing from capture group 3) or `_` or `\` (still capturing into capture group 3) as much as possible into capture group `6`.
```
$(?(3)^)
```
The match needs to reach the end of the string and all of the captures in group 3 must eventually have been removed.
```
$1$#5$*+$#8$*-$6
```
Replace the flat bit with the desired instruction, leaving the prefix and suffix unchanged.
```
[^-+]
```
Remove anything that isn't an instruction.
Validator only for 29 bytes:
```
^((?<-2>_|/)|(_|\\))*$(?(2)^)
```
[Try it online!](https://tio.run/##PY@xCgIxEET7fIdCIsjA1eKV/sRyo4WFjYVY5t/jzkSOQLL7mNmdfJ7f1/sxjvV2H1ut6@W8XNnRemWPaO10qGtd2tbGABElwAgUBANZlnyyECwgkQ3NRaShaNCtQEynGmEbGLR0OjwmQdryklOLE2BO8NGl5UQRRD7WJLJT2LJZ2kC1hVLAnVeENU4ykzmJY3s7PQizEPpb97/K7wX@iPP@AA "Retina 0.8.2 – Try It Online") Link includes faster test cases. Explanation: Basically just the last part of the expression from the full program above, treated as a logical match/fail result.
] |
[Question]
[
[Robbers thread](https://codegolf.stackexchange.com/questions/242618/slice-the-source-code-robbers)
# Cops
## Understanding slicing
Remember, slices are zero-indexed. Take this slice: [2:]. If the string is "abcde", the result is "cde" because the slice basically means "get all elements with an index greater than 2." Let's try [1:3]. If there is an end slice, the end slice is not included. (excluded) Therefore, the result is "bc". What about [::2]? [::2] means "take every second element", so the result is "ace".
*Note: This is not a list of all the slicing features. For more info, see [here](https://stackoverflow.com/questions/509211/understanding-slice-notation).*
Cops, your job is to write to a program, that when sliced, will input a string and reverse it. The slice could be something like `[::-1][2::6]` which means "reverse the code, then get each sixth char starting from index 2."
The unsliced program must be valid code, and it does not need to do anything. It may not take any input. A valid program is a program that does not have anything in STDERR.
You must specify the number of slices. Both the unsliced and the sliced programs must be non-empty. You must include a slice.
## Scoring
Your score is the following:
$$
(sum of start slices\*2 + sum of end slices\*2 + sum of step slices\*3) \* code size in bytes before slice
$$
All fragments not included default to zero. Negative slices are made positive (-1 => 1, -2 => 2, ...)
Lowest score wins.
The tiebreaker is code size. Cracked answers are ineligible for scoring or winning.
[Answer]
# [Python 3.8 (pre-release)](https://docs.python.org/3.8/), 1026 bytes, [Cracked](https://codegolf.stackexchange.com/a/242818/84290)
```
"""#ipepfrvr iai nln t(tT=4(rp9iur2nei3p:n)u t4t
#(pd2)re3[if7:n 4:tg8: (2-=o31e)7]v:4)ae0;lx%p e3r(c2i"(8n "1t "7(e.3ixj0nio2pti1u"n7t)(4(#me) ae[npe:o(v:tcv- hv1 ra]o,aapmanealdnpl" (lN s(o u"pum¤e ,#!ez#"xi%)ip¤;t(#p m%roa¤irp"n (#t o!((r"i d¤ne,#pv"!uai%tlk#()b")(g")"m#;1!)p4b3r"g3i)i3n
n1t#m3( !3)N\3;O"1i
T3n 33p 33u &1to*3(pV3)e\3;n"1p "3p )3ro,3rr91i 93i1*3n5[3n*o1t ]3ti)3(d)3(()1i )3i )3ni
3nnx1pt=3p(03u
3uic1tnl3tta3((s3(is1)n 3)tf3[ :3[(
1:i 3:nd3-te31(f1] 3]i_3)d_3)(d1; e3p l3pp_3pr_1pi(3pns3pte3p(l1p f3pp)3pr:3pig1rn(3rtx3r()3r[
1r1y3r1,3r1x3r]=1r[f3r:(3i1)3i2,1i373i] 3i[i3i:f1i5 3n503n5 3n5e1n5l3n-s3t1e3t1 1t123t1 3t1i3t1f1t1 3i103i1 3i1e1i1l3n]s3n)e3n) 1n)83p) 3p)i3p)f1p) 3p)03p# 3p1e)u1l3u;s3u
e3u
;u
33u
3u
i3t
f;t et 0et et evt lvt svt eat at 4at lt ilt flt (t 0(t (p exp lxposxpoe)po )po6)pk ;pkiepkfelk elk0xl( xl)exl)lel)selieeli cli6cei ceii(eif(ed (ed0xed xadexadl)ads)a(e)s( ;s)78s) 7s)i4spf3s. 2e.09er 8e.e4e.l7eis9e.e2e. 3
n27
. 4
.i9
tf2
. 7
.03
( 4
.e9
.l2#is3p.e7T. 4rn99"""
```
[Try it online!](https://tio.run/##JZNRbuM4DIbffQrGRhdSkQaW6Y4TG73C7EuxL5mg8MR0hxtFJmQ58Ox5epJerMtgHj78NPlDEkVZfqdfU8C9xK@vPM8LFpIx3iJwzxB8gGTS60ttohx4iVUgRmmDXSDVCbLCyFDZSHjksWkD1G1637dgqqeXCR3Z5nRra9tT2fn1QYAwmnPFudkHyF2CvDG0Q17/LQNPlSR2Sx6aZE1tiitZ6OkYhNrJ3Np0vj3Br5uD2J@mbd/LtQ/U@yGIz8H47zCbCZZcluvnB8G22NB/Rb7yg2X5/OiSKQSuD3HqPz84Sh7AFAmmjTExZxg@PwJtC7nlm6Xnh@QvhbE/c2vec5tfi85trNQ/MebvyJYxZMGl4ooGNmi//8Du79xx9ooBEEVZ4C@Xpkc08g9a0nrInUCuNYtx2mKMB8dwQHaPGJ6PGB4nvYsTJrZoBsVYrVu8EzjDEFYn6QXFlLp2hgufXQoeU@rVO6Ph2Vnd3KYRj9Di0WSuZcA2DPiUCJ0Z3QkAT/yGdlDM4DqdhYBHkTeU@OaEDUqYUdQvxut5R61ZrbUo/O5iMBjTqvPTHo6Zi@43Rqe9OM2dXlw8jhhboz3puautY2yQT4B8ZOR2dPwM2mup3JVcePYYnmZMjhRwyVV3VVgZ3T1mVyp3JcdO/acZgyUFXLB7FAuKvkc7uj9xiVKo6sNb1L90My4ZKdAtGd5V0fWzsUsAlKCkP0q3BF6ZFeo1p9R39QlYGRUw6jd31Xe86t2tMs0KWZlA@WblAp1cmOQykr@AUq7ewOotKZ68nckzKXD2/O1MqsRsiEdDAyjlqrr2Ayne9sNse0N2NtDNttnPFprZcj3LiPMOKtqVB4qwpx3VtPMN8XzQWPOAWaiabAd1tuNDlsZKY/0uMTP3HB2yna8K1nnvqHlVXwyHg/7@X1//Aw "Python 3.8 (pre-release) – Try It Online")
Uhh, have fun I guess. Still not super difficult. (one slice is enough, just like for every other answer). This code contains non-ascii unicode characters. Those should be treated as one unit (not be broken up). If you use pythons slicing, and the source code is not a bytestring, you should be fine.
[Answer]
# [Python 3](https://docs.python.org/3/), 181 bytes, [Cracked](https://codegolf.stackexchange.com/a/242623/106710)
```
if True: print =eval (' exit')# not open u
exit or ( eval)('14')
# NO
open or 15* id( int( int(int (int( id( print( print([111][:123][:55555-11111111111]))))))))#11;
```
[Try it online!](https://tio.run/##RY3BCsIwEETv@YqBHLIRPKy1l0p/wV68lR4EIwYkCSEV@/UxaQvOYZYdHjNhSS/vmpztE8AtzqYDQrQuoTef@xukAPO1SWkJ5xPgg3EFnSFqDB8BQkU1KT4rLSSugyiE2MgCcHuAfRBQamm12k/bV/N1kPYzMvM0dnxqirdVR/5r0rsk8yXnHw "Python 3 – Try It Online")
Much easier than you think.
Slices: 1
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal), 22 bytes, 1 slice, [cracked by lyxal](https://codegolf.stackexchange.com/a/242632/78850)
```
Ǎ⟑(hn\++Rnẋ::ws=ß⅛)¾∑t
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCLHjeKfkShoblxcKytSbuG6izo6d3M9w5/ihZspwr7iiJF0IiwiIiwiSGVsbG8sIFdvcmxkISJd)
For once I decided not to take advantage of some strange quirk of Vyxal that only I know exists and instead did a normal Vyxal cop answer. Enjoy!
Lyxal found the exact slice I used. Nice.
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal), 18 bytes, 1 slice, [cracked by lyxal](https://codegolf.stackexchange.com/questions/242618/slice-the-source-code-robbers/242642#242642)
```
»ż⟩" 3⅛⇩Cݵ×∷İ»kPτ
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCLCu8W84p+pXCIgM+KFm+KHqUPEsMK1w5fiiLfEsMK7a1DPhCIsIiIsIiJd)
Should be fairly easy but I'll see if y'all get this one.
[Answer]
# [brainfuck](https://github.com/TryItOnline/brainfuck), 37 bytes, [Cracked](https://codegolf.stackexchange.com/a/242652/)
```
[,[[[+]>+[>++<+],[-].[<],[--.+[<]]]]]
```
[Try it online!](https://tio.run/##SypKzMxLK03O/v8/Wic6Olo71k472k5b20Y7VidaN1Yv2gZE6@ppAxkg8P@/oZGxiSkA "brainfuck – Try It Online")
1 Slice. Easy as the question itself make cops easily brute-forced
[Answer]
# [Python 3](https://docs.python.org/3/), 784 bytes, [Cracked](https://codegolf.stackexchange.com/a/242638/110555)
```
"""Dntii(():n1n]ron):1i(]n)-(::n~rutnp1:p:l1('pn:np(-()n[i[t(r-:t~::rtn:p n1lp1::1]]ippy]iri(1[)1pi]noi)r[):)]epipnu:[tpp((:n~n:n ))s(1peu)pa-pwt[nr:nn+ru:)ii]itu
ii1([)1)sp(:tu-li(+)(thi
sn(rdp]1nit tuatt:aip:p]ntiu(turerp[pnthat[](1r]iip+:i(lii(p.upu1eesp[ne
:np]rait upn:u:in)
eutwpt
t:1dn(iir(opt(1s]tat+irert[i()esi1:rink)p(r1:.pn(r[]etnntt:sple:-idnt)[pp(un(ini?p1n:
(enpit)1 ei[ir(t((snup=i:np:[iei+u((=i)ttnnriu)(tn=ti[tn[w[tp:n)=ntnpnu.(pi
u:=+t::-tt:nnn(]=n)pi(
u[1trep>pn(s:uots:]nn prrtptd]
pupupprpnapt1iptrtrn)pr]ns[:[r(pii::inr.:isp[)nnnu~e(sitpplnt1((
nn
e~:[ei(aspsu(sp+p(:-i[l[:)t iitn]pn(:et[rs[(nt)tp:n(rnpapttra(u[n:ptt n-eiunt(nts~(stsi(]u(psripnyntpirp)]p:ti(stnnprp[tuenii nurepl:ti(r1ptpi)(1a-(:nn(-rip](1t1t
rtt1oinp:11]tntrnup)r]ni:)(n)([]mpn[:is 1t([ppi"""
```
[Try it online!](https://tio.run/##FZPBihwxDETv/RXNXiLT9IDITTDJJYf8QQ7Gh4YxrEinWsgyy17m1yfas@VyvSrZPuP9wvfX6@3t7RdClagIGM0vFGGlhrKTCJ4@A8ZicjJ9MwiMdiqoWoN8l3iKeEBsBZ85J9yamn02dSWuhU0bLi1ei5TWTQ1TapgRpXjKraUMYuuz2LHbR1S4AJtPKapNYy6qTClUhpHE3E@lrVC86zJA/rDG0FhjHhFyqIm15JkU07tbNcT7EbURe1O1TZTOpLXbtMm9D6voS0I1P1JlJuAURVn6jA@LJYQfIFWny4J4tDhi01SOqlT6UBZX/C1GznKzNFRbDyC9DDu77PpAlJq4M2WgP40hC3WYRuG1a03pIBqYdtf0IVW7bpPoriVSyHUmLO6ReaN@ZHKCckd2gnkj02XKfQuRPV8EQO2OYkrLrBze7UdaGjKvGNKA1dzD4tEWS3wzNxwWrBYenve8YVSpnroqGYPfRDOhksLz2Wlo9nYimGgBlv6U2pWOYWPSsC3r2bWeVUqsqoGWb0uP6qNShvDlnByWL4YfNGsuTcSKvetE5MR40oiRqzfJhueifCJM3UozCc0zIB3XmB2qK7JfO78OnC3nCvGRG5sR7Hk3@w6OxSP40kyVuQWScVpJSJVCKFTbP0NNxJWDsiPNz/B6/e7nea1/Lj8f/wE "Python 3 – Try It Online")
Only needs one slice
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal), 47 bytes, 1 slice, [cracked by lyxal](https://codegolf.stackexchange.com/questions/242618/slice-the-source-code-robbers/242648#242648)
```
»β₀₇⁽sßḋ∪₁ĿɖC↵‡_Ẋ$ƛµ"√₀tṠ⟇¤H∧+(Ȧfꜝ⁼∑↵dTḋI∷›»kpτ
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCLCu86y4oKA4oKH4oG9c8Of4biL4oiq4oKBxL/JlkPihrXigKFf4bqKJMabwrVcIuKImuKCgHThuaDin4cwSOKIpysoyKZm6pyd4oG84oiR4oa1ZFThuItJ4oi34oC6wrtrcM+EIiwiIiwiWzEsMiwgM10iXQ==)
A bit harder.
[Answer]
# Python 3, 10000 bytes, [Cracked](https://codegolf.stackexchange.com/a/242651/84290)
```
#u]]nppt]1ii:up]ppnt[::((pn-)p]]nt)1:u[[]1it][p-n--p]t1i:t-p[(1i(-[tp)upppti--[upnt::p):up]:]1)(u1nn[-p1)tt:ppnt1np](-)()puu(:-p[[u(:::1pt:u)[11[ui][]ip(pn)]pptpiip(-u(t-:uittp-t-p-it-u:1n-[:p]n:[upup:n)pup-:tun[n:pn)i:ptu:1i)ippnpnpu):pn:]:nn:1-ip)1p(t:t(-ttn]t:p)(:u[[]t[)utu::(i--tt)1p:u1)p(u(ppt-[)([u]u-[p]ptitu)[t:iii-]ui(-ipp-pppn(ip-(-pip]nu(ui1-)p(pu-1n)up[-p:-tppp1u:t-:p1tnp((:1[n[-nt1]):t[))i-t:ppn:[[1)p(]1uu1p(1(un(uupi[:]])]):pi-pp1u(t(pp1-]uu]u[n-t:ti-1u1-iut]1))(tpp)n-pi[u1-))t(u[1n)[ut:ppn-:1t11ttn(1]iupi[p)11]pt1]ntni:]ipu(u-n-i(p[1)(]i1:i]t]n:]1:[p[:]nu[[11)t]1)i]n[it:p]:tp))()n:p-(tt-tpup(1])n1]1nu)([u11i:u)pp1(pp)tnp)[((:[[1[][1[()ipnp)u[1[p1un)])[(p(nu[[(ip:1:--tttp[u1[p(ptnp1tpp(1p[]-]]i[-nuntnpun(1t:tp-ppp1tt[n[]uun]np1u):p)pt[[-n:[1i[n(uu[n:i(t:p)[p-:pi)(pp1--]p)u)t)nupt[[)(u(i)[:](tp-[([p-:np]-[uii--u:)::p-p:]t1i](-)p1tp1p)[tu]-[-tt[n[1-]]1(i(t](i(uppup-)ii-u[u)p[i[)(nt([]i]1[:u1])i]1]u[np[ntnut]i1)t)tii(n]-1pt)itp)p]p-p1unu:n]((1]-]-[(-](tnpupp:-p[u][:]upp:tu1p1t11u1u[]pptpui1pt[)i(i]pi[n)]u1iu[i1u[p:(ppp)(:u(p)(inn](-)[tnp[p-uun)(-putpp)-ttui:1u[pit(p1p]-:[[n[uu)1i:tpu[u)n(ppiup:[)ppip(tp:)t(1t]](::)[n1:1tn(utu[[---)n]npp-tpp]in](::):tpt1)(pt1tu:[-ppupi(-u)-:1t(upn-(1-p:)):1t]:pt-p(p(t):-1u:[u[:i)():1(1))tn[utn:n1)t1pt1iu:)[tp-(:(:-(1:[)pu]-in)p)[]]tpp1tnnp)-pu1i[pu-ip]ii]pt:i](t()[1p(-)-t[pu[()i[t1-)tp)pn::pupnpipti-:[):upi1[1]i:]nu:p]p:[pt([t[pu-n1((-](](p[iu-u1t)u)p)1iiuu)[)]-nun]]pn:[t[1[nnputu-un]npt:u(up))):11)1]i(:n[)(-[t)]tip[ppi[-p:p)::-]n:](p-()t(ppp)p)tnp)1uu:(nipuitt)-:1--1p]un-pp:ui:up:t:n)n]]n)[(:tu]ippi]:[tp1in:])[]t-)i]1-p-)[ttp]u1:(1in):(pppipi:p11)p[u11:)i](-)i:):np-[1ppn:n[:-:[p))i]ntt-[ip(-pip11ptp:)n)pp-(]:[:t:)p-p(u1)p[n-[[]p(utup])i11:t(](p[1-(pp-:npn[:p-u1itu([[up][in(p-pup)t:(u]ui-pp[[t::((pu]]pt1u[:()t:n):-p]-uui]pt[:][1)t1t:(p(ipnpn[-1:))-[]pn1]]:in((ni)niu](-npn(n-:-:n:ut():)pp]1uu)p1::]i()[n))i]])(:[inin[]t-t--npi(ni-1t)-:])--:ut]pn1(tupp]np1:p)]u[:[(1iu)1-ip:1[tp1[p(:p])1u1-1nu1-p1-1t)-pu1(:1)]up1[]n::)]--()pp[1pu-)p1)p1np-]in:)pipt[t1t1n)1:(p:]tni[i(uu:u-11]p1(])nup(tpnp]p[)n:1-[p-1t:-:](u)1it[]-u1ip1]1pi-pii)[)(n(tt:p()(([]n-ttp(i([p1()np)]t1]t:u]nt1p(1)[1puunit)(u[ipp)(p])tpp]p-ii:n:-p][pu[-t:(::i[:u]ti)(:u][(:pp)ni([ip[][1[i1)p(pp(11)]1ti1p]-nn)](u(t(nui1pun)pp:u([[nppi]1]]ti:t-(p1[it:t):tn-(pu1i)pp(:ttnpi(]p]-[][p)u[-u)nini(i[:p:]-i)(t1--:1[:[[:u)[-pi:[)[-ppp)u)u(upp)]pt1[ti](()1[p(-upp(1(i][p:1u]t(i(1]u(u(p-::1tt]n]p:t11p[n1()ni-[n-n-p1-:::t[(pp[u]))n)))p)upnptup]:-:[:(-((-[[p-t[n[]:u]nn-1t[p-t[-)t-pp1iu])-:p:p)-p[:(n(::in[pt:upip):-u:][u[1--up1p:)(-:[(in)1(t]-:t:p:)t)[1:t)unp:-pituiu1[n[-np-p]:(ppup[np[)p)-u[i-u-([)(](tpi-n)(ntpp:p:t())ntp)[ui-uu:[1up:1][:p:p(n]u1t:]iin[tn[ipn)pip-u])t)t-]tp(:1:i]tp))tuu:1pupi([nu]pu:]])p(u-:1pii1-(1[:tunn[pp(up(p(pin)ptp-)]]]p)(tu(p-p1)11:i]i]i-:1it1[(tn1n([]()ut-]:it)[)i1:(p]]nni)(p[tpp)[p:[p-n::(ut1iin)[n-1-nin]:-u-p-]((i]:p--)1npnt)i:(-]n1]pu-]ittpp(1-pp-[(11i)pu1-:()()uittuu):pui(n(:-nn[(1]1tp)([][]pt)tt1:n[ii1np]]([p[-ut[1n](t]ppt[[)1(i(up]tttt1p):)p)ut)(u([:]-[[[i[nn(nnitiu)1(:[ntti[ti([-up:[iu]]]-pu]1(ii)-npppt-]n((pp)u]p-][:t]ui1ui]]t-[()-)[-:]pnpni-np(p:pp1pt[1i]up11ip]n)u(:(nn-pu)u-uutu]]:n1u1u)p-1[1npppi)u-[[p:n:-(]iu)tp[:u:tun[i:n]p-p:1t][:(u(npnpiin-ttp)]ii:-1:tu]inp(puupn-)1p-p:uuuu[-][([]1np1](1(]]-])ni1pu-(-([p]i:--ip(i[iptu-(-iiiup1))up-pp[-)-)[i1pp-ip1[-up:p1[[n)pi1[1upnup(:nt:t](up][)[:p1tn1pun[:tuni[[[ii(--)u1]p)111pu[[)pp[ni1n1)t::pu-)]:n:n)-(1[[t-]n[p)pp1up)n)p]n[pu]u]u])]-p(i-i[)pnpp[(t)(:[i[(][([p1p(-]1n:-]1[np-n1)[n])uu-in:(n(:p)]-1iup-u-)t]]utt[)][p-:-]u-pt](p[u1-1[:-1:ipi)p[()p(p1)nppt-]:11u-]-it-(pup:p-ti[(1p[ptu-u1n:]--p]:))(pptnu)ip[pi:pt1p[(-iunppu1tn(1)))1((t-]t1]u:ut):1)[tt](ptp-[u[uu(u-ip]-ip]-u]nnu:i-(-p-in:u[()(t:n(ptu)t(n-[:-1iptinip11(t1[u]11][-t]p(t[u)uuttnu-n([-(nun[[u]u)t[iuitn)u-(()pnu)pt-:-]i[u1:uni):ptpt-p()it-pptp-[t::ntpn-p:(1(-(]p)][u-p:n(i)n[up]][-[n[nppn-i(]p1:n1[)ti)p(t--:(u[[))n-t:(:t1ip11pp:)[)t(ut-pun[ui]:((pp]pp)t]-[--p)1:1p[)t(n::u)t:-]:)n:])]([][n)(u1(-)-:]1[(ppt](n1u:t1up)(:[niup[-]pi:u[u[pp:-ut]]:(()i)t1]:p:[-]p-](])1tp]n-p-p)n:i(u1]pp[pn(p]]pnp]pn:ti][npn-t:[::t1()p)-i)]ip]:tu)nt)tpnutp)([(i-p[p[upppt]nn:nu)(it(p]pup]i1[)u)-)()u)n1:in::())1]p1p-i]t[[p]i)1([p]-p(p:i-[utp[:uii-pi-]1[iput[pu]p-t[-u)iiu:p1:1:tinptupi1ip[n((1pn]p(t)111ppptti]tu:pppui-ti1:np(i-[t[1p[(t())p[[t-u)t]puu([p::n:np]tpu[]:u]1pnpt1:u(pp)p)u1]1i)1(n:1-nnpt:])-i[(t[t[[:)[([it)1]:i))t1p][upt[]1-p:pp:[:n]]:[]nt-i])u((pu))t)[1it)ii(1:nt-)u](p::1n[p1:)u:p:()nip(n[[1uu])p)u-piunt[p(]1]pp-t-:i1u:u-pp1tpu]np-:()(:1[p:)]:[npuu]])1i)n1-1:1int-tp:(nu1][i-1t]11[[un1n1[)]pi:t(]uuiu[u-iiut1n:p)(ipn-()n(p(pu)pp1t)niu1n1i(nt(1p]-:1[[ppp-t]ut:p[-[1]np[upin[(u1u(()[]][:t[ppu)([pi1u)p--(][)(]-:)n[t[p1i(:)pi:(pu[tn-pipnptnp(tpp-uiui1p())pu::u:p:uu[u1pt)-1)-)t(ntuit:(-p((-pt-p(i(p]))[(tp1n)]:]p(ip[]p:p1tu]:-1:ti]-i:u]t(:u1)]:i[))1(t)][uupnn-1[uu-pt(pn((---(p[p)t(ip-:pp([u[-n]-):i(unpi1:]p1n:-1ni:uu]pp]-tppp[t]p1p:(n:])u-)p:p-:ppu[p-([)u1(p[uu[i]i][:-:)1[-t-1[u1n11inpptpi(pi)u[]p]ii1(n1[n-n(pn1pinp(iu(p[-]-1:t-(]]np:(p[11)-[-[ipi][pn[]:)(:(u:]tp--]ni):])11(-i[):-[i:1upt-)it()1u:n1[11tni-tu]u1))]p-i[-pn(t)[::1[11tp(1[p-tipn[-p1ppp)n)t-i1[1)):n[p[[pt::[tti):)[)u)---ppni[(:1puiuuu(-(]:p]ut:1-pn)[-t:]--(i[t:[u]ip(:p]:[tt(u:)p([ppnpt(]-1pi1tnitt)pi-)t)ipt]:u:t]])(1p]nup)][iip[pn[u:1)-]n[t-)n[1:i[p-t]))t([1])(it(i[:u1:[]1u:u):[ipt[](ipnu)iu)p:p)]pn()i-pp:n)n(([p:ip-i:t(]pp)utt:p)u-1)(([pup-ppn(]i(p[-)pp-n[pp)11[(-ppp[:ti)p:npp[-]1i-n[]u]pnp):u(])u]pi-u)(ui[]p:p1up-nu-t)uppu(1upp[()n11)](]):]in)-][:p:pppit](i]tp1pppti:p-1i1:nti(t11]pn)n(]:(pp:t:::)p[((1pup1n)upnpt(1pp]:itp-nni()i1p1p]11u(i-npipi[p[t-[-1:1]]]:(:--p([]n--)]i-n[(]::]uuip][:p]-p((-nt-1--][p1:1:11:pp[)nu:(p(p1ni:i(])u:)p():1t-t:pp-[)pnntun](1-[uii-(ttppnp))1i1up[n)p[((-tp:(n1:p:(u]:)1:11[ipi]n([i:t):]1[((-t]1i(:p]-1(puppt[n)]nipiu::-)(tn)-1p)iii1)t:1i][p[-:tu:pt[---:)i)t[-p)-:n)pi)1tp1t:-(nn):)[i(:]u)):iitu-:(i)uutut:-))t[n1][:[p(i:-p-:]piu])pn1n1:npu[p-]((])(11ttn-1][t]1-[upupp:p1)))p-[(pn:p)u-[tp:)(p-tun1-ppp-:[p:-]nnu-:([[:]p:::(n([tu]1p:[i[1]:up]up]-p]]ii-u:[)pt)]p(it()ppp]t)pn[]]ui)u[u[)pu-[pnppnipp[i:ntn]1](:-i[[:pt-)n1i]n(1[-t-n1][(--uu(]n1)]ipn1pip]upu[]1[11u[:u:p(p))1unuu(t:[p11u(]pnu-[-1)(:tptp[]p[tuu][[)1iu[np)(ptn]--pi)1i(nt])pi:)(in)nt)[un[ip]]p([1]u-un-t)(]u()n:tp1[in(ipn[-:1[-1-uu11-ut):p):p(-npp[n1ppu1tip)up[:)inun--it[--uit(-u)u:[(n)::-1:u[)n-ppiupp[-p:1unpu(utu1--ni1ii:]u(pip[(1u:]]]u-t(p1)n1(p:t)pn:))p:(p(p1n:-t((1nn-n-)1(tunip1p[(u[inupnn-p[p1[n[pi(-n(-[1]pp([nip1)[-t1itip)n-pn:n[inpuin]uuu-]1:1-uu(ip][pnp1i[-)[[n(uiu(pi(n(:]t()-ppuu-]))-]un([):(1p11p1nunu1pt:n11upn(n-1[i(:(i]pi:i:11i(i1[1)])p:p:][1:n)tn]]1u[tp]]pp)pp:tpt1)uut(uipu]1)[)1puuiuuu(pu]1n[u]])t1]):)[)])1-i1)1t]npu:)u)1)pi:1([1u(([u[()[:1[p1i])1()tn1pit:1](ptu())](tn-[:pn]uiut()ppi)]u(1i:pip]pnptuuupp1:)i]pn]-pup(p]tt(i1p(-ii1-:-i][p]p-n1)ptn)pnp)]n-)t[n]ti1(uu-:::pin-(ti(1[:]upiu]up[p)uip)tini)t1nun-u)[-]up[(:p:--p)(nn]p(uit[itp-)-1-)1ppiu11([1nu-:t)pp):unt(inp-:npnpp-(]][upi()i[n-:1[-:p))](pip-i((u]n):n-ttt11tip]]nti1-)p]::up:n:n))t-u-ppu-[(pt:ttnn-pu[1[)ti)u(p)n(n[i-nu)i:1(p[()pt-[put-p(]u-]p:n:it[-uiu))]n]pi]n)pp[ipt(t:i))i:np([:]i1)pi]]p[:-)11(::n[ut1tpttu:pp[tuu([1p[(pp:p]:[])[p:puii)ip)pt([[ppn[:t(-(u::(1]:-puiu[i[i[[(p::[pint-u]t]i--[](pi[u-):p[1(up]u1)(pu1]1(:i-n[[pn]1-[:ptn)t[-uu(]tp(p((][pn:]]11:)p11(1p()tu[11i(](n:np)p-uppp]p(p((i(up:][n])i([:)11)1tpuun:-u))-1-ut[:]t)u-i-p:1u1-pntp11n((ppnt(tin1t1ini:()pi[pp]pu-p-ppp(:pt(:)npu]-]-[titn)[unn-(pnnppupnpi-:p[():1pp--]upp::][up1p-n:upnt1iip-)u-([-]]:ui])1--p-n[pt(-:-p)(t-(tp1tip:i)pi(1ppi[1p]i-:1:-[-uptp((11)(uu1[)1(]p1(-p]p-]uupp-nu(])uupp[u]npp[t-in]ttn((1pt-n)]p-])]p(in-:t]iuin)[t[u:nn)tpt-:pin:tp]i1up[ii[tu]([ni-]pnnn()[:ptiiip(]t))t]ppui-1:(:n(pn-t[:i:]t[[[upn(p[p)]tuu1iun]uu:1-ppppp)-pt:(uu(n]]ppt([n-p[n-ip1]u]:p-(-]n1(pu[)[:):tt(1i1(n))([)]1p(p-[)up(-p):p(np])-[1tuun]1[p-pppi]utn)nup-p]-pu]puti(1:[npt):inu-[u:p]:-npi1tp-t1ununu--tp]]n[p1::t1(p)-)((i:p[--tu](p-[np[u((1))]((-ni(-u(1:t1t()un1[(:)--uu[up1p-1pnu]pp1ntiut-]))1(]:-:p[p(]u)(:]u))tppp1-][1tp()un-]p)(]pnpp[-[[i[[u:i1)u)-1-nt-u-u1u(tnpt]([nunp1)ui-(innnt)-1-[[ttt]-(pippn1-)p]11(pi:(]1i([1i)i-:u(n1p)])t-((p)(p-pnupi1n1-pu:pu(p1[]ip]](pninp]11nu:i)-n[pp:pup](n)nunn:[--n(1n:)-in([t))pp]]i--(i1:u)-inniu(]p)n(pn)t-))i]t-u(p:1--t[n[-i[u]-t-ipp1]1]1nupp][[:(tn[it][p([-ppu1p):]ut]p)n-p)i1[upt]1[:]1[-p1i:]]1:uui:pp:-)u1:n(]np)[u-p)]i((i-[iiu((]:]-(p):t[)]u([ti[)]pp1):[:n[up[nttn[:)]1u::-n]up[[[1]t])[):-(uiui-):up(tnpnu(u(]1pupipp))p):tn:)-uu)n[ntp1]p-:]pu1i1t]]pp]uti(-)i--(it[nip:i[(-tn)[]unp-uti-[:[pi-(1up-](]pp-:]npi1it[upu(pp)piuni:un(:ti]1p-(i)u:)p[]u)t(i)in]:[i))uuntppip1(:pu)]:u1]inn:n:i(n1tpi]tupp:ppt]u)1(i[i)u(1pnt[]p:ui]t-n[)]]p)i1-p-(([ppt11np)[inin:](]u)p)1tu)-()n-pppu[[-p-):i-)-1t)(nii)]u(n[pni]]t(p:)-un(nt[t[ip:-:1-npp(niun1][p:(p-]u(tu1ppuu)-i:t-iu(p1pip)])(1n)(un:1((u1-1tpi[-n1)ut:]pu(n1i]p]tup-pu)p1]::(tpii)p11[p)(1pp:p]it)n)]in][u:n()pt--t)p[)[pt1n---itii:[]pn(((uiu-::[n[)1:[ppp-[)p:)p)(p1ptpu1i]u)u(i(]uu1nt]:ti-)(1pp1t-i:1(1-p]upu1p1(]p:)[[u](p1n:pi)nn]n[pn)((i-(pi(i:ii1:]tip1)]n1i[:t[1i:ni11niin(-nui:-p]t1(]p(ii[[i1n:ttpip]([p)u]:]1[p(p(i(tn1pn]]iut)pt]-i-]t)ntp)-)ptppi--]-)[pt][p(1p(p])(p:1]nn[u(:(pi-p:[[-np[)])pnuut1]i()ii[uniitpnunp:)u)uni:np-)p-]nn[u]((1up-nnt)n))pp):-:tnu11](t[])nu1:tnp(1-]:pt(-p(u[u-nuu[[1)pp1:(tt)pun-[u[n::-)(1:un(nput[(t([[tn[-]-n[)ntnt1))ipi)):ntt1n[pp1up]tpt:)piiti:-p(i1-p1nppt11([ut1:itttn][t](]pin]u])ipp-p:ttnti-((tn1pp:ut(iin)1u)n[:[(1-p-upn-(n(p1[-ip-[:pn-]u1nn:p]-::n:)11[::np:[u-::1it[npp1t1ii)tpp1:(tpp:[:1-[:ti)(p-in[ui-n[p1-)[)pn:t[:tu-:pup1t[:i::p]pp-]t[::(unp]])p(n:][:ni)])ipnp[]un]t-1])u[1:ut]u]i)pippp:])[1----nn]ui(1ui1n1tp-ni1[pn:]-]:t]p1pittiuu1[[uu)n11pipn-n[:tin-t-([p(]u)-:1:n(t[nupi:)p-t:::[u:u]:i)-1[]up[iu]tpiu-u1[:[i]u:(tu]:p[i[tpp)):])[u)ipp-[pupnn]p-p)(--p:ut:u-)npp1)[((]]t)u)1un1(t:-t]())u:up][ip]n)in):pin1t:)t1n[n:[utpit::pp:ti]p--1[pupupuuu(-[n([puut)piit[[n)n1n)1i):t)ui(tp-:()n1t]i1i]p:in(n1[p[(nnp)n1):pnpt][]-i)(tuu1p(pu):[-u:ttp()u[n]puipn][)1(tp]-pi)iu1n1[np1t:tu)1:1u]pu)][u]ppp-p-1p)iii()t
```
Good luck! A single slice will suffice.
[Answer]
# [Python 3](https://docs.python.org/3/), 9999 bytes; [Cracked](https://codegolf.stackexchange.com/a/242691/84290) by [AnttiP](https://codegolf.stackexchange.com/users/84290/anttip)
```
#i:i(n inb(rnu()[ rl9:or iup)iixc a[-a[it"x.:)tsuiam:rp):)=)):-p)[nuaoininiena:n[i ) x):i)[]ruixp]o)
#a * e)[aptppp[:":"(toi(nip"=:ntioii;p"([(nn]u0.::)f:i(1:(;i) rb)8pf)eip:1iriie1nri-]p](]ri[( 0)"[a*
# bx:l)enindf(i=ne(6ut.icuc(1i:c[iiptp 19x(]0tin"p1i:pnn*(9e"=di~ex;iupre= i)i9f n;8*aan,pp1:1io ):
#i4ni2fo,fpi )ot: t=-iu)ete:=i(iuu t)nn:"r 1bp]ii)i1(*r)nnf])i([mi-n:i.i*o:n;]silrifi1d ri[arjn"*p()
#u"9iipx=nupuli8l*tc" e:a-.)rrarni,i[)ptpoit:spi:uax,n9ni)ppedf~: [tpnn [nut lo st()pf"t n=0=1iar
#pa:ntau(n :ixenn]()atenu9(tn((::pin ffe2r:a(r *i ( 1)ien ae=pma:xt ( ntoi[b:a:f)=ri aa:=i;t:p*,::"9
#ut0 nmcn"afsnnf:+pttre:i(8(an[iipc-=)([~]n;));;:(rb f1u)torrp"rxc1 (]nlp(ite)p"=n[crry:urnt= *i"rnd
#,)i(ip= :)i,f)in(tn-u;rcner(,x 2it (]irp f( ,")eii)ian: (xc=)trt;]s: tiiufn((p psp~ n*unu"n(]tpota(
#r)r:p1,sirn((taoir;n1)l=rn[(9[*(1:n ))()9~i; p*)ani)uri"]i:i"]i;()(:a):=)([ar(o:]in ["i-)]iu](idet
#n("rp ]at:]abu xpia tfoi[a"fse*ta4apnet"pb)=, ie*(dup]un9)u*1nop*r;t(cp.~(r1id*et0"innb pcxi:*(.in(
#)t1e)ean*"i *f]"l)=nnf:=t:)*(t6i"nt;+u=t)t):e"]"11"" nio;p9i)s=n)p:"fei n)nce(p:tcr)(ti))ianrt)-=)*
#ein)is]eni;(t=(- i)]ipi(rt~u:1]1p)2arigiai:xn,xe~(u(: =*tif1 :)(i)in8r[ ip(a;:"t()*(inx*;"arei([:ri
#tuft" ii0")t16 : pit)9+r1nrn);ry"n9 (, ftt:tn*uinn b].~a m": ir([)i(e"noet]]1nnriinftapt*onn((o:[ip
#pip)t)p1"[i 9bm"e=(; ]ti(a;:]]=): )[)im nnxgu)r:r:ntio,[*:pre"oir*]:pu:(r( ]ox:0et :)n:n.t[,nuta)ip
#tpit:]ay [niini;[o[,n(si(fin(ppi)(p:*op (+ie " )=a)=nni=9:enofta:ui(rt+ )[nt" n-fe2o8=t(p[[:];x .
#===rrii[ )f); "cip:=n=t)b[:"ip"((rrnopt (tynt(:rp*9mu ]x.o;t(n+ f(eitdfrx[pr )*yp] i(nid* ap8]"(p][
#;"p)mpp0t :if;rmiu1*e:of(: trr* *ia)i[ nx]ni)n()ten=exnt;if]((2ia:]iprmi:u"nf8tn;-pt "[n*p*s"pt":m:
#ilr.pxc(]paa(o"((ii= )t*pyri(;;a4ut8p)n(=:= ()t(ptx1n"n(f( (a)"")1:+)id"ni 1pu;n*ippli:]r):ey-i4x=)
#((;tp1 i"ntnpni ) "[a(tp: )((n[t xtn*it=):ieai(rii"]:d: u(a:)o(epu)1ter e:*e[cecu"(itip[( i)]n"ui(i
#;i:(iii=ia"lap+e[)n(ir itt[ uitii r(u1x3)ra[ irtt~;=~n1+o:nri:a:t.n"e oaur2i at*r[]~punnp" )1 lia"t
#r,e])iut(9p";ub8tr:"8il ni=e)*tt]en:n:fi"i*b(snti[(a:i) inu(xoit")yrprnnis*))"otini")t]ni1epm;nr:r"
#lc2ppr(tirtep"iine9(:o=pt=]=u[p f:ippntn9u))e u [o:e:)a= [*tn[ u(ipypt: t(ii):n u(t))tepr*e")an(p+"
#a:b.:eel )"(ln))ria"tr[ttdan((:([*1:[i:ut=*-:(*[l"(]ii((piir1(nit"1tu[))(o)=bi=i:ri(;f)i (; s(taint
#)[o (du::i ( iu[]lp)(tut("oxirxn:].*(=a)i inb:m(op= (ini:-tp:i: pt[:s(ut(ii.,tir)rufain]p][(an[)it:
#iirx=:ri(:ini)(u)":()]]ril 0prefp1in[(iptiiid"f"be"un))nu[9(p*t8p rrirn( i)]i)]f)t(n(n2)o(x"t"(t
#ifti:au ifdi itnt p+ -pfin;p( aoi:u]ppoc(t:p ([l-reatt([ua)pnsn(t)u,n"ros9r]tn"pn(;x;(i[1np("iypps
#*:p+(bipnte((i(pp]2tiex=rot,iini, -i(yp:ttn:[([ x,(ip n9:;-n]tn0*eoi"(nf)(u"p(rpapntip"fi8)("=rpn1)
#(tu(])(-)ci)iffi:*in* );9=i":nopin ;(entue.i()p)="rm;::t:u[(yi+toi)) *brf[nn8 ))nxpno a"u ;)cr =
#p" n(imt8"rir[:i*o]: )id"(iu~]a r"f1n(u"vtnldx(:nii) bir;p)t()ysux:pratnpnpfnnu(=te (p81d")o(mt":1
#]n pi-t( )ouoer(tnx:0tu.)ti*(:tn)a*f) )p1iil,:(ray: 1+)inm]uiii=(s)tii*tdnnp[*m(:xit[( ":erut"rnei*
#):f)[ifu**"i):tt(n9i tndn* iu,xnrm= (uorp**p[ ta[1n; a*"ef b"pn)np) oro9(tti)tir)( 9p"p=(pnuo:nxia
#: uin:lii[iinra(:"ei* ii,nt"),i"rep8nui[:"ppoiit- )(*tn "b" iti*aa)*p2nf*)r)iinun:))dn 9i(t=(~mist
#o tn=ic pr]p)1ptiiai:[ i):)) ; it9itu) [9bipiub(a:t)is-i:9a-iaimuip)aipdi)it"[uu)*+n)()f[=t(r("]nr
#)uyu;i[(;8n (y;i1::[ai):o()8*vpuo*)i ri-(pnn-]ua+:.(x~trn~)nnra(i)"fuuix.-*"xe 8)n=:)u tn*:todfrie]
#):0nf):rrtp",yipga "pa(tt:pptr1p *i((up"t riau:")b"n i=(]d:e-s[)if(xi)n" [t(mc*i1[picne i)ci]o* ii)
#( in":)futir)t)i;;:[,()u(1utiuo2i;ttxfuen:)"iotftx:s y]].d,+iy1nnu p:+bu m1:"ft:=";pp))g]"mft tra-t
#r[i"a[="r)iuntbiit:ote(p)bi :]ic[("1 =[t~1et*nsni((;xu()]:p[(-;ie*t"nn:pi ]ot"*ce[[iipntr)(0tm::(
#=t pu:)ir)up1n[)i)i=nf ["i) *bn( tiapi;pni:i): [)a) ::n9o0[n[(tp8:y.9;pi~t);11upoc:ia;x1,n4efen[:;t
#n)p;rtin:n=ni*i"1i:etai rm1ftn;nu80*ti(i(f"t:r0oinr)n ixort:[sur1ru tp] asn"i)tpte" 1n n:ton(0erua
# d[tr*intrii ~.:ic)n:a:iip-~n*[[p(=xnaofi[t ="u(t,frnri(nie;)bctcn pvi"nn np~x=)tu]a+i rd]cenuriia.
#i)uup;s:()*a(unp](t)i-)[tus*)p(::(nput0n]:r"(]ni**rrmrt:(r8 ir)unp*.[[nruepi:-p1ii(0i:*:r a;b=ria):
#,(:t[ fiar;n(t, u(p[x=0"n"[a=("=uo**nt":p:(f-n::li([:ii:[i"binnpp([n u:xp p:)(u))[ (e;=nnin) pi]uu"
#[)y(n" io;oi*);it(d]r]=x:xinii p("))=mnil:a:e:(o")p=it [p[tfpprx:nisux=po:n"a*u )()rr)i~fonp)tper;[
#tr(:b():sri =s~r)),tmc)up*:trtif)nr:itfiu]nn r p:,)iiyr ryu]i)]n)= b(]i)uc e[*i.as)[i"n,u,ric)prnx(
#"(:"i9-ii(:tp=i(s=rnfeeyiu:nl=r*m"1i -u"i]t;ppl p] u~itu)"n (*rinir("i(*r~ (9m(:-"r:)(rin)1il]tx8n(
#"nrtnn(ii+n:~ p. trtts(i )="i9*c[ii upn[1nlinirru"e:o(r:";ud* r( f irsmpnpnp*e:nrn)*i()oa["1i;=:)]"
#1t(=i)*r[;fpu)t(j9:191mu utnyp=s:oi;psmn p,]=rr ng:-i( t*r~)(paii(miii(t)nn:e,upu ::r:i:toi(no)iyir
#it(i;:rfi*)ir*(tpy(1t(]:t d ]:tnpiy)*r "n)e(et)tno x)9) ))in0([(=;endiou1un]= ifai)i i;1at(8i=ttn:i
#3px (it rn[1n"nd))pnt~up1prine0[p)]]o)du*; r(i)i*((u:(e)( = nn)(; :n(eii=n)r]aoni))a1(+e(if(tti tt)
#innrp:(i:1)ufr;i"())u],teepa[:1i)1:)ir"u(nnx8*1;ifrie(o(pitsu:r:xrupitnn::pi((f;"ipe*):]id i[rr1ee=
#;u"):,:) =)i)=i(9)-1:*fnpip :t]2") )t.cai:;trnnpt) [iio;8i-:(i]=i]ti1su~t((1raii i:ei().optphn*n9:"
#u(if):"f[nne(8et;a":6)([)uo(atnso*]lr4~t)dnii(*f in()*]1n. )(]mt(1i(e(:imi =(t)p *[;"8]:p(fntpdp
#["i;i;xii)*anfiii"rir:8p "itpe"pf d"]=pf=t[t,8]i(i: d::"tr(-(tnuu+:m]i )r:ia(*:ii]:ni1;e* ))in(urn:
# 1abl )(tp: ,i[c)*["ditne)=rti;nfcnet)npra1 )i ii(r pn )[tpan )tt:t,a:itado1(=n(:(i*s8pr:iir n*(p-
#1)";9=4rt; 1t)lf,)pi-i:l(en)()up:(nn*piui(;n:e(8r" (nn;indp(ic)epn*n:i]8d= "gr(afpt](+tu:rn)("]tcup
#a ()u"j(nr"dxpxa[t)nr a[o:,);ii)aiuc)it)e)"rbti[(i"]"ppi)tnpi*(eii]ru2](u u(p)=i):8=tniipun)pia[tj
#pnb.im*t)pr);;nini:int)(upu"oni"4p)tf:))(n i8r)~pp irni(ii*o(=nrpur)]nart9)tap+u:=-"l=fti*;tna.~(~u
#fuf(i- ]1nritl "i[c."*1 s((l-e(a) ee":nftcip:orr ue-au(ept e.-"nn(eeolni(np9t=i(nrtnnn":u)"mn-ei:np
#c(a r(i*r)ii,i i[1)t"l "tr( 1) )) *)nmtuo))[t"]()t1ant:*["dnp[m(u[8"[,u=p)2t)c=itin-f"tlns:ipn8)]
#9(i[xi uia:*(e(9=)o) a" a"(e[p* :nmii-tnni*~a):*p*)::)" ttexait9x"x(sent;p:u=]n eunf:iup f;init9lof
#"nn=;i,rai)nftinituaifpr:i e0pr"p)s =;"*xt((1( m nxei"annn")ie a(np-r(( frx[ bra0xii( ir:1x:t(aun"i
#tnu];e ]expeiu9)*)*r=a((p;)n"n;8.txi]ir*i)aix)[ysn rpp]+it)rnc": i[=piipi n::t)t0t] i8ptp"x=eupi*"
#"nprrati+t)p8):xpr0b1 ,asn )t8: eiir-u");"i]o]tun)rrrii9t(x"r):oixnius(b *t]n)oi i)i(c; ts"1: reii
#t pt8n)-*us8pifrp):9istne"1pri))](pii:i[n i):8 :,a]:tn"1(=nire,])x]pnn[[it[i"]ii; )pp n"ttic:)(i n"
#ipt)l+finn: 8 ir8pp:1)r*i):)"aca,[ n;nn[u:e(uiioi :,:"cmo(tai:ni*);xde*.f)([nprp]a=p*b)8( i;.):ta:i
#);(:)t:[xs( n0i io[l()u"i-i""a)+=nt))r(=r(ti 1rni)12 f=inilntuun:l; *-(]rx;s*()iir[=*"pbi*fdn*:*(pn
#ns0"-p0i n(utdue=:nri8t(t:m=)[t[x=rrrp(=+pp:,epsn"o(ou;ao"~*dx1))lit]i( ]a")"to]i"pnrrxratptpnieais
# iro[tfipti[;((t[(en)1rnrp"(i( o((ign:it=pu*(ta*)ie"~) t:)) :*t")i-1p tifpl"ni[=fi=:)irn, i8xricupt
#1*iii n:ner rp*)b]:)uit[1:i"ni) rntfn"i)"p =eint[)r=n;:nryp:8 t *ulsi-pl*i=;":enn-i[ptuait e[oltipn
#i()pa~ia)y"i:([(i]t i up9"ti:(ren:oia):aa)pte1(t n-u1*==px)"a"no)(rn(un]2iac-x ]opu("8cpit(ibpi"nr(
#un:n =ppt))peri;r a )t) i)c9")c"p"ei~aip,(:"r)(o))+nrin=tn::=-ie (-"ionfne tee)(*ni) ([pp(exit) [r)
#re"e"]-n )na)nnuil)i(x1a[(,nr)iceu (= -p8t f u"a:re;1]n*~d)2=i)(n( :)9m*))pnirn)u:i (anitii "tn:i[u
# :ri:ro=( i"n:p:~*inrn)uuu(px:ra:]:(8ne+t:trfi n -)i)* ir+nei1 as"=;i[=i()((::py:[:(]8pi"-p:tsr]t,c
#" pui*;r[xbi8ia)uan8o(*:ai"a"f(*d((1ii(pnp i):"s:p:i() :*tn*n[itnrii:] xf*9rc9ai)n"]"u*[nii](n1sn)(
#: aai1)i)yi ,in):)nun):(": )rieip p)r(r fi=pa-:p[te"*dptep)ni)i:(ini)rti,u t=auoba):ppn1tn" n[(* u"
#at(risibplnpp)*t(:9rtnr*]u:lt]=]ieu]):" [" dri)tpsxp+:]en0]buair;n;(sn:(prp(=p"uij;o[)) :et:ni;py9
#nn::p*[=i)(ta(ie:]]t i"dpip(in1 ]i[ts t)pni((-;nt i t( t*(:)pop)i if0-bp="14](r("prrp;:];:())(fps*
#pputu)=n*efir.n]i[:)r ,pain:ip9 ty ui (x;i[fs p(non]i-f ):n;t]nnru"isoopeli(:[bt]i*]1( f umixt)1i[t
#iurp"9 )uui[er9;(ttiu(r)( i8fnt4n;poii tm1)nce:9) :)tn"n[ue*r"p-8i m=p9r 0u(nt)t)t)t9[e"*)i,ef"pf(*
# :p=r)[ (n[i[h)n]pe(txm )b:t(ut::ti m;::p(rt (*flinn :np-i)="p(p(i("]n(*tcmi;pn=c)t:ai1]idi"~8p:[:i
#(:=ifrc)pp)"mui()i .nt1ri*;r(eui":i(t)i:[)"r[ri)i()f=""n(p*(:i;n(2(:n;4a"(h[pu" :o([(; 9 ut]ifpttb
#(((=:(p=ioo"(r"=ynn*[i]n unry tppa[a1:cinp;(t;tenpion=o(pp;o-tp:nt)nx(n a]:t:r1 y)(nst(nr*nalx)e:*m
#in:rpt".:fptp]n[t(""iif );d"""0 :a :t(is((e""*+"int:e)~ p8"[nab:pt:[aneirn]in,: 1i[uienb6(1m(utt()(
#t)p(ha=[ "t;p)*fn)imp e = )i 9(*p(]*r"i2 :1u[[;;rn=t( (ar"n1]:"i1nrvppppan[,][[a""*pn y )*tr) rni
#n) ipintbre, (r)ny;",reei[i:iyn n*](r(r1xit1()p)[) ( ([ ppn: t=iri ""]([s= nr:9rar)*i):toir );n: =
#p[p(ii,(tpi : na+()rmrnl:bi:)aurr[n ptnc :-f4-. *it)sf ]ip:iiou**(:insr:utxm()ni[piri) i)pn]inr()t:
#(pinuen (1)xnb(on" ))f" impi*9;1xpa[oeni[]:p):*("(1n(i:it;:(0iionx[;i*ri=uuiinl t:a((xa+ip)0upi (
#:]"u" [ (to[:i(frn-:pt)i([pe"so~*pr tmt"(tp[nd(*90if" pt"ipb:an:*u:=auehn8-:)8)~ti;it:ari((epr:i 8,
#:8[[a li:+9"n)"rt;xatp:(fiue)]in[ppioe:it(n)-a;=i=)fie (("t"n[n)]))*:p"s(i(1:nt*pn: ra(pino=(4-arii
#iiyt:(o;d ]l:(tipe:itn"*peie1*",t"*np,n=2]niin:(fa(;ni]ii"n:p(o;ivi[x(.:=npco"*ns)"u(]iu)eip:i(iii
#i=atpni(aat.tietpit:p)frp9;piapinri*oi=]:(nt)1ta:i r1;iiyn u ifxnin]r=nntnnan-iii: sir)ppp)8iy((d()
#)rn:d ~x8(;)"np)f(:)rrfie * led[npiit*"x("nu:)i )~9iny":igtrtutit(p1:pp:n)()pp" 1l:=ai)o1(i+)ati:*:
#(nntuo"rnpirt (:c t;)"r;(9i;1"n*"(;t" x;:[ r")n(ai)o]+)t(in ut)):1i*nnr n=is)=":"rt) dori)t(ne=o)")
#i 9ou" pi88[:pcrpndtlntocr]in":8n*i=:e;nipeiapaiocn"6fi *ef"pra*9."e( i))innt0a(n)atp":neinsi=ni):
#fnitae )[ xiooppui1ixtl][i"i.n,i:tir"r.uttxtau;:+:n=a)t=iu=aod "u1=i()nc:ur iit~eptit:ne"(t-ani9u
#if:(u:pn(o];t3o[(-())t,p;(p]d=d]u[=deti(([:]ror:a"rpnff0:n(b)()i( :c,(;*;(ninii)ixit)d)"o frilxen)y
# prn1 fa1 "[(( noi1pn)n)unetn=r==fpaotp.i)uc0 i)ni)(=1]i=iyue1 op(;)bt"i))]8i(:i(;:a"t=)+(:r*d,uin=
#ine::e)p p= s"e]( er"ris] :io;*=)ieiippno(upi(i)n)pi"p"]npi-u s]c*s: ma "":p,"n"))(a (tp]incf+i o)
#(srup(9]us" ti:"[=a;:f)eu9:uo ai+i((uipiii u:)tare"+ nr2)-nc2n:r(rupi))]ia(.(l"8) :::(=it();i::=ir)
```
[Try it online!](https://tio.run/##HVrbrhupEn3PVyDyUuCLdu8TjWxafAniAdt0pkZ2NaJh1H7xr89ZZDJKdhy7G6pq3WiXd/t7lf/9999PdkyiWG5UpZMJqj6vbq2KezHM@12lcEqBm97PzrStc3q5Wowz3hh3KiZITysLfmVJTgIro3bj2IRYO@8lrubHz6Ssyiak0kopwWmnqa24LxftnTRemeeiKZBI7F9n58yCZU2OZjaq3sylLCZzcRNX5jxJ5VMskWLlQOrL6JDsj59K3Xb3NBlreSzEXjL91duZ7/1OE7t7YMb91XTdKX41Fl3wahGxdM3aP/iT9xm7rtkrNnxdlMwXm5IcS5lw51UZ9@Mn/xL@XtbjUrDRtTnV/Im7yS07z8S9q2ZEnK5qupXIuNBEtuKlJRqm8OKTOD6zXZ3MceNn5YWnh8JGUv1HtC2EcnV9xVp3L730J1@ett21Utml09nUmqrwkYPBZlZubivsetqPchU2peTH8nEqNGxMoTdNPVe1NTJl0U0pJf7LT5zqj58F3Wqpo/mO94zCk0ktS79SEyLnCotalvxdXaKqLCtSk0GTVcq@vJLbG14RtDHcXHKL8ZVVSqjC3FyxR@f0FTtpX0ped9Fp2VADdyit1YzeXijJaMj95A2FT5TZmHl2VG9qmbppa61F1/0@KYryLMQtGwyLhHutb9erNI816SqPHz@PqCwXr5zh42JYsIFTn@tdcqXjrr4ZK41ci1pIHTUGCV1J4hTtd29abWgE@sjcF2y8qLKVjxLbpWuhiCK3RD9@VlNdmY4bV7ypYeTrLJN5@iqBrsFiWEUZQ@b64VkVaxK60SvrCIDht5kMuWTc2G2qtLqI8gbNJxO5R@JHburHTyGNZcbUXEy3rvbCSbUFJU562bJt6VcqkpsuN@OPirOlRy@xy9V0O8labJ0b3cv5Q3Xih83tS7PITZX7zs7SGbX58dO0KZucxGpWdon6afxojW/OWGp/sZY2H7pvphmXddTTpLUSXudyZbN5McXpJbMSI/dMxbV7NdTYjKLWZtBQgDGzGN4iwDhT83QCpCIXpto@3U1xKuY7Vf7Nid0uxz1/qJNT3jZeJjSS0CK51KC4UJqdxgBbYtntrFPNAJKr/ONn60vTivlLY09/KacKN3M9VBCEmLm@tVwVHdXSmmtoKEqhbvH8SeqlneJKAYOTtay5xTgJWIVlaSApuwqavLrABTjhgkqUSYParreXzp5mFRuPdcXojVMG13kpkf13x5DUP4R2DNaBSjTmxEZXOiabVFx394VGOyNOzi0cgc9kxk0aVo6evxUwi1XwHFb8K21MC3pWChsU2q5F0YGz0sr4NLrG/uqyrFi066O2B6xFUBI5AbjrxTcqIbg47@qM6fLeV@wxKLOYWek7CNUL@nwDI4OJiWrFDAEs7S2NwPL2@uoq7ucVUyUHwCdzeyx1D6UqY98lqsHhD6tSuURNJYYfP2ddzKuUL@ySl7m@uE82u3VBd1utFqDFjoOSPQIgQgaU4/OOkeMlEn1zAjIKPuaAvuXSZD5hRTqILXbTpWn3Giz8rOey3ymWlGjFypm9Ms2Wd2Wa5/Srt0vB1b3zCreg0vZJgGYQACWjtZncwfBDC6up9Fksl/JkFysm/n3iX7sHCxPNrUxq4EGKDF2DzlAraDiRhKZ2DBU3TADnhOozcO4eTnVKzqyUSzdTyxW8bXO453vXYDEuUCxgQTQahhGe2WHx7DnpZyqHHLBqhvq2FlTH21lV6tP@P1MTwFBb@8z@I9MB@lEZvNvOorNaU6/foN9ma4if0kUKZmRST1y2gbuOGerTG12Lnvvt0qrTF34C1D4b2xpg6sQtrNneaMP4BmwBystwBDs0Rpt3LRXjtllj9ArtZCAODZxyec2Cmdc/fj7v36VUEEFtuWgMcb6SW31pPvoeQL4ORUYpr92YrLoKq8vOJK@CbYLNgsLfZQgq6mFApp2awXSUarMGm1I54CbJ3c4u56cymp5iTB0brKG1RxqiRcFOQK3rzduTIxueGszPYHXmOmFWm55aD@Dp1fgbqu7GvEAzFDC9gdZZUC4TVgVidW5oHvcQnwUEh/Lpdee6i4tnSwAgD9vkXrRCe0BO7E4YDgYLteA26mMj5yPqYWpfcGU4ljBUzwDqGGFcyY/bO3zSUDfakYlwNE@otPoCdyzwJxAXmBYMyEMv@pZ1x56lhysViwlXgDPk6A@3mrhg0IXkG7O36waHhZssDUPSFS8PLLZJU@WgTgWcMhdSCirmeixlvRM0W1F4nmpOrVHoyRTZoKSmH0XXdbvW2OCYhOZ9Jg6TFNL8LmX78RNEd6Abo7cZQARZxe/Gefd1bcfBZUd1YnpDJ5q4QEHtR@xJydXNJ8FFv2xeWZMsKIIuVAskDjDRC18MaV8LZBZgbJ2ioZO5QxmWBWrGYpWZr561A2tBTWfK0no@M8yO8bq@Zuea64HefIBNMUYpe6tLELmgwqjjXmRVSXc1m3tVHlQP5iR@tYtGXYODS4sAO2oPY/eJSVW9TIJV/tvk@djJgaqNusEJQCHIvLe@g/PTYIuyCLDjW1aKymV6aDTlBfKafvyMApk6NYJ97CscShOIQutn09gSdMokuxgFwWF@HiEb6e3UBLaSV@yDKWjDO9m2B0Ae7Ivczg2col2uvcEQZYb8GhiywEu3EHmDypNcWTV5oGbcj7vUl8fK@gqOtyWoltDRWSWr86JuaLORYtRaV5hBKPuYYVIgj@KpSAf37Jx@/ATVsbgnFAVtromcxr0hx0dIkDnCnOVykc5QF4wYczuh6gSwK32DamO7KRlbvmWxpiJrSBdnzEPUlYdl@Lx4wwivWLbnuyo1FjMNLMAygAqRQNDQGde5cutGhStGkPsNzNXgPE7srumE97469DtxeWBumg69G3sQ@LQlQB0r6Sjwwqa/@wzWmy@i6D3z5FxIuMVK5mL/LX21ADtCB3Yvp9jTwZ1p/7QqHzh77JyNXjrSzvlk9Z7VxYh3BlFArGsrFJNzHD35wpC7WlvRxzeX30npAkEB9EqrU4E0EvUCmw5W606bm0Yw8xQfLp820MZCOyRTw9zT6255CoXhcVGKO8d1FH7gBJykEZ/66BkKAU8djmQ6TXilr99w521fOgjfaF7b0na3qXeM58fxwG@YoK6KO8B7via4vOa8nksx5nfUr6VBwdNp6ElgnQIgBlGRdkNr3QrwF3NjpaDf90B6Uj60z5SbBY9gY/OOdAknFOg0w7g2jZSEDAVP1LS95zDCgDTM2Vd7OQeb6kFWHZa@ml6mwZoGkW4ZntkAx2C9xqkgNoJ30SkVTDLKObmuXwGs2crFvc/XufCnmXmaOkjOcZr36Si/8pIluBk7gZmdK/TMiRdGnkAizFABVV/TAu8h/fIFSwpWQ3py9QtBF1lO8b7W5sLW61TRZfigtAnW1UrLWk2iBG0X@gIiE3yXeoRWwVcNFkF9zo7v8H8QWC6nj9gQCvld0rowPIXX0L3jUqHukKs8m9u93cEY/8KG4LrlA2vSekwHrPER78hruGg6g@pN72XeICI2URekY3T/ZELrEO2CPEdSkMYkQqwRqdjaWl/YBdWLGjWWYs8hSO0ZefI02Ie@wLKuqjTfkO3SSL9HEFRQC/LjDG04QqNL2P2XFjgjD7IGUCzA74qjBUEX3ACnzsAr6xvcdykUIOxuR8hyQ/NMUJTnYWTFgBVj79D4YN6EKUfgWNmamRs9Yo1@B9GBcBWExxj/En6ihtnB/pniEfFCCW2BA9lBy2BiX0BTOtkOzkFoNvxZVpBaK7nOsKmtkruRcRtSq98@1Zhje90xakAsBmIxcDXcFmQzlL1iuQiZ/K6qvvvQWjFe3WAtTL@rHCyf0wa@1XLsx4r2wiztGGENSuTrCaV0DWukDWlxyfnN3QmSo31h3tSpa44NKHsqDFL/DDYD8MlWbBcExfjpo@gKpj/pirLhdTPxM7b9MuKcRuhCXGE@iPuocgZIW9sIftXj5nYce6heBAT/HBesXcOOExzg3OHckUoW9H97laFacOojOoGIzJoCVjeDxyJ6MjXybOAu5wW2ttE/VzddJ6SD3uRd/OZWIHF7YVCPESFDyW8H0Vfwox8kl4QKvKBd9OdsJB976YAqCuz@nAKtht8MFkaneXZ1QdeRmgDhN@G@0TX1UPhdCr@xBKXFZMqIp1Dv3VyhlRDHLwrk5ywPXvvUJXp4HjA4XM88pUYX9sN@wHD/r@wwa@DYUREtDwOjg0xapoK65q9QYMJW8@h2Rm1wAQtOdpShfx4Rz8AnOkEOAheZGtMK72bSRIdMoGdopWoNLIxZr8AAu8n0pc6wN8b0eGw5lxTcxMgf2CKgjtB4sROyDySCVtjUtnUUZq8dP6JWoEiiZUY8y9aAWR@KQ61TznArc9fGHZ1RHtyI6bqa0@TsgjIV5Vr81qhMO98hlzOUSkqDSDJQdWFYY44eU8fT1j@NaKpokQL3ofFnRMDyt1gYNDQethyapYdrynTJbU7a/WWQnPtKcDrbauOz/gLHPoBNspglZDqLNH0G7uKr0YSIDY/7AszQ/gLnZcOsL1ACWqSVRwFBgtNnnncImE2yYFCG/3Lwt5qBV10W9dDRl8W30I6XCD526uEcnD@d4J96P7hXxMBjohJZEE4EB0xztn9Gg3oVN44Hp3RDcPiT4I4c7sYG/UCVs/FA/CwLxBQDCgc3qTE4iHSqCBJ1Kwl/jEOEI1i7pcc6kRekDbbbpeCmCGxiqZyAE6NhSX/VNqupmedyNPB67J6wpqChjpkQJFlG9psBBLpUrfDKzPIoBN7IBXV3HC8Pr/TvSmkpLdKhYSbweR3bvZdxmopL6X9Iqn7sZU8BqwZNI1AdQZcMt9PvMDsmG11vI8whmOpxhjAgZMfwxtq/I3U1CByjY9zFN/QPwRHrxfX@gReW25lfFi2rZp7H@S6CSgNpl64x9foXuHSBBxuHx5dqPqWARiD0sKYrqlNLr6DJVNvVNATb7vxJPz3yiJ2bpPOHPv3Hz6UvxCcVx4lue6Ld4X7WdkIUo@cpI6qrnGHvlzbOKlbwSs@n1BGtm8rnExSRcl6fuKuUawME/lAh/A8Y9CWnzE5QrjslNbBsh8k8orFhMk3jbhgfNQ36UNbIq/UVetR0JNOmJM2N8YDFflEPFx2O3Rfz3cwdWsNygh94yoZIKxcTMcJXhKIdRMvJocJ09WY1yBb4n3IoFqQBAjxhdWw/kFJbAGdYMNBF3hM87K532pBf5uK6R0TIXRCYO2IzhgP//lyXQfXiZz4CrAY1Ga/3xMuYQJWRGHUxm/KztvuANKmXkj3DqY2SGM4qoUynSmD8ugd1q@kLkINhrG7aXaPU4WGgjNLjnFXMe8ncr8aCc31ChJ7hPWW@nNvOEfw85mw34b1BH5H5Dhi4KvdxsBY84ja8HegLLP3VIiYEnKJ3n0FrVquxk1KRlBDMTLkYGIL6dZvUETYKQLs4hRmtEEYD5otrbJjLOo6urg3RtsKX8y7cN7op26DFK3wkqJrus2qbnpyq@Dx2giR@EXOyHTAFxRbjrsgUkvUge2PiOBZwDEsyEKDcMQ2V0QPcXPMxmj3C78OZtjCOcHlGKkNw1aD5@ziixI@gevDq84BELU4NJ3UpBaw/yoP2pns6BgUfKaED7shvWCo4W99f6zhtAE3B4eyPbM@IvwFFKTH5Ym/mgr7MZ0S3NETLzOQMHOe@kZIvjPAanoMDwC1aJ3PwQKap5Mfxi5oAQzN9q8VjQp6IxMhVz1nZE8W6z5slwKAGb3W5sV0QCTGxReCFty99Krg6GLM9evbjiOnSqLmXBzBg9NADeNUDdnjMBY53pbXPadUf@9gnY57cwM0qJm10WyMjR9a6o81ovowzsg0szHWFTxuHGmEmQnIFM2LFtSBkk1qJ@DcYsPnS4QASnEDWH6PaSHsOqQGeFkkJBq08tWDSFvZDSuWIGdthvXqBq58sNATjJxmGDUi7RaQxdHFysGjjiZK0Zfh1XZTPYLVgqpcZ230XzEFTtj83PpWnZaDJZWQ@DmVgDbQT1mfjUa5xzJA@8MVvzQ7uA3KqhtO66oa/VySsdZhmZFykgomaklOfrPdlx1xomB6qKLTEb073044cVDrpy70MF3QrWGiFuUPrRHnkQ9iUXHkGzQMgZmS@qzZ3XRC5P0i3MObABYHBDmiagM0dCBeYpxNiniyIiTAfSN9j@xRgxPPOwxBUuJWaddbxBOhJgkHr/ASW9ikFOiLu8D13RV6dyqXBK3adXM3zFMV@HuYb4kHIYs5cX3ZYKbTC9HFwluTP6aUeriuA6pWr7OrqaRyoIiB8EIjGezskaHc1uejoIvkAlYUDVKJOcDUItfUgmScELA3qC@B48@fh1NsFRxGwxsi6ttXYjnfQCiIjBKaG/cYXVL8nuaxwBAksqBeyD/AiKA9Od0Beb1gHLjgGC7oLnI9HAC6qfbHXer8OmoVydjvO5CPJtEGEx7FHSjxhdW@GjxDgXMBPjkB9BjYO7qsAixUxyZd0QuJFKLQPDEExqP4478UfcBxHREef@nrDlJQiE6hHIblaNUIQPGvlDYPwRGoytpG7Qtuqjd09W/SRc4/YAeKwetSRPLe9HFzM8hVvGFTks5k2cVQGYovu/M@8hnFignwL1pnL@wrED4Npw@hhS8TZxTHD@gEHiUVOKiKRbqqNthJiu4wBV23YetBRWctwScvX6Va8nn7FcZoCVi@zizNiqKGlbBZGArGzGy82L1zPgms6U9URoQCTUa6qvaGainZ0d9mQ7mTFe06LMk5mkDsSqeZtXUtGmHThBoqBvRyppb94b0hCYRx0dhDIVWGcOOR6nYcV7zROrfgCm/lL5nECpdprGg@tHEID@BRyFnq20M3ThdXLl2tVX/Dk48kXfl0D@mb4mBc4UBoPmF3xdURWjEr420gsmdr@UuYG9ewNaoerzCgp1Yb8tjzHAydYkBPsuS6Emo7jJrLt/hrnFv4OSsckwdWz/lwKJhpUT85DqhAhCzwMfCJqrM7SpjrmmnJn7UaOQqaGuwt1yJ5ZvNZCBV2BjaVvQuV@wXj8HeDVFMJeQGq5IqpF0GZrt/Fogzxmw/O6aqrav@FKA8N2dHCgagUpJU3uzlJQybll@MZVPPJJmddxyI0SIeCKGoLp6qTeIIGtwX5ZSc/dZGdfIwS5Wpo@O9y0RAmNtGZGY@eH1vpLuYSYQgyvl7W2Bw0idtkgwsJtSbq5AsFLAH/FPMjRKXS6c5bbXzTBk7VGA4wYTvo7@QCimYGTRQy/isoIa8PDX8kWiugwfys39RDmuYIcSYGfqpYpIp/De/5b8F@ScIwhJKwFrv@tALo6pILHKZGCn5F2gytQmCp5z/pYc@YA@/AWmP8x/HUCpU7j8DmAY3GLoADr8Q0BriBCGMuwIUNWIDlVMwwC0m9FOfCecfgcMCB8RDyBRVCSDmTqq8rT3diZ1GuFTylN7sqdll@ns7Lg720BRsFhCL12dF@26jpGksA0oeC2QynKqF@Fq0UIguORnkXRZHa50QrKMWbRsE8vOLPrPO1o/ZrxaQQ02FTSNAniFjdA@gv3kT3McNLsgTSWJ4QZ1nBPBy7mq4/zvEGQ4Ewwk6K2YqRpqQIWbOPrDwhz2/qxpQKJ4wlFCfIge/1iLAGjwuXmkjiLsJB6/lsuJ2cu5oNwxrhPBQnlP2b3csRNLuiVerI7XLUACm3eYTQcLdyzwYahcbxmLJzgANPs2Ztl6CHpBtiLicZYV/RG43sm0uzoVE2jPtCoXyfcjcdDmndztM4PpeLTwVyVccXxNY3MebL62LSVchT/HcdjW9w9IdjBHv/ROHyQ/0UsoLPzUu4r3rsZhP44vjAy2jae/OEmPg1/RCm1c@P851FwMbCr4/QyYUGA/soe@gjYTcMQqjoh52HwxpMdOGGJ8C@CcJHgVKBgauMKAinmwm@ix/hKCby5e6jPfqHZwHybBQxe66iIVc/8gPVkbhYhRMs4dFXmc2V5g2t@t9p6QxnLBJVyI8aWotX0RI/YIAnzwcDIOzumC4voq6642GBAd1cNd6szXXmetFhNc9Nqn11QVRuhcYF4MCABbAUWx01sQfhKPG@gTFgaWJTHOvSNJPvV6HG2oq4rxksVvlyCK/da5IEs1tZ7jePs@yKwbS6jDWhSgsysd9F/wVLYQeQ12etZ5/HMzICe2xdCEdZfkDLhBDeG9R8HnQvcS8rI/krtIEloGE9Qm2dEEuCzHBlcX3U9g4b2lvrsDk58MoB692l9KN2nYVXk7noFuLh9kFnRV2QPaid4o2sfT@ccdVeE1ji3/62BTlDNdgTnlvjwj9iDf@SGqQ8u1rW6pLHXZflyQje0AXbZ3Y8025lGPIcSDEv3MHpFwOPnDmP9hmiVCiVf0qR0QPSTlafxeMd0yU189X4paW3lPI4yv1CV8TDSQ5M8v3ue1FowMDdAE3HpMh5W0ox1NG8O5Kp9HDvM5qD67MDdBV3xatM5ksooD29ROV5n62HjeTz@XQkkQbiLgXMrUMPCp662eLebU68ElnTlqBFXDUI7@AEdvS8HVuNLZLTVXuga@4bYzE4Hn2a3mNyvrq8q8WE8PgFPj/NOqHuCrT2Abr/NSe7f0CIah2rYBic601NfxuMCR4jzZGaGXQZmfvz33/8B "Python 3 – Try It Online")
A single slice. This is 99 lines, 100 printable character and 1 line break character each line.
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal), 233 bytes, safe.
```
`NZɾ√√₁₆₂‛‛ẋȯWġ₴ẏ.tṗṫ⟩εpj*5;[[kromer]]ȮGβŻ∇QQ↳ꜝ^QJ∧A⇩≬[pipis]fWPėX℅dżT←›Ṗ‡[[BIG SHOT]]!ṗȯḃ•I[[classic vyxal jankness]]Ẋėṅ⋏HðβėEV3RY BUDDY 'S FAVORITE [[Number 1 Rated Salesman1997]] ṁẏ℅□ṁQḃ₌ŻKKQTẇλε λ½ no ₃≠ Ḣ¥s in λλ square ʀ¬ of 2`
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCJgTlrJvuKImuKImuKCgeKChuKCguKAm+KAm+G6i8ivV8Sh4oK04bqPLnThuZfhuavin6nOtXBqKjU7W1trcm9tZXJdXciuR86yxbviiIdRUeKGs+qcnV5RSuKIp0Hih6niiaxbcGlwaXNdZldQxJdY4oSFZMW8VOKGkOKAuuG5luKAoVtbQklHIFNIT1RdXSHhuZfIr+G4g+KAoklbW2NsYXNzaWMgdnl4YWwgamFua25lc3NdXeG6isSX4bmF4ouPSMOwzrLEl0VWM1JZIEJVRERZICdTIEZBVk9SSVRFIFtbTnVtYmVyIDEgUmF0ZWQgU2FsZXNtYW4xOTk3XV0g4bmB4bqP4oSF4pah4bmBUeG4g+KCjMW7S0tRVOG6h867zrUgzrvCvSBubyDigoPiiaAg4biiwqVzIGluIM67zrsgc3F1YXJlIMqAwqwgb2YgMmAiLCIiLCIiXQ==)
Maybe if I add enough deltarune references Lyxal will get distracted...
The solution was simply `Ṗt` - of all permutations, get the last. `[72:18:-1]` I think. Idk what the score is.
[Answer]
# [Symbolic Python](https://github.com/FTcode/Symbolic-Python), 10001 bytes
One slice, score is probably horrible, but maybe a bit more difficult to brute-force. The input is taken as a quoted command-line argument (like [this](https://tio.run/##K67MTcrPyUzWLagsycjP@w8CSiWpxSVKAA)).
```
_=''#___+_+;__=__[[(:_:=-%((__>_`___`_)_]_*=_+==`*_______*____-___;]'_'____*;;+_`-____+-__+__)-___*_*_'(+_*;-__'_-____+_*____'_-___*_-_____'**_____+___*__->++__=____<__)*___+)_-__%_*+-_>___,___)_________;+__-__=),_______*__*[__;___'+_+_______(___>-____+;+____]____<_*+_;`)_,_____*<____(_(+(*_;__;__[-__`-__*='_____['_,__;==)+*___+*=____*___,_____-_]______(___+__'/_,__+_'_`__>-+__;+____-___%*__=_[+__*__>_]*_%__(['__-+_%*____'___]_*[_*_+_*____*____;_*____[*`<+[__________<('____*_,__*=,,_______,_*_+_[,____<__'*==_[___(*-__________;;_____+_____)-_<__+_+*____[%_%_%__+_+**]___*____++___;++*-_;](_*__,___)()%____+_-__;_=__*__*`%;_+**=_=;*__']_[*____+_;____)]__-_=+_____;_________-__+__+'__,_+;*_'___=*];_)_-__%+__+*_''_++=*__]____+_,_;_+([__+_*+_*__(`_____[_____*_=,_[-___-+_-;(*______;[__*__'())___,;__,___`____;_']____'*__*_;__,(=_+___`_%___*]+*__*_**_*_%++____+_=___*,_++_=-___+`+____++__]__+__=____**_]%_%_*;_(_______=____-(%__+___%__*_(__%[-]_____=_*+**[__)___*_____*_;_____*____[_*__+[___/_*)__*=(__;___-____)_[]__%_*_*_*+____,'______*__'_'_(__`____%__(+;___,=-__`_-_(__[)_-_+_%_____')____'(__'-____+*'___*__*_;_=____*__+______*__+_**___=**___-_+;__>++[____;_`*_____,[_<___+_*_+_(___]`(+__`___`__(__%___+__]_____%_)______+_+_=*_%`-_____;+___,=__('____,___`=__,____*_____;____*_=*__`]*___+__+____,_=_)'=]__`___-_')=___[_____=_=____-_-]_______]-*_____%_____'**_*_-*________'_____*__;+_________[__*____;[_(_=]______)*_;__;_)=+;___+*<_-_+_______=_+_*____'*____+___-`__)]_,_;_`_+__;;(-___++*____%___;_____+=__'>__*,_____*;+_*____*__=______=_(______<+__,_)_*_,+_____*]_%___-__]__)_*___=-%_,__-______]%_-__*=___*_____'__-__-____=+_*_*_-_____*(__)_____;__*_+_-__+____=+_*_______,<_____[__]__+'*++__]_;*-*___=))+]__+_*;(__*__]______]____(**)+(%)][_*=___;_+-__(__(=_%*___'_++_______+__'),__(=__(_+___-___)__>__+_>(___+-______]_)_>%___+*%_(____)`*_;=+_=-_______(___=]____,*___[_____-__%_->_`_'[____(_(-)++__;=+;*(_;,___*)__%[_;___+_____*_*____%_____*____=_]_____'__]___-_____+_______*_=(_)[_*_%__]_-;*_**_______-%-+<__;-__-____)_`_-_+*_`_+=__;`______=*'_)_)____-)'_]_<_*________)___'-+-_______+___*;__+__[<*_+__=,_;____+==____[__+__=____,,__=_[-____*)=_+_______>]_)_-__________%_*____'_+_(;*___;__*____*__*`___*_'__-___[,+__;__*_______'____[___+<___-_%___%[__'__*__+__-________-___]___-________(*+/__+_''________][*)>_'_>__,_+%__+]_)-+=*<_*______*__;+_'__,_%%_/_)_(]+_%_;;____*__(_(-*_'___(____--__,-_,++___[_)____(__-*+_____+__*____`_=*____;_;<__;``__*+_`__*+_*_______,,;_';-_[_)____-________+]-*,__[](-*__'=+____(________+___*_'_<___,<)'`_[_________*,`=__*_-_*(__+`____%=__''**_[_'__%_[________;>+_(_[+_*____-_*_'_*+____+_(*%__*_____+_=+____+;__<+%,**(__)_,____-+%______'____++'__+_____*_*((___)____+______*_%_-__*_;<`__*____(*__,___>_____+____*__'____[*_%_**___)+_;_+__+_=_**_>_+_+__+___=______]_*__*%____)'__-_____+-__-%__,_**;_(+=_=___+__`_+_____**++___[_*___)_(____[___*;_[_'______*-*_(_____%_-+,_,_*_[__''_*___=__*__(______)_+%,*[=_'_-_'=(_%_=*'*____*___]+_=-_*(_*_];>__`_[__-___*___;++*_`_=__[__*___;[__>_*____,___=__+__=<_______+*+_=_++_,+_*_%_________,___,;_=*_-_-+____________-_[_+____)_*_,___<--_______'_;__(___=__;____*_-)____-_'_%___________)__=__________(_)________=+_[%__=___[_==_=_*]___*___,_[++__=_+=___*+______*___)_[_[_`___-____<_'(___+,_______=_+__%+-%_____++'_____,*<('-_[_(+))__[___]______%+*____;_,__+,_]___*__=%_%*_-(____>+=[_,*__,____-;--___++__=_-(><___++_;)*_*__++__-(=)___`__;______)_=_%*__**_[____=_+)________;*-_`'-*_+;%_-___+_*;___--]____]__=-____**%*_;__*_____)%______,_______+_*_**_,]__-_);________;__*_,_+____*_-(___;___%_+*_(%__*`-_%_*'_*[_____+*=___-__,;_-_*<_>__+_+__)[%_'+(___,=_=*%[_,___'__+__-*-[_____]______-_*_____''_________*_*(`____'_____-_=+(_____'____-(__'-_[____][[__,'-_;_____+______'___=_)%__=_;____*_*__=__(____]_-__+*_*_____++_*__'_]_)_;____=+=__+]*+*+__;,*__[,___+__*)__`+_*__,__]_-_________*(_%_*]__+_--+)%__'=_-_*'__'_______`_**______;<+_)*______-___*_*`_'__%+)_____(+____*_*__+____<%____+___<__+__]*)_+*-___]__;;(_`'___[__%*___=_______]*_'=__>%__*_*__=___[_'_+_,[[=-,_;_=+**___=_`+__;____________'<*_____,_*=__'___-__-___*__*_____-',_______=`__((+**__<+_(*<+(_'`__*__+_)+++___*+*_(_________+_____[____+;<_________*_%_]__<_>_,_+*_`__*_*[____(_*_([[__(_%__(+;__*___[_+;____(__]_)*=_<__]____*'=___,___*'_<__,__*]__=_*__)______)_____*__'(_'____`+___-*____+__*(_____,(>____]_____->__]___*`-____]_____'__]__*_((,+_________'_=___*==;-__`*+_%____=[___(_)]_(_*_%______(-_____[_*__;*____`____)_]__(_<%_;_]'_%=_`_*___-[''_*_]=_[%_;___++____+__+_+_+__**[-]**__[*,_+)_____-__-_]__-__*>__)___*=+*______*__*__+__+`__);_'_______;__*+___**_<__-____)+`_`%__(*__+_-,+__+*___<,_=___%_>*__='____]___*________++__+'_'__)_;_*_--+__+__[____=__)(_=_-'__+__]<-%__'<*=_*_'+____-+%]_=___++'_=(*______[+-___-__[____]___=+____[>_))=,__++_*_____=_*___%_)-_>__(_____*[_+_%%_____=+____<,='_)____(*__'*_*___[_*____+_=;+;__[-+=_-=_;__*))__)=_*+_*`___=__*___*___)[_____*____;_=_**%_-_>_=____;___________%__(/_]*_(__*___,____+;__,__==_;<________*_*___'_+_[___++,+__;+__%__]___*`%__+_______=-_(-_*____;__________(______+____=_;__]-_,(,_%__[__________=%_[_____()+-__+_++_+=+-__/=_*_______,____=___'__________[-__-[*_--**=_*____+__([*___=__=_+_-+*_+_-___-__+__=__*___]__*[_)_-+_____,___'`]___,___[__*)_,>=__-_______*__)<__=-_*%;__==+*_-_%____-_);_____'<___-___[__-_________[__'____=__+_'''__[__>=__+;__(________;_____-+_=_*____=*______;,]*,__*-_++*___]_____*'_*=__=_=__+%__`_,__+_*__*_____]_=[_+__[_>____>(_+_________]__)]_____*_%__`____-________*+___)>+__(+__-=_______>_____+_)_]_*__*(_*_____(___]_*+*___;_)*___]_____+_______*'__%___-__=%,____'+_[_=*________-___+__-____;(>____++_<_'__-__*_+(*);'__++_-__=_--__(_`_*_%-____*____*)___+___+;___%*__=*_',[_____=_;,>_*_;-_>=__[_=_)+__'_(,*_*]<________*_*_(,__-_;_-___(______)[(_)___'*>-_+_](____);__`+_*___*___;___=_=)%+__]_;_-___-____+_[+_;)___[____=_*___)_,>__*_]____+]__==__[_________'_=_**___(__+___;`__+()_____%__[*_=-_*___[+__*<,__-__'-____**+*_;__;+_____*]<__'__(++`____`_-_'______;;__*__[_______]____[(__`___+(_,_;[)'_);___;____)___)+_<_]<_+__'________*____________++_=____++_+__(___'=___________[*____-=___+_]_=**]_[________%_____;__=___%;____(__-___,_+____=_*%__>____,_;[_)>*'_%_(%____*__=;+___%*__(*___=_'(__'_____+)___*___+_;_-__+*>__*__+[__+_*,_)___=)]_)__%________(+_+*___*)+__;+)__*_';,*-)>]_)____]_*__*)(]*__+___>_,[_____===%_*_,____-_;_;*_=__])+__'%=**`______;>__+____+___;[_;_)__)__+*_____`_[__[________*____*_''___*=__=___=*__][_*>]_]_+___=__*___`___+_]_*___,_______'_____-`__%__*__*___;]_=+%__+___']_<'_=__])______]___(_%______'%____+__,_+____[__-___*;__,_*_______*[-__(_*_%_*[__=_+%[)+__+=]__*>`_____+-____;__*__,_+_-_*__*___)_`__*__+_=_=______[_]_+[=_+_*__'-_]_+)[+_'_____-____+_]_______'_____;__[`'__*=*_+_____<_*_+-_(_+_=_++`'________+,_____-__-=`'*+;_='_[___*____(+(,_______*-_)-_;*_*;=-(_=[%_=___=____`____`%___[_+*_(___->+_*_+___+__%%=______+)-)->___;-_<__`)=;___+(__(____*+___`>__')[_+_+%_'];_-____[;--___,=__=____+_;_=__,_____)_]+___(+=-+___=,*++*+____'_____=;*____>+_______<;_**_____,___*_'_'__+(_)_____+__(_=__;____*__*_-_]*___-___]___>]]__=_____%__+__=_______(__%+_______*__-,_+**___>**_*+__)__+=_++*____________(__)____%___+(_+_**_*___+;-;_(___'<_)*`__++,____;,*______=____[)_+__+**_*__+___]_+-_;___%(++___-___[___=_%_;__*_____-_<_-__(_+__-`,__+__]____-+___+_*_+_(%___*'___*_[(++*+__;;*_____+;'____[*__==__+_*'___-_*_+_=*____*)<___[**___+__<__,+-[__*(__]_=_;__;____['___+__;'*-__-)___)_-(-+_+=_*____+______=[__*_'(+=______,+*_)____[_-_]___`_**+(]___`__%__+__+____+__)____[*______[)__;*-_+_<__'___=_=___*____[_)___+,=(___+%__+*__>______%____''_<+_;______-_`]__+[_]_[+(=__%*_____,,*________*__-_=-<-____,(__%;_______]_*+__-__[________-*_=____[]_*__+_+__;;____+++__,_,''__]-___-__]=_<__;_____)%+____-_(_)[_*_+_____,_,_______*_-+____(_______`_*_____==-_(__*__);*____-+_,_=+_________'____]%__-<+=_[____)_________=___'=_________+___;[__>_;_-_+=%___=,__`__*]+___=*________/;)+=___*__(>___+__-)__=_____`*-+__-__*(__[__-<__,__)_]+%_)_+__;_);_+_(_[___,__=*%_=_-___*_____=__=](_=_=____)_+_%+_-_+____[_+_+__(________=__`___'___+=_=______+<;+_+__+_+___'+'_,_;____=__-_+_'_*__++_____*/___%*)__[*_-__)+____'___[_____=___[<*=______-_)___*/=______*_____*_`_*__-`'-[`____'_+______________-____+__%_-+__;__*________-__%,(_______%______,_______(_=___[__+`;*__=_+,';_______+_____'_(]_+))___`_'*________**_;____;_*'________'__=*_______;____(_-)__>_____)_[_(+`*__'__*___**+______+;__;_%_____=__=_]_;_'+/__[______;;)_-<______-___=_;-(*_*[+'_'___[=___%,)*__,____%___*_]''>'_'%_______+__+_;'________',+___*__+**_______-__===______'_____+__'_=_*[____*_%__(__[___*,__,-___(,+__>+__`_`__-]-`__;_=____'[*______+'___]*_*__*___<'[<___'_<_)__+(__*_*_,+;*_*__+(__-_*+___%_=%]____+__*__*__>_)_)=+_(____%__;+;,;_____+]__,_[);*____=_*+_____`___-==*'_>_]'-_<_]=_______'*_+______+__-_=__'_____`_+__)*-_+*_'_,[_+__=__(____**_;__''______`___`_*-_%_________-_++___'__%)+___(]___%__=__=+_____)*-__*[___+_-=_%]____;_____*__>*__**[(_*___+_[;_[_(__'_`____+___;-___**__+)_+*_'`*_=__+<_'___**_=*___=__'+;*;;____**<*____)_______+_+________-__+_____-_+________]_)_*___________+_;_*%_;=*,[__________,____=_<[-___*_____,'__-__*_+_-_'_*_-+_[_--+_+=_[((_+___+_;__;_<+__(=_;+_+____;_<_*__*+_+_;_,_____(_[_*_+____,(_;__-`___;___*_;_'___+=____,_______=_;*'%_[*+__,______'%)=;___*+___;]__[_+_____=_=*_;_+___%'[____-_*_-____<*____[=______*%__,)__>_'___,<____+__>__(__***,__,`__**___+)'+__=__;])__,____%*____%___[__+*______*_'=__]_[;_(;_____*]_%==__%____%,______%`___)_)_*_`*%__'__)_)+_*_-__-_]____+_(__=_______-,______=(*+[_,___-___(_>______*%*=___+_'__[___*_,_*____*___%____,___,_________<_]__%___(,_'<_________+_+_*[=__+-__+;__'*[+])'_____*_*+_;+(___+___+_+___*_=__,__-_=-%_(%_'=_______*____*_)_=_]__*_++]*__'-_)________=[___+__+=%*[__+*++__'__*_______,_+(___+_*__)_*____=_*]'_______+<_*_+__*-__-*__;]_'__<____`,_____%*'_;_=)________;___-____`*_____)*==___-__-_='___<____*__+'____=_=_[___%_)______=____________=__<____(_+*+`___*_(__]____]_%`'[_-[_______''__*______*___[*_-__________>__-=)_;___'___=____',_`___*_*+__,_%[____%____+__*_%____+_)*__'____;*-__*_(_=*+,_=*/+___
```
[Try it online!](https://tio.run/##VVpJjvY6jjxMQ5BEWsj9k@WLCIaMrk0VUBNQvanTv2ZwkJ35D5mfB4ljMEjlf/77j//919//9pf27//@31//9c8//1wj5/9Za/HivtZYa87yx/pjtFTKWtd65N6z6roXjcVjPLTsS783@dfvvLJe6Z3Xg0uLG1ZctemDtHJhuS2f8rL79rp9Iru2MtnabKu3i1klWuuUpXCPKx5Ni2T9Sz4f8q@u@JLdcXvU4xWRplzH2qzL4kvUWpdJ0fXabVsQr/7UZS/TaY8WLoQF5O@Ud6AdDdV2zYxn@xiVVTYaYRZbotnCtqFslH9wg0XpBwKwCWw2TARNJ@v717pJlFxFdljyXHJbQVLRh8J6@l@3b5Oek@c2xTqLuQRb0jjCIoe@PQ83aqYhu0JEau@7vW83qAtPjQ7bJi380c90hwzwkyjDski/C66pY0pNtk6DmMP88aSOd8caXT7mWyS3h3TTesMew7buWyKLJs5YmOU96Dbo7sviAffkYhZBBrk/WR6VncrUYFOLlcf85rExDnUpLNx68bDuU8XMpSKujm6qPCZOvi1M8QjulKFGemCRRTfrDUK8JzWJ3EVM0AELDezFD4fBbtXJYobWDbNS11jBl15vJZkbEhaWW2m222@TGHFa9JMr1N@8RJQsjYefRRUhUMye6ua65q1phD8q0JF3xiCZi6uMIAQsrAPSP/K23JkwOqvO8rSmX5bL2VKKsieeuVx/5r04L83xof83hRzJ8mnmdWg5JiJOg5zVHvcj6OFApFaw4DRLpAAAJLh4PxkAWW4dIoElgnpxeGrSG16Ed9Zzk61pxhDBax637dlEx7HDZrhnljtCxGjkggSGCZ4FSBowYsPOO5pnpO4UbYavUx1m6lCDswBQ25A1NmBSZGZ7NFsQ5A8u9F40wCxP004fFnnzpUFoGP2Cx4jFPehOhu4VoGEbS4Yni5l76XV5uCXY0NFColYBcds06y29O1jjy56kEkDdl/q1ua2HiwOzn2EdpEYmS5JOasxRK2vGUC@6mZtNvxWiyiXVe5osXeuPPCcJquCZDaLcdhkFoiA0zJJWRC7cu4oXL1u7rkuDjZLZqEqI9uG5HNBuHjxox4iWqIbSmadXkVYhgLzaxRIdrkBWpqlOcmMvesOIzDF3GPWO1N0hIYFbVkWeJ9xunRaFJVtqLMbsbec7Ulci49Fw6I87XnK1mltazbLIuX2hV3MLS1hJ7vp9nqTAdViACSVwrwWaodgMg1bRcmyJr9vgOr5ScADJctQCCw1Hj0e/WzhJveL3biQVTAst5QnYTGyJ64Y27VM4PrbTUOEfLcI5rtyT6iWvXlpcALgiZ5NCsq1h2avFJyUB1LrKDfzrjiDqYCtKGiVNdjuaJBGrmNUDpRnULnZFHoUeKNbhrEdUlifs/50TUoGy@NFX2WqwoI6Yed7YeGUrmGV9vSXynJpVNT/rZQZ0PMMoF3KSDeaBEUCuCSXS@3S/gMCTg@xhUfLKViiFR9grNpDr5HSQpbsiTuP0cRqjhu94B8M0xXaFMEARizy@eHE2cb3RTxEBeFyDvoI@sNVbuXBpMdCHR6QygkolqXmnEvIjKSlC5WXDdi01LiK5C3UPs@@0TJgrKmYjN7yIzocyLIRiNrj0@PCcgm3mUNqbJX0TUnBTuVtxhcCf7n5BirmcHxu7QsTs6gGicpmJDtsI@XdGBBBMIdIfbAix@Z@SmgH/t7ciqXOnaV2NNK6ztZ1u3ZFuF83m4Zg/a6srx/upvNRcwkOY47IyOmDnTR6FhBnNZ60iL1UAS5E/T4T9qSxj8fGpicKzmgmggaUwLMwXuhQGg5trV4rEnm2HLuL7j4QK0dRDF4@pOG6B21tzqjbkgeu0D70qUONyK6MaKemhv9UbzSQTcZtA6th6sgQLd41xLWUKFrfXMSsqRIlerKvp9Vv0TbL6oTS5boLcjel7dqg2XSNSdAaHpAcgKXBP08NjmFklFhp6ncv4kxSUJK1SMeo0SED1sNSFutTmW3MNDjQ88gsuEr7PS3vA5Mub/M1Y4jTUnWCdbX17DeP1qvSISDOeUmzfpkTfQYcNCFBVugUZkuAmxL7UWFrW57DV2oe9L7k/NYiQg6S8ojXGvnlArxwawLtRVrvwo0pvXSFUKeClO7nwllh/OlNodhpfFTGYvCIJXZNwMDxJ9AIVWj@RQXlHKK9gI6k852iouoONREOnT5ME@50Ubd4wFdqGELvT8s4fkOmiS51A81NclR@voEJXtIgwvVXFnTQN6c@P0xM0QhAdRjIguTMfeR@eLruVMJqkHBdLi/dE1NODiqC6hhxp9TqUgwIudp9fd59SzEfaUbXgxWTiHuV6I1WomKW7tQZfUiXilePFwWz92higTg95kzOmodmt@nhGlrZ2o9W9nqt4N54V3/d1Z1TWR1VuUyvCPQCEPXpmq1KaedLNtRvOmGgXa0SZDhFQEi/v9Qa/rMQiDTVcoCB/sICtqTyD/8kjT7JaKpF@WL8sLjtU37QuBFoO42wSyNZ056UpRsgRo4DeodYCaDR0uE8gsQQgnJXZS/9tJVUWGdFhTyWVzVe5rTrg@rVqHUck9nK3o8HTYY85llClUoqqokqM7ByLtEGiXbLBBzrr6EawoSmmEMpCHUqynl2hreDM9RmrgEkAqS9LzW@ewZQ/yNTymfewzQqkur25YcIgeZWt8uFDnxQBmV5CL/BfWmz@KaJv6qn8txDLcmCFz7RnBGcr1SZvYkMe@PFnvFwy5govXitLbxOeJRphM0lZRyTU2Mber3nP5ga71Rc1WISWief2n6Zi7nGNl7Iig0/VkhIGjYhjY@5vJcunQ@v8UN01XeJhvD3rFSzN/cN5bYXGHjXOrVEIbjBlwV1rjS37UQqHd/MgqI@N5jZM3kh6jXTFkausFyRuG1M58lnab2k19erFVg5aoHqw1@pMtPg@xbgpW/tTXwF3m5dX9OAjqQczgmnQt8OJjqcb6onzT2@dxHWFas96sSmT0c4YoJTajnYUSN1ScVmHkZLER4w8@gGmKZh4Kf8c4NuYEkmNpftXsBedDXQVJ1jvNCKY6cJA47ZGukdFXt75wRc1Wcsf0QaZJijX2phjxPDAQMPnfLfm3CcbsjUBKoAOJsVDXGpkrsT2sDzTcetp04zs5IttDBPzj1Njr7D1SY8y3j0jpXdXFWX62EwKqZTpKY2GxnWPslXhF1mSPylI3/LNNi/U7DX75Q@f9klpsyblxhDtftVOkQWK6FFemyakowf6n8uSVbqHehHYe0kxDVKl4fti2a9DPZMrpoxsvmG6VgwYGZOlqhMaMLG3Hyg@M6aqoFe1JRVa1qoOAnZTVsvtjOlaEXFjJO9CNJqkvopWt0ZdErWf6E49T9j6IYyD8dcrpPZP85ehyciqpb5hBGZGItAd3SJ5JWcTbzNvZ7SPD2MtbMUJ7BCe73VmE/MNiRLmyMEF3RnR2XUbybuIsy2nGKBPAr5pQmfGhImuZzetMQw5FJgp2qUgbyPI5IRa04eHGVSC6@RNzl3Lr36olaClNMghCFMQbjoqQ0P57MjlY3OU8WQS5JA6PMPShcs@hWmo4JhP9SEtwBACNILwWlol44TGNdtlk181V0quCtdWweOAQpKUTx3dMs1gRmH3uTDbA26LU/JtMLKm9XGH@1xjOAbBwGNWaYfWsXFIx289qOk5jNpdAcdnj3bg8BlLVilqgHb5NMk6ZbnpM4a67juYfnoHZpaq6Z3sCUVbxvEvsgl91UEu8y@4iJlqMkuwHT0AxJsdJEg9rUgWNl9pT7QPF2ZV8ki7YbnhZ8X/wvwWYvS0b0MK6zefnLbneAfxjd@ZffLChVFIMYP27l1bj9GNojbbc03fG16LTn3AJ/LoAhiNJ2m3MPwwTo/f9IGe0VPpQELYSGlgPpvJBH3XE0g39iFWrJYedkSHFo@L/eR@CVipL@6qxbSN53VGqzreAxctocfQGUUyELo@0CzAc3Iwu7ZAlRj5ORmT6ORBddAHr6R9bmezdiYw3fnCS6CXdT/m0tt8yXGGp13cIX12VuJoo3xtt7qPF/wE0kfJweXeA9T2a7L4BDMfzblvNb82HLeNbyNlpwOrnWwnjJ9z2vG7sPGeZiFjeSRNRHUGaXa@ZOenV3aTK9Vhc7yt9VAzuyBSALDWQCLFcUikvXLteqY0LYEHAYraLsOAiLsEfuKVxHEKM9cuyvHs44ryBlw@O0dPB6aWl0/JlQgDeSk6v0U/Wm6rxldTduDrzW2ledKIiNEa/DO@tIHMIe3JbT4xS1@/p3qOo@rIzwhdDymO8os8bLcXnzpIa9l1BMFH7r@GAEL@UExs/JXfoPVDyG5pHaGwHei0pNXIjaqTuodido9M9H00z9P2i/LCjOH9DAZW1cWhpiBDKxg8WMe6phKho8Y8T0FJevJ8ZS/H0X/3V9bDf/eA37MUpSPfGslOMeduAYqPhQ@d@8tnLHPpIFnc0u72rDgNzQEmOq@8Kar3meepO5yK9cXo9IHDbrLPzYqcRGy632MERZmKU0MLzQSu1Q@fqt06X/UcHTFd1ZHqwOnPJfYAot@RjTkwwHqKETrrRLySHiJl0DR@x3Lm9JgC2jEttc9guFnIo5PRIFeotXGwQwZWNoMy@K0puI@zLx2pzuIUdGL6rtz02fDRTA4wVUj4KCCydkG4PryfzWJPP7UhG5XV9Z4e//plA5P77fnqL6oOJBfw6IOOTxvuHfY5X0g5dh@mvYMC6tRBCnCxFCc6Guw4f5Vi0F2WbudxxHr/8MzcMC3J242QqqXgBAejTybLaiTBPon3tZyMO2kwCIONuT9gj@wYZSU7uGxxfmu2mgE@ODPRFM772JaXz2iINA0e84c4JFuodPBiS8R9zjk3V1829bzh3NL34TMST@MoufDpUZ/BGQ/E0NFUZZOzxW9@lJdYNX9xFGIbZltreoUqZO1U9hQOOk6BisfHmmAjt10XdpvPTziICDCPTl@QDQJDd43Df/xmEZdosf14zjho0xN1YUy7IPr21Y5/xdl8G3t/T1OmI9dIpCZk3vhpIvtmFKf2euASKMenhZDSJtIYyMqzJHFN00Q48hn1O1tpVmI9XceI8aSODc/49Y4cvyMxv7@a8W1i8cF/t0oEt2Pe4hxSPP5I5LVIqfwqRSvq5HpHKm3Y6D/HHvlYT1gcp7VzFzdeMbq1IX6OMxndfpAw5EE/8Myff/4/ "Symbolic Python – Try It Online")
[Answer]
# [Python 3](https://docs.python.org/3/), 235 bytes, 1 slice
```
#xn=t'(esvtarl('s.turp(pienrp(u)t.(l)o[w:e:r-(1)].[t:i:t-l1e]([):.:l-o1w]e[r:(]));)e)v#axl=('xe)v(a'lx'#.'u*p7p0e-r0(+)0.-l2o+w2e-r4(-)4.+t8i)t;lper(i)n.tl(oswterr((s)t;re(vianlp(uxt)(()'[x:#:'-*17]0[-:0:+-01-]2[+:2:--41-]4[+:8]));)p)r
```
[Try it online!](https://tio.run/##HY5BisQgEEUPk4VVLSWaCXRTTZ9EXGQhjCBGTCWxT5@RWf33eZtXv/K7lZ/7nnr5iIK4n7K2DGo3crQKNcUy5kAxkHHzF0duBA6D8cKJhbKLATyy4Uybu0L0jSEgvjHiOa09f0D1gbCq3NVk1PGoz2ojNQsaraE8b/qax1@AcDFaXgnlnWtskLAYybDtl8TWAPYhWoQzrSWPqC4IgMp3nljRwz2D9cSWNVlHYfaaZyZaBi@DX/9RFdt9/wE "Python 3 – Try It Online")
[Answer]
# [Python 3](https://docs.python.org/3/), 1121 bytes
```
c#5c#cl#7a#cs#5s#s #9P#5r#si# n#it#te#8r#r:#2
#e #a #8 #2 #s@#ss#tt#1a# t#1i# c#7m#ie#5t#2h#oo#5d#2
#h #i # #5 #3d#te#3f#1 #oa#s(#fb#8l#2a#rh#6)#1:#2
#2 #l #7 #2 #2 #l #a #4 #tr# e#7t#3u#3r#4n# #:b#bl# a# h#9[# :#3:#4-#61#1]#2
#r
#
#9c# l#
a#1s# s#s #lI#7n#ip#du#et#3H#8a#8n# d#8l#7e# r#::#n
# #b #1 #7 #8@#rs# t#1a#5t#9i#5c#7m#@e#rt#ch# o#cd#6
#n #1 #o #a # d# e#5f#t #la#o(#ea#8,# #6b#8,#c # c#4,#8 #ad# )#c:#5
#4 #5 #8 #1 #3 #3 #e # #ct# r# y#d:#1
#7 #a #4 #5 #6 #8 #7 #: # #8 #e #3 #1a#
+#ub# +#cc#r+#
d#4[#71#5:#a4#6:#s2#
]#5 #t #5##d #11#a-#:1#1-#41#8-#71#t-#81#6-#61#
-#e1#a-#41#1-#51#3
#e #: #3 # #t #I #8 #4 #se#3x# c# e#3p#et#1:#m
#7 #2 #, #t #9 # # #1 #b #: #- #5 #4p#,a# s#4s#8
#t #5 #5 #3 #2 #9 #4 #1 #,r#te#5t#4u# r#rn#: #-i#:n#ap#[u#:t#3(#6)#
# #s #) #8 #7 #3 #: #+ #:
#9
#np#1r#7i# n#7t#l(#6P# r#3i#Pn#2t#te#:r#2.#8a#2(#)O# n#lp#7u#7t#8H#4a#8n#7d#sl# e#rr#t.#4a#1(#2N#io#9n#2e#2,# #:N#1o#5n#8e#5,#5 #5N#6o#2n# e#t,#f #5N#-o#on#8e#5)#+)# )#5 # #)##7 #ra#2r#,g#3h#a #1t#2y#5p#7o#h
#(e#1x#3e#7c#4(#8"#5p# r#5i# n#2t#8.#3_#8_#ic#6a#el#9l#9_# _#9(#3i#cn#rp#ru#4t#9(#()#p[#7:# :# -#e1#o]#5)#n"#5)
```
[Try it online!](https://tio.run/##NZPNbpxAEITvPMUo3wW0u5b4hzn5mFwc3y3LYgFnkQiggZXip3e624mEEBq6q6uqa7aP47Yu@ednT9nTz9Qd/U65szvaZ8rAPuEWpoNjpAkETxYxOjpH48gc@yP7znGQdjh5S31P/ZtppDzIbqwr5aBdN8fkcI7SkQ8KmL@TOtaOPeb9SjOTdYQbVUJqgwR/dtQ26Otb5haOI@BG6oP8Th4oFoX1V64zTmjcaF9wntxTXKhS0ldFCxEuou1xM1FHuuNM6fyDWjRuDHdGwfxO09EI5qCU6hEX8J4l0ilXp5yFUvNI2E1yp0rbST0U4Y8j4aC/4Vb6gSpisZbVyAumMC/fOWRuxxozyqyzIldX/eidGlic1d5OihN6Txmp6tI8F6jcntHM7A@l5z4YPGmkxL4skuLK6uXEW2VjLdIohKMT9yvuRN8TTkQDxQt1SunpCirPnhG9KojwLGGQrpTughczLxQpzUXrjwtNSmUmRxdGqymspkzJLSrehjqD@mE0hN4u2/@jSsWNfFPbZeO/o3@7Pltxa13OJF8N52K6io1zp7srdprIGH6Fynpbw5eWc9CMyWqKu1oUFkOY8AvdxssdL7uONWzONitJSP47ltu4k7wlMLLBjTRQ212Q1M3S9ayY@cTzQma3wweyB01OFpP81Mp5o75rffOdwhJVD@yzSg7C7UEP05jsiWmlFZyRzJLgn0jl1iw0wv9s6p6oVrJFe48z73ZyWVm/ahJOiUalNLsSVEIQJoHzL/KbRiKVy/hBKZRWbhHxSPqHXC6RhC2m@aa/RFFpGkVR80D@RvPG1FN1jDOtPG@4N9pYhfcLYSPcKQ49iRM2iZDXe@csCeurElsEOYk@P/8C "Python 3 – Try It Online")
I hope this is hard. One slice.
] |
[Question]
[
Part of [**Advent of Code Golf 2021**](https://codegolf.meta.stackexchange.com/q/24068/78410) event. See the linked meta post for details.
Related to [AoC2020 Day 20](https://adventofcode.com/2020/day/20), Part 1. (This day is a dreaded one for many of you, I know :P)
*[Obligatory final "but you're not Bubbler"](https://chat.stackexchange.com/transcript/message/59962414#59962414) explanation*.
---
As the train carries you to the destination, you've got some spare time. You open the travel booklet for the vacation spot, and its map is divided into nine pieces... in random order and orientation. Apparently you got a brain teaser version of the booklet or something.
The map pieces are represented as a square grid of zeros and ones, and they are rotated and/or flipped in a random orientation. The four edges of each map piece are the clues: if two pieces have a common edge pattern (one of the four sides), two pieces are stitched together on that edge.
If two pieces look like this:
```
Piece 1:
#..##
##...
#.#.#
.#.##
....#
Piece 2:
#.###
.....
.#...
##..#
.##..
```
The right edge of Piece 1 and the top edge of Piece 2 match; you can flip Piece 2 with respect to its main diagonal, and then join the two horizontally.
You can't decide the orientation of the whole map yet, but at least you can assemble the 3x3 map and tell which piece goes to the center. This is the objective of this challenge.
The edge patterns are all distinct; for any given pattern that appears in the input, there are either exactly two pieces (for interior edges) or one (for outer edges) with that pattern. Also, every interior edge pattern is asymmetric, so that you can uniquely join the edges together (modulo orientation as a whole).
**Input:** A list of nine square grids of zeros and ones, representing the nine map pieces; you can choose any other two distinct values (numbers, chars, or strings) for zeros and ones.
**Output:** The square grid that corresponds to the center piece (any orientation is fine), or its index (0- or 1-based) in the input.
Standard [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") rules apply. The shortest code in bytes wins.
## Test case
Uses `#`s and `.`s.
```
Input:
.###.#
#####.
..#..#
#..##.
.#.###
..####
#...#.
#..#..
.#.#..
.###..
#....#
...#.#
.##...
#..#..
..####
##...#
##.###
#.....
..#.##
#.....
#.##.#
###.##
#....#
#...##
#.#..#
##.#.#
#...#.
#.###.
..#.#.
.##..#
..##.#
#....#
....##
.#.###
.#...#
#.#.#.
....##
##.#.#
.#.###
.#....
.###.#
.#.###
.#....
..#.#.
##....
######
.#..#.
#..##.
..#...
....##
###..#
.#.#..
#####.
.#.##.
Answer: 2nd-to-last piece (8th with 1-indexing)
```
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 51 bytes
```
F⁹«≔⟦⟧θWS⊞θκ⊞υ⁺E²⭆θ§μ±κE²§θ±κ»IΦ⁹⬤§υι⊙υ∧⁻ιξ∨№νλ№ν⮌λ
```
[Try it online!](https://tio.run/##VVCxbsIwEJ3xV1jycpFcD90QU4RUiYEWtWPVIQIXLIyBxKFUVb89vTvbgXrI5b179/zO613Tro@NH4bPYythWskfMam7zm0DvH9oea5mYvK1c95KWIRTH99i68IWqkqu@m4HZy33JGHQa7nyfQfL5gSPWiYpAVTVcRE29goHLZ/ttokW9hUeLbO49M//@@j9K1boE2HedBGenI@2hSkOeA9lCC92aFWHb/qtwwaWLmAQp@UV@ZcW5sceLYKWHvEIXu3Ftp0FX5UzGwajlDJKKDpGGKMMIfwQUtQlkgqxyHDTpCYXRYV6hqREC2KNuUmTAXNcGNGEEXzlDdJ/ijOSqaQAqhgUNk3k5ByZJXylUXexyKDsk3OkidLMrveavN1IjmyaVAnx06WJ/Doqr8XSbM6x8puVx@ZlxfBw8X8 "Charcoal – Try It Online") Link is to verbose version of code. Outputs the 0-indexed index of the of the centre piece. Explanation:
```
F⁹«
```
Loop over the 9 pieces.
```
≔⟦⟧θWS⊞θκ
```
Input the piece.
```
⊞υ⁺E²⭆θ§μ±κE²§θ±κ
```
Extract the four edges.
```
»IΦ⁹⬤§υι⊙υ∧⁻ιξ∨№νλ№ν⮌λ
```
Output the index of the piece whose (possibly reversed) edges all appear on other pieces.
[Answer]
# TypeScript Types, 738 bytes
```
//@ts-ignore
type a<A>=A extends[0,...infer B]?B:[];type b<C,P=0>=[C]extends[P]?C:b<C|c<C>|e<C>,C>;type c<T,X=[]>=T extends[...infer T,infer A]?c<T,[...X,A]>:X;type d<T,K=keyof T>=T extends T?keyof T extends K?T:never:0;type e<G>={[X in keyof G]:G[X]extends infer R?{[Y in keyof R]:G[Y][X]}:0};type f<g,h,i=g,j=h>=[g]extends[never]?Extract<h,[{},[...d<h[1]>,0],[...d<h[2]>,0]]>[0]:i extends i?b<i>extends infer k?k extends k?j extends j?(j[0][0]extends c<k>[0]?[[...j[1],0],j[2]]:c<j[0]>[0]extends k[0]?[a<j[1]>,j[2]]:e<j[0]>[0]extends c<e<k>>[0]?[j[1],[...j[2],0]]:c<e<j[0]>>[0]extends e<k>[0]?[j[1],a<j[2]>]:never)extends infer l?l extends l?f<Exclude<g,i>,h|[k,...l]>:0:0:0:0:0:0;type M<P>=f<Exclude<P[number],P[0]>,[P[0],[0,0],[0,0]]>
```
[Try It Online!](https://www.typescriptlang.org/play?#code/PTACBcGcFoEsHMB2B7ATgUwFDgJ4Ad0ACAQwB4BBAPgF5zD0APcdRAE0gG0AGAGgDoBsRADN0qQgCEAugH4JALg5SA3LgKEARqQDCPAArUuNDtqmNmbTntnb5W7QB8AxjsoP0rntsqr8RFwAqPAAa1Eo0AfRMLOwcAnxCouJBiWKE5LKBPHECwTwZlPLBvuqspEEA0tQA1ug4yMKEARFRFuxNMrX1jZHmMZCEFTIB8ojoAG5i8lwlRB4A4jQA3hzBhEKEXQ2E81Ly86tm0ZbrImkASjIrAJqnm3Xb53sH11KHAL7T77OEwqTwPAAFjxYNQAQAraiA4zwI5tThjSaoWQAUSYqGITnApGBHCW72y8TKgI4AEYpJQeFwpISBMSOAAmClUqQU7h7WCtfrrGRaWCUPonVLiaqdLknUXg8XtcEyAAU4PZ7MF7Rc1Uo7JkHByfEV5JZPEVTL2LkV1I11JVA2qmo4ZD1zKNrPkHjNbMtx1VpA86otsg4DtpusZNOpJu9pDdlD9VvopHVtsD9pDlD2iLEAEpY8LCAAbGS56UDfN-NFOXMAV1YHgB-KBDg41X4AlzFOm7a4HemPwAsqQ9DRSwxy1WPHoOIgKwBbDRiGnj83ZBc07gG1dhyiYbB+QhraiEPscTAgQingB6Mkwp6Pp+vvEIpJ4D6fj8I9-1V9vZJfP+ff+pPCfneT7viBYEPjSQGEN+b7ga+r4AVBq7-r+8GQbe0H3qBf5oYBp7odBSEIeB2GIRhMFYb+WEEcBKF0WRX7YfBJE0dBxGwRx76schlF0R++F4YR5FMSRIHcexpFiYJtEiTh4lUaJEHSWxCk4S+8mcYpDEETejFwfpSlEVpLHKRRqFwRpzEcbhRmaXZ-FfhJBkOTptmSdZlkGVxplOdZUlueZ-7cbx7EIcFgUhQRrnCc5Fk+cZHmmbxIXqUlqlWQ5tG+d5AV8f5AmfrpMmKTZ5FWe5mWYelqHhfRJlIbJoW1aFNWCdFel1ZxtUVfljmqclnlqXJaWdWF8X2VRUWCUVVV+XZDHFRNhllRFcUNdVXXjRlk0jS1QVtYBFJAA)
## Ungolfed / Explanation
```
type DecNat<A> = A extends [0, ...infer B] ? B : []
// Get all orientations of a square by repeatedly reflecting Cur
type Orientations<Cur, Prev=0> =
// If Cur == Prev,
[Cur] extends [Prev]
// Return Cur, which must include all orientations
? Cur
// Otherwise, set Prev to Cur and add to Cur its reflection over the lines Y=0 and X=Y
: Orientations<Cur | Reverse<Cur> | TransposeSquare<Cur>, Cur>
type Reverse<T, X=[]> = T extends [...infer T, infer A] ? Reverse<T, [...X, A]> : X
// Filter a union of tuples for those with the smallest length
type Shortest<T, K=keyof T> = T extends T ? keyof T extends K ? T : never : 0
// e.g. [[1, 2], [3, 4]] to [[1, 3], [2, 4]]
type TransposeSquare<Grid> = {
[X in keyof Grid]: Grid[X] extends infer Row ? {
[Y in keyof Row]: Grid[Y][X]
} : 0
}
type Assemble<
// A union of 2d grids of 0s and 1s
RemainingPieces,
// A union of map entries of the form [Piece, X, Y], where X and Y are Nats
CurrentMap,
/* aliases for mapping */
CurrentPiece = RemainingPieces,
MapEntry = CurrentMap
> =
// If there are no more remaining pieces,
[RemainingPieces] extends [never]
// Return the center piece (assumes 3x3)
? Extract<CurrentMap, [{}, [...Shortest<CurrentMap[1]>, 0], [...Shortest<CurrentMap[2]>, 0]]>[0]
: (
// Map over RemainingPieces, binding CurrentPiece
CurrentPiece extends CurrentPiece ?
// Map over the orientations of CurrentPiece, binding OrientedPiece
Orientations<CurrentPiece> extends infer OrientedPiece ? OrientedPiece extends OrientedPiece ?
// Map over CurrentMap, binding MapEntry
MapEntry extends MapEntry ?
// Check each relative position
(
// If the top edge of MapEntry matches the bottom edge of OrientedPiece
MapEntry[0][0] extends Reverse<OrientedPiece>[0]
// [X + 1, Y]
? [[...MapEntry[1], 0], MapEntry[2]]
// If the bottom edge of MapEntry matches the top edge of OrientedPiece
: Reverse<MapEntry[0]>[0] extends OrientedPiece[0]
// [X - 1, Y]
? [DecNat<MapEntry[1]>, MapEntry[2]]
// If the left edge of MapEntry matches the right edge of OrientedPiece
: TransposeSquare<MapEntry[0]>[0] extends Reverse<TransposeSquare<OrientedPiece>>[0]
// [X, Y + 1]
? [MapEntry[1], [...MapEntry[2], 0]]
// If the right edge of MapEntry matches the left edge of OrientedPiece
: Reverse<TransposeSquare<MapEntry[0]>>[0] extends TransposeSquare<OrientedPiece>[0]
// [X, Y - 1]
? [MapEntry[1], DecNat<MapEntry[2]>]
: never
// Bind the above to Position, and if it's not never,
) extends infer Position ? Position extends Position ?
// Recurse:
Assemble<
// Remove CurrentPiece from RemainingPieces
Exclude<RemainingPieces, CurrentPiece>,
// Add OrientedPiece to CurrentMap at Position
CurrentMap | [OrientedPiece, ...Position]
>
// An excessive number of unreachable states
: 0 : 0 : 0 : 0 : 0 : 0
)
type Main<Pieces> =
// Start the map with Pieces[0] as (2, 2), so that coordinates always stay non-negative for 3x3 grids
Assemble<
Exclude<Pieces[number], Pieces[0]>,
[Pieces[0], [0,0], [0,0]]
>
```
[Answer]
# [Pari/GP](http://pari.math.u-bordeaux.fr/), 114 bytes
```
a->l=[[m[1,],m[#m,],m[,1]~,m[,#m]~]|m<-a];[i|i<-[1..#a],vecsum([#[1|f<-concat(l),e==f||e==Vecrev(f)]|e<-l[i]])==8]
```
[Try it online!](https://tio.run/##hVPBioQwDP0VwYtCOzS3hdr9jL2EHER0EeysuLNzKvPr7riMmrTKQmn1kZeXviZjPfX6c5y7zM21fh8cokdQpDzm/u9QQI/lyD09KPhK12SxD32lES6XvCZ1b5vvH19gjhC6Sjdf16a@FUOpWue6EJ77R9tM7b3oSgptpQfsiUrn3mgep/56K7oC0agM1rV82/33BdoFN2vAFrOBWwwwBKwIWBapDDeeWXk8k0kycQQYwvMYprZzFzXDSedqokorKRLhMVzfvNSECWmUFWkit89YESKdhJMqD3mRfvq2IN02wsm07rMXMKwD0p6Ao7vt@65mpCfR3f7NnfbNAWvvkogXeQJJTDQlkX7a23DQJVwtvS1Ib6OZOJxS0V7PWS/nXw "Pari/GP – Try It Online")
A port of [@Neil's answer](https://codegolf.stackexchange.com/a/240143/9288).
[Answer]
# [05AB1E (legacy)](https://github.com/Adriandmen/05AB1E/wiki/Commands), 20 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
ε4F¬søí}\)}D€íå4ôPƶà
```
Port of [*@Neil*'s Charcoal answer](https://codegolf.stackexchange.com/a/240143/52210).
Takes the input-pieces as a list of lines, so the input is a list of list of strings. Outputs the 1-based index of the center piece. (Could alternatively output the 0-based index by replacing the `ƶà` with `1k`.)
[Try it online.](https://tio.run/##VVG7DcJADN0lrpAiC6SwAaKmP1KAxATUaZiEhi7pAFFzEiVDsMgR/5M0sfw@fvYt14fj6lTK99Fs3/05v/LQ7Rfd5nfp85BvTb7vPs98LSWlCgEAoaoroA/HAhFQOuNPOkAsgaho60QgMgjMV5YWIAVxUHQEso4sca4TU0qgdLB5bICi4xDRoyKSTyArPCeEaYBm4BvrokzWeUG3JWRMnMMDi4HolOXz5nQ/0ASSuxhoYcA6/DJm4DeHuIvqfLBu7A8STwuia/8)
Uses the legacy version of 05AB1E, because the zip/transpose builtin `ø` works on list of strings. In the new version of 05AB1E, this would have been 21 bytes by using the `ÅΔ` (get the index of the first truthy result), by taking the input-pieces as matrices of 0s/1s: [Try it online](https://tio.run/##VVE7CsJAEL1LphLCVJ7BwkqwjCkULMTCYus0gjewtLUQEjvBOlsKOYQXiTs7vxgWMsz7zO8UtrvDfiwQivA9t@mtj@Pwmi/6NsR37JrNrFn2j3gZrv3zcwuxi/fVOFZVUgAkVVkAfZgCREDOpB9ngFgMUVCXFYGYQch8YUkAHBAHWUdg1pEl/uvYlDoQOmi9bICsy014jgLvfAJpYH2CmzqoBjaxDJrJUs/pOgSX8XVYw2zAOmFZvX@6LWgC8V4U1GZAM/kyamA7B9@L6KywTGwH8dMC6@of) (the header transforms the input).
**Explanation:**
```
ε # Map over the pieces of the input-list:
4F # Loop 4 times:
¬ # Get the first row (without popping the list of lines)
s # Swap so the piece is at the top again
øí # Rotate it once clockwise:
ø # Zip/transpose; swapping rows/columns
í # Reverse each line
}\ # After the loop: discard the matrix
) # Wrap the four edges in a list
}D # After the map: duplicate the list of edges
ے # Reverse each edge in the copy
å # Check for each if it's in the list of edges
# (which unfortunately flattens the entire list)
4ô # So split it into parts of size 4 again
P # Check for each if all four were truthy by taking the product
ƶ # Multiply each 0/1 by its 1-based index
à # Extract the maximum of this list
# OR:
1k # Get the 0-based index of the first truthy result (1)
# (after which this index is output implicitly as result)
```
[Answer]
# [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 102 bytes
```
Pick[#,Total[Outer[Boole[#==#2||#==Reverse@#2]&,e={#[[1]],Last@#,First/@#,Last/@#}&/@#,e,2],{2,4}],8]&
```
[Try it online!](https://tio.run/##jVSxasMwEN3zFQaBJ0HvTIcuBtOhU6EhdBMaRFCoaVKDrWZR/O2u3TT1ST65BWNJT@fnp3d3Ohn3Zk/G1XszHLJy2Nb7dyXka@PMUb18Otuqx6Y5WiXKUhSXyzjs7Nm2na1EoXNpSy@UQq3ls@lcJeRT3XbubpxM63Hs82lhZaGlL@R9r@WDzodtW384dVBC6zyrNt57kBnenmney02WeSTotHFF4Rry/Q5ifzeCWCQoRgw3dIL9TAGUghIDSxyjGKGUFyIRM8@PCKDf/y0iPAdxDZb@ME5E0mAWETiXCCZoMnVrDAy6SAeunCNJwUjj6weXqYM4Hfzp1jIKUbHxJYgpJ4g0KgKWZjJO/Ot3fLmmGGhhMhSMmcjGRu3MSOO7DvnCjEXw/uAySUzjJm8aDEX0wxc "Wolfram Language (Mathematica) – Try It Online")
A port of [@Neil's answer](https://codegolf.stackexchange.com/a/240143/9288).
[Answer]
# Python3, 182 bytes:
```
r=range
e=lambda s:[s[0],s[-1],[*(j:=[*zip(*s)])[0]],[*j[-1]]]
lambda b:[i for i in r(len(b))if all(any(j in(h:=e(b[y]))or j[::-1]in h for y in r(len(b))if y!=i)for j in e(b[i]))][0]
```
[Try it online!](https://tio.run/##XVLNboQgED6Xp6DLoYOxpE0vjYmv0BdgTaNZ7GJcNGAP9uUtM@Duthwc5vvmG@bHeV3Ok3t7n/3W18dtbC/dqeVdpS3vJ88tt457GI2DTkrb83YcoXUrDJGAc1Ub6PTaSBljB11Vz69NFJxJu/7Xro@1lcigmKPSRmWjXxrma9@6L8NMnSsIlQ6RKIOOKUtdwFDVuvixMxRBNjJSiA7INs12Mj1fps9uav0JgqzYgzfLt3d8tGGBSzsDXsrejovx8DE5U/KgwjzaBZ6O7knGw1jg9eFwUEIIJZjAo5hSQqEXP@gJZBFEg2hEiFSJJCPQIKcwFGGGqFK30JSAMDLkoUIxevLm4j2VcwWTSQWIPcGOJkWunEqmEHpSibuyMMHeT64jKXYyZ72Pyd1dwSualCJ5NLqkyNMRuS0KzcmprDyzfdjUbNwBm711C/SgC1zevto/S6O1xf9n@wU)
] |
[Question]
[
Consider the following 9 "row patterns", using 0s to represent empty cells and 1s to represent a full cell. Each pattern is associated with an integer \$n\$, such that \$0 \le n \le 8\$ (multiple `[1,1,1,1,1,1]`s exist as there's some difference that we don't care about):
| \$n\$ | Pattern |
| --- | --- |
| 0 | `[0,0,0,0,0,0]` |
| 1 | `[1,1,1,1,1,1]` |
| 2 | `[1,1,1,1,1,1]`[1] |
| 3 | `[1,1,1,1,1,1]`[1] |
| 4 | `[1,1,0,1,1,1]` |
| 5 | `[0,1,1,0,1,0]` |
| 6 | `[1,0,0,1,0,1]` |
| 7 | `[0,1,0,0,0,0]` |
| 8 | `[0,0,0,0,1,0]` |
Given 6 integers, each of which is between \$0\$ and \$8\$ inclusive, we can use these rows to build a 6x6 square matrix. For example, consider an input of `[1,4,6,6,0,0]`. We'll start with `1` being the bottom row and the `0`s being the top 2, giving:
```
[0,0,0,0,0,0]
[0,0,0,0,0,0]
[1,0,0,1,0,1]
[1,0,0,1,0,1]
[1,1,0,1,1,1]
[1,1,1,1,1,1]
```
For each column in this matrix, we can see that every non-zero element has a "support" down to the base, i.e. no `1` has a `0` below it. However, this isn't the case for `[2,3,4,5,0,0]`:
```
[0,0,0,0,0,0]
[0,0,0,0,0,0]
[0,1,1,0,1,0]
[1,1,0,1,1,1]
[1,1,1,1,1,1]
[1,1,1,1,1,1]
```
As the third column from the left has a `0` below the top `1`, meaning that it is "unsupported".
Given 6 integers between `0` and `8` inclusive, in any reasonable format, you should output a truthy value if, in the matrix represented by these numbers, all non-zero values are supported; and a falsey value if not.
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest code in bytes wins.
Test cases:
```
[1,4,6,6,0,0] => valid
[2,1,2,4,7,7] => valid
[5,8,8,0,0,0] => valid
[2,0,2,0,0,0] => invalid
[2,3,4,5,0,0] => invalid
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), ~~20~~ 15 bytes
```
ị“???7ȷ%Ñ£¡‘&\Ƒ
```
[Try it online!](https://tio.run/##y0rNyan8///h7u5HDXPs7e3NT2xXPTzx0OJDCx81zFCLOTbx/@F2zcj//6MNdUx0zIDQQMcgVkch2kjHUMcIKGSuYw7imupYAKEBQtZAxwiZawxUagrjmgJ1wRQDAA "Jelly – Try It Online")
-5 bytes thanks to [Lynn](https://codegolf.stackexchange.com/users/3852/lynn)!
## How it works
```
ị“???7ȷ%Ñ£¡‘&\Ƒ - Main link. Takes a list of integers on the left
“???7ȷ%Ñ£¡‘ - Integer list; [63, 63, 63, 55, 26, 37, 16, 2, 0]
ị - For each i in the input, get the ith element of the list
Ƒ - Is the list of numbers unchanged when doing:
\ - Scan by:
& - Bitwise AND
```
We can avoid having to convert to binary by using bitwise AND instead of logical AND. By scanning a column (treating the numbers as binary) with a zero bit "hole" with AND, it'll overwrite it as a `1`, thus changing the number represented. If there are no holes, none of the numbers will change.
[Answer]
# JavaScript (ES6), ~~45~~ 43 bytes
Returns `false` for valid or `true` for invalid.
```
a=>a.some(n=>a!=n&n<'900067999'[a]&(a=n)>0)
```
[Try it online!](https://tio.run/##hc3NDoIwEATgu0@BF2iTFZYqYBPLixAOG34Mpm6NNbx@7VWNmrnM4cvMhVbyw325PXbsxinMJpBpKffuOgmObWs45VOmEbFutNZZR30qyLBsUYbBsXd2yq07i1l0JRygjkHAXsqkKJKV7DJu3piCElSkDTS/WAXHGPy/hqBe2MJf4D6eVp8wPAE "JavaScript (Node.js) – Try It Online")
### How?
When trying to actually process the patterns, my best attempt was [**49 bytes**](https://tio.run/##hc2xDoIwFIXhxNHJ2YlF0yZXKEXApTTxNZCEBlqDwbahyuir165q1Pzrl3MuYhaumwZ722nTS6@YF6wSsTNXiTSrHnaLLDvelZITak@Ec16uN6tFi2vdYLCsyLDvjHZmlPFozkihOoU9FCECpME4SpJoFuPQL98YhRRooCWUv1gOhxD5v0aAvrBBf4FZOM0/oX8C). It turns out that looking for invalid consecutive indices is shorter (at least in JS).
For each index \$0\le p\le 8\$, [we generate](https://tio.run/##nY9BDoIwEEX3PcV3Y0qsBHcmiDfgBE0XDYJikLYU2RjOjgUEhaXJNNP@eZ2Zf5eNtEmV63pfqkvadUVaI0YETgAeMCxCsF49MCziXzVYqfN7vHynBbO0Yteb/S47dCAiJCRTFe1taWcrCF06RTi6vNt5eLlvfU32lh0MTLQZafOhzUQDeUZjroVv1SOltGHIPURnbBpsEXMjeC68iQWkr5/2Ro0XDkJLxpOo0qoi9Qt1pZpBunLbdW8) the list of indices \$n\$ that cannot appear right after \$p\$:
```
0 → [ 1, 2, 3, 4, 5, 6, 7, 8 ]
1 → []
2 → []
3 → []
4 → [ 1, 2, 3, 5 ]
5 → [ 1, 2, 3, 4, 6 ]
6 → [ 1, 2, 3, 4, 5, 7, 8 ]
7 → [ 1, 2, 3, 4, 5, 6, 8 ]
8 → [ 1, 2, 3, 4, 5, 6, 7 ]
```
It follows that \$n\$ is invalid iff all the following conditions are met:
* \$p\$ is defined
* \$n\neq p\$
* \$n\neq 0\$
* \$n<A\_p\$, with \$A=[9,0,0,0,6,7,9,9,9]\$
---
# JavaScript (ES6), 58 bytes
This is a straightforward implementation of the results described above as a regex.
Expects a string of digits. Returns `false` for valid or `true` for invalid.
```
s=>/0[^0]|4[1235]|5[1-46]|6[1-578]|7[1-68]|8[1-7]/.test(s)
```
[Try it online!](https://tio.run/##hcy7CsMgAIXhvU8RMumQeIm3JX0RsRASUyyipUom3926FUJpp/8MH@exHEtaX@6ZhxA3W/e5pvmKsL5hU5gmdOKmcE0GJkwRrVwqU2QbolW1SoPGbFMGCdY1hhS9HX28gx30hAmBcQ9hh1B3LN5tl5OghDIpfwmuFP7zgelHuPDdTIyfTX0D "JavaScript (Node.js) – Try It Online")
[Answer]
# [Python 3](https://docs.python.org/3/), ~~73~~ 64 bytes
*Thanks to ovs for pointing what I should have seen.*
```
lambda x:all(2**i&ord("ǿ
.^¾ľ"[j])for i,j in zip(x,x[1:]))
```
[Try it online!](https://tio.run/##K6gsycjPM/6fbRvzPycxNyklUaHCKjEnR8NISytTLb8oRUPp@H4@Pj45vbhD@47sU4rOitVMyy9SyNTJUsjMU6jKLNCo0KmINrSK1dT8X1CUmVeika0RbahjomMGhAY6BkBxBWUFWzuFssSczBQuuBIjHUMdI6Aycx1zXEpMdSyA0AC/KQY6RmhKMvMwFBkDLTLFpug/AA "Python 3 – Try It Online")
First time goling in Python a while. We store a binary matrix as a string.
This represents
\$
M= \left[\begin{matrix}
1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 \\
0 & 1 & 1 & 1 & 0 & 0 & 0 & 0 & 0 \\
0 & 1 & 1 & 1 & 0 & 0 & 0 & 0 & 0 \\
0 & 1 & 1 & 1 & 0 & 0 & 0 & 0 & 0 \\
0 & 1 & 1 & 1 & 1 & 0 & 0 & 0 & 0 \\
0 & 1 & 1 & 1 & 0 & 1 & 0 & 0 & 0 \\
0 & 1 & 1 & 1 & 1 & 0 & 1 & 0 & 0 \\
0 & 1 & 1 & 1 & 1 & 1 & 0 & 1 & 0 \\
0 & 1 & 1 & 1 & 1 & 1 & 0 & 0 & 1 \\
\end{matrix}\right]
\$
Where \$M\_{i,j}\$ is whether \$i\$ can be placed on top of \$j\$. Basically its the adjacency matrix of the underlying lattice. Then with this matrix we check all the pairs of indices and see if anything is adjacent to something it can't be.
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 44 bytes
```
n=>/^[123]*(4*6*|(4*|5*)(7*|8*))0*$/.test(n)
```
[Try it online!](https://tio.run/##hcxNC8IgHIDxe59ih2D6h@bLnHpZXyQKZHPhEI2Unfzu1i0YUZfn9ONZzWbS9HSPfApxtnUZaxjP5HZhvL8CEiChvFsGwEhB0YAxhSPpsk0ZBVynGFL0tvPxjhbUMiElpS3GDSHNZrybDzvBGRdK/RKD1vTPg/KPcOG76cWwN/UF "JavaScript (Node.js) – Try It Online")
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 20 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
3LÛ0ÜÔ•€Â¦ŠôY∞•59вså
```
Input as a string of digits.
Port of [*@tsh*'s JavaScript regex answer](https://codegolf.stackexchange.com/a/235454/52210), so make sure to upvote him as well!
[Try it online](https://tio.run/##ATUAyv9vc2FiaWX//zNMw5sww5zDlOKAouKCrMOCwqbFoMO0WeKInuKAojU50LJzw6X//zE0NjYwMA) or [verify all test cases](https://tio.run/##yy9OTMpM/V9Waa@k8KhtkoKSfeV/Y5/Dsw0Ozzk85VHDokdNaw43HVp2dMHhLZGPOuYBRUwtL2wqPrz0v87/aCVDEzMzAwMlHSUjQyMTc3Mgw9TCwgAiYmAEZRibmAIZsQA).
**Explanation:**
```
3L # Push list [1,2,3]
Û # Remove all leading 1s, 2s, and/or 3s from the (implicit) input
0Ü # Also remove all trailing 0s
Ô # Connected uniquify the remaining digits
•€Â¦ŠôY∞• # Push compressed integer 35401368921902082
59в # Convert it to base-59 as list: [4,5,6,7,8,46,47,48,57,58]
så # Check if the earlier integer is in this list
# (after which the result is output implicitly)
```
[See this 05AB1E tip of mine (sections *How to compress large integers?* and *How to compress integer lists?*)](https://codegolf.stackexchange.com/a/166851/52210) to understand why `•€Â¦ŠôY∞•` is `35401368921902082` and `•€Â¦ŠôY∞•59в` is `[4,5,6,7,8,46,47,48,57,58]`.
[Answer]
# [MATL](https://github.com/lmendo/MATL), 22 bytes
```
63tt55' :_o'd2Ovi)Bd1<
```
Outputs a matrix containing only ones (which is [truthy](https://codegolf.stackexchange.com/a/95057/36398)) or containing at least a zero (which is [falsy](https://codegolf.stackexchange.com/a/95057/36398)). The footer contains a truthy/falsy test.
[Try it online!](https://tio.run/##y00syfn/38y4pMTUVF3BKj5fPcXIvyxT0ynF0Oa/vQIcqCpkpnGplxSVlmRUqnPVIkuk5hSncqmnJeYUA2ViUWTyUv5HG@qY6JgBoYGOQSwA) Or [verify all test cases](https://tio.run/##y00syfmf8N/MuKTE1FRdwSo@Xz3FyL8sU9MpxdDmv70CHKgqZKZxqZcUlZZkVKpz1SJLpOYUp3KppyXmFANlYlFk8lK4XEL@RxvqmOiYAaGBjkEsV7SRjqGOEVDEXMccyDPVsQBCA7icgY4REs8YqM4UzAMA).
### Explanation
The code generates the binary matrix, without any leading column of zeros (which doesn't affect the result), and computes consecutive differences vertically. The differences can be 0, 1 or −1. The input is valid if no difference equals 1.
```
63 % Push this number
tt % Duplicate twice
55 % Push this number
' :_o' % Push this string
d % Consecutive differences (of ASCII codes). Gives [26 37 16]
2 % Push this number
O % Push 0
v % Concatenate everything into a column vector. (*)
i % Input: numeric vector
) % Index into (*). Indexing is 1-based and modular, so index 0
% corresponds to the last entry
B % Convert to binary. Gives a matrix, each original number corresponding
% to a row. The number of columns is determined by the longest binary
% expansion
d % Consecutive differences, vertically
1 % Push 1
< % Less than? Element-wise. For a valid input this gives a matrix with
% all entries equal to true, or equivalently to 1
% Implicit display
```
[Answer]
# [C (gcc)](https://gcc.gnu.org/), ~~86~~ ~~83~~ 75 bytes
```
i;r;*m=L"???7%";f(int*l){for(r=i=0;i++<5;)r|=m[*l++]&m[*l]^m[*l];i=!r;}
```
[Try it online!](https://tio.run/##dVBJT4NAFDYee/LsaZwEwzKNFEqrTkcOxpv/gGLSwFDBbpkhkVj718UH06GkRpZ58L7lLclwmSR1nVNB7TV7xRdhGE6vjatLTDMz35T2ytpnW2EKljOX5o4zC6glvtk6sleOE982MX5rT5qzG0EPNajQepFvTAvtBwiuJlFyWbpRjBjaj8iYTOB2iXugHThSoEdGxAPClEx7oKfAgNzD7Z4pfa10ifcHHGvQB9NAgbopu2VIxWgbJKoVFTwVfBXGJx3i1Y4nJU/1PEg9INfuyftC2HDy5IMLRcPz6sWbVw/P8AaYoP6/j486WDVq1g5lUl6BzKXHzxmS@RffZqYubt0dE3aXochxWrbe/GlQsFLDtnhMO3gngJCZOMLWKdm1UagWCig/adwLq@P0xYY0UhipCJu5HjGcZVTEPcPGS4JXZpZnWQ7Zbp//NRej4RMyUmTI@QbMJelWyxmTutBhcKh/kmy1WMp6@PkL "C (gcc) – Try It Online")
*Saved 8 bytes thanks to [ceilingcat](https://codegolf.stackexchange.com/users/52904/ceilingcat)!!!*
Inputs a list of \$6\$ integers in \$\left[ 0,8 \right]\$.
Returns \$1\$ if valid or \$0\$ for invalid.
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 30 bytes
```
≔ES℅§O@@@ABMGKIιθ⬤θ∨¬κ⁼ι|ι§θ⊖κ
```
[Try it online!](https://tio.run/##NYzBCsIwEETvfkXoaQsRKkgvvTRVkSK1gl8Q2lAXY9omW/Xv44o4t@HNm@6mfTdqG6MKAQcHjZ6gdtNCV/LoBkilaH2PTltQVLvevCFpy7JUVXM8JVLsdCDAlCPFnBarC1sEylqYvyacR4I7s8O8aBsApaiQXhgMMy7/Tx7vTefNwzgyPRu/FDFutnmeZXH9tB8 "Charcoal – Try It Online") Link is to verbose version of code. Takes input as a string of digits and outputs a Charcoal boolean, i.e. `-` for supported, nothing for unsupported. Explanation:
```
≔ES℅§O@@@ABMGKIιθ
```
Translate each digit to a custom bitmask, given by the bottom 4 bits of the ASCII codes of each character (the upper bits are the same for each character so they don't affect the final result).
```
⬤θ∨¬κ⁼ι|ι§θ⊖κ
```
Check that the bitmasks represent a supported matrix.
The custom bitmasks are as follows:
```
0 1111
1 0000
2 0000
3 0000
4 0001
5 0010
6 1101
7 0111
8 1011
```
Calculation of the adjacency matrix will result in the same matrix as the original bitmasks. Note that these masks are inverted so the code uses a bitwise OR check to compensate.
[Answer]
# [C (gcc)](https://gcc.gnu.org/), 93 bytes
Here it is, not extensively tested but I think it should work!
Input is a string of 6 digits, no spaces or separators. Exit code 1 means invalid, 0 means valid
Uses (lower|upper)>lower to test for unsupported bits.
Thanks to ceilingcat for -8 bytes!
```
b=63;char*a,d[9];main(c){for(scanf("%s",a=d);*a;b=c)(b|(c="%7???"[56-*a++]))>b?exit(1):0;}
```
[Try it online!](https://tio.run/##S9ZNT07@/z/J1szYOjkjsUgrUScl2jLWOjcxM08jWbM6Lb9Iozg5MS9NQ0m1WEkn0TZF01or0TrJNllTI6lGI9lWiUlAVcrc3t5eKdrUTFcrUVs7VlPTLsk@tSKzRMNQ08rAuvb/fyMDIwMDAwA "C (gcc) – Try It Online")
] |
[Question]
[
## Background
Consider the shape \$T(n)\$ consisting of a triangular array of \$\frac{n(n+1)}{2}\$ unit regular hexagons:
[](https://i.stack.imgur.com/oUzDh.jpg)
John Conway proved that \$n = 12k + 0,2,9,11\$ if and only if \$T(n)\$ can be tiled (i.e. exactly covered without overlapping) with \$T(2)\$. At the same time, he also proved that no coloring argument could prove the fact. (Yes, this is yet another Conway challenge.)
## Challenge
Let's define \$a\_n\$ as the number of distinct tilings of \$T(n)\$ by \$T(2)\$. Compute as many terms of \$a\_n\$ as possible in 10 minutes.
Reflection and/or rotation of a tiling is considered distinct from itself, unless the two are identical.
The program that prints the largest number of terms wins. In case of tie, the one that prints the last term in shorter time wins.
I have a Windows 10 machine with `Intel(R) Core(TM) i7-6700 CPU @ 3.40GHz` and 32GB RAM, with Ubuntu 18.04 installed in WSL. Please include the instructions to run your code and where it works (Windows or Linux).
## Output format (with test cases)
The submission should print the results infinitely for each \$n\$ starting from 0. Each line should include the values of \$n\$ and \$a\_n\$. Here is first 21 lines of the expected output:
```
0 1
1 0
2 1
3 0
4 0
5 0
6 0
7 0
8 0
9 2
10 0
11 8
12 12
13 0
14 72
15 0
16 0
17 0
18 0
19 0
20 0
21 185328
22 0
23 4736520
24 21617456
25 0
26 912370744
27 0
28 0
29 0
30 0
31 0
32 0
```
Test cases for \$n \le 20\$ are generated using [a naive Python 3 program](https://tio.run/##jVLbioMwEH33KwbKQrJGMN2nFfwS8SHVaFPsKNGCdum3u0mMl@7TguBk5pw5MyfppuHa4tc8n2DQ6tKihEE1Cus@KGUFV1K0rS57mgRgzwKnqxyJYjebgQJSyEZQCAsMqlaDO2dERdygGFhwyF0Q8rfQF6MlY@EmzHPTV8vhodGqkbvoSCPul1LAyKbEdBdYwsSgMF/GkxxC8094Tmmw8ZqG@Ek/n9QN9dyHpG6z@rCZqgDbwZeTtQsP4OQruw1rMTYsdjPr3xWuRddo29IRN9EjsRC97A01PhDoEboAwnQbEiL4caa/WeeFXqvwIvvvPn@v5bUb6IjOpoqgdcjTU093liorpQXW0mBc5rZnlG3oDfzg59WMLGZn9s04z4@GdFrhQJDtlwIr740DsuklxDTIKjLS/bEtkmfzeOb5Fw). \$a\_{21}\$ through \$a\_{32}\$ (meaningful highest being \$a\_{26}\$) were found using [Arnauld's JS submission](https://codegolf.stackexchange.com/a/204673/78410).
Notably, neither the full sequence `1, 0, 1, 0, 0, 0, ...` nor the stripped-down one `1, 1, 2, 8, 12, 72, ...` is on OEIS yet. ~~As I don't have an OEIS account, I will let anyone interested to post this sequence (both versions) to OEIS (please leave a comment before you do).~~ The sequence of nonzero indices is [A072065](http://oeis.org/A072065). **Edit:** The sequence is on [A334875](https://oeis.org/A334875), thanks to Lyxal.
## Leaderboard
1. [Rust](https://codegolf.stackexchange.com/a/204860/78410) with `rustc -O` by Anders Kaseorg, **Score 44** at **45s**
2. [C++](https://codegolf.stackexchange.com/a/204846/78410) with `g++ -O3` by l4m2, **Score 35** at **7min**
3. [Javascript](https://codegolf.stackexchange.com/a/204673/78410) with `node` by Arnauld, **Score 32** at **1.8s**
## Pending
* (none)
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), N = ~~22 25~~ 32 in ~2 seconds
A recursive search using bit masks and a cache to keep track of patterns whose result is already known.
It doesn't make much sense to try go further in Node. Using a binary matrix is significantly slower and BigInts are even slower. It should rather be ported to a language natively supporting 64-bit integers.
```
'use strict';
let ts = new Date;
for(let n = 0; n <= 32; n++) {
console.log(
n.toString().padStart(2) + ' ' +
solve(n).toString().padStart(10) + ' ' +
'(' + ((new Date - ts) / 1000).toFixed(2) + ')'
);
}
function solve(n) {
// trivial cases
if(![0, 2, 9, 11].includes(n % 12)) {
return 0;
}
if(n == 0) {
return 1;
}
// We work on a triangle stored as an array of bit masks:
// 8 7 6 5 4 3 2 1 0 |
// -------------------+--- With this format, the tribones
// . . . . . . . . A | 0 are turned into the following
// . . . . . . . A A | 1 trominos:
// . . . . . . B B C | 2
// . . . . . D B C C | 3 X O and . X
// . . . . D D E E F | 4 O . O O
// . . . G H H E F F | 5
// . . G G H I I J J | 6 where 'X' is the arbitrary anchor
// . K L L M I N J O | 7 point used in this code
// K K L M M N N O O | 8
let a = Array(n).fill(0),
cache = a.map(_ => new Object);
// recursive search, starting at (x, y) = (0, 0)
return (function search(x, y) {
// if we've reached the last row, make sure it's complete
if(y == n - 1) {
if(a[y] == (1 << n) - 1) {
return 1;
}
return 0;
}
// if we are beyond the last column, go on with the next row
if(x < 0) {
y++;
// either return the result from the cache right away
if(cache[y][a[y]] !== undefined) {
return cache[y][a[y]];
}
// or do a full search
return cache[y][a[y]] = search(y, y);
}
// if (x, y) is already set, advance to the next column
if(a[y] >> x & 1) {
return search(x - 1, y);
}
let res = 0;
// try to insert X O
// O .
if(x && !(a[y] >> x - 1 & 1)) {
a[y] ^= 3 << x - 1;
a[y + 1] ^= 1 << x;
res += search(x - 2, y);
a[y] ^= 3 << x - 1;
a[y + 1] ^= 1 << x;
}
// try to insert . X
// O O
if(!(a[y + 1] >> x + 1 & 1)) {
a[y] ^= 1 << x;
a[y + 1] ^= 3 << x;
res += search(x - 1, y);
a[y] ^= 1 << x;
a[y + 1] ^= 3 << x;
}
return res;
})(0, 0);
}
```
[Try it online!](https://tio.run/##nVXbbttGEH3nVxw/xCIhWSblpEkry4BbN2mbix7yEAOGW6zJlcSY2hWWS13Q@Nvds0vJlGT1gnIgiJyZMztnLuRXMRdlavKZPVE6k4@PraqUKK3JU9vqB0EhLWyJAZRc4EpYSd1Im9DpFdVxn3/nA5z1eNNuR/gzAFKtSl3IbqHHIR8B1bX6M2OqcRh1ZyL7bIWxYS9CGy1K2zsRMpehig76JvGucyvkHcJwkxZOmGaEUyRxHLsQb/OlzNZHRC1ion7wwNwrldpcq6fTfMKnp@CJ81wUSEUpS6ryUXh0E3fQ6@D7DpLktpurtKgyWYYKL5D0ohoKGGkro1gJPj3USFaGpdlzSGqH@rgvEgtt7sFMhDtbqHHh6q6NzCBKCOqNESvoEe5yi6ko78sfaizwBq/xHV7hJc7QQ4IY37C2nTy/2vwBX3I7gZ3kJdi/qbAdPkh39J1WnrGP3N2TS0aOqReGvmTB7HJltceOdFHoBRt1GHzpwQn11uhprnST/7bbj5Sf6Nij/rn9ylud/cyV8hpD9ydUBu92vY@4ovxMeUvES@czpLK5hhjuIt7hF4rzd4hXezm88/ZfKb9RvrHmwGIiWYvWdQsspSuDMGyQEWbFtNKJNk2A9/hA@Uj4J8KHDPCa@plmBcE1c6WsO5Jy9Taw9x72kfKJMvSwNzS6jRPcuEs3Fm5NRnlRhHHUCWpqqUiZzACiOxWz8A8MLvzODu@@ytRy@Ov4RqaVKfM5Z00Kk046nDnuF5sIYREuO1hFDBJy8uMoeJrdsNkbD1s71vPNsPkIC9liVCNdGpkvTCFKC6MXHU7vPQ@sWLfcthzd6Yx0pEdzXVZuXRRXONmE9Gpxs7p1ljDB@Tm4qjsOu3vlrodgRx/Xer9xTZJ@ku/kSqutJFNdVFPVwVi7hVzUmyJZv6UnsMlzifNmq4FVu90P1vcMLwmTZnO6wxtZVoXFiOPvn@sWmXw8YSsXYtVQ9RbSvXGcb3FE1pXK5Cjnwh2gvOu@z5@5aINMc1xGVVGsWxb8QwR2fN3XlevrgcKtG85ZFQV7nK0I4CtEZHMOPV8NuilYXcxgu4kXF1jieLt76zQ20@Ra@@xkN/Esof/KBNgkY7loPC5XpTTWvRA2ht2Le9@07fgYR1uZ8DCfTZOOt/3Oz5ibNO/Qbyz8hCTe6udw2X@iUKI92KbQayj8n5BNwXc51q@5gxyHG46eXh3VU2z/LcVdEtu5nP0LveQQvf8Wbk1t3XWG9t/CqH7N8MP8@PgX "JavaScript (Node.js) – Try It Online")
### Output
```
0 1 (0.00)
1 0 (0.00)
2 1 (0.00)
3 0 (0.00)
4 0 (0.00)
5 0 (0.00)
6 0 (0.00)
7 0 (0.00)
8 0 (0.00)
9 2 (0.00)
10 0 (0.00)
11 8 (0.00)
12 12 (0.01)
13 0 (0.01)
14 72 (0.01)
15 0 (0.01)
16 0 (0.01)
17 0 (0.01)
18 0 (0.01)
19 0 (0.01)
20 0 (0.01)
21 185328 (0.05)
22 0 (0.05)
23 4736520 (0.24)
24 21617456 (0.60)
25 0 (0.60)
26 912370744 (2.18)
27 0 (2.18)
28 0 (2.18)
29 0 (2.18)
30 0 (2.18)
31 0 (2.18)
32 0 (2.18)
```
[Answer]
# [Rust](https://www.rust-lang.org/), \$n \le 44\$ in 42 seconds
Build with `rustc -O`. Uses about 800 MiB of memory for \$n = 38\$, and \$39 \le n \le 44\$ are trivial. \$n = 45\$ will almost definitely run out of both time and memory on any reasonable system.
It works by dynamic programming where the states are the presence or absence of hexagons at \$(k - 1, 1), \dotsc, (k - 1, i), (k, i + 1), \dotsc, (k, k)\$; we advance \$i\$ to \$i + 1\$ by considering the addition of tribone \$(k, i + 1), (k - 1, i), (k - 1, i + 1)\$ or \$(k, i + 1), (k - 1, i + 1), (k, i + 2)\$.
```
use std::iter::Peekable;
use std::mem;
struct Merge<Xs: Iterator, Ys: Iterator>(Peekable<Xs>, Peekable<Ys>);
impl<Xs: Iterator<Item = (u64, u128)>, Ys: Iterator<Item = (u64, u128)>> Iterator
for Merge<Xs, Ys>
{
type Item = (u64, u128);
fn next(&mut self) -> Option<(u64, u128)> {
if let Some(x) = self.0.peek() {
if let Some(y) = self.1.peek() {
if x.0 < y.0 {
self.0.next()
} else if x.0 > y.0 {
self.1.next()
} else {
let x = self.0.next().unwrap();
let y = self.1.next().unwrap();
Some((x.0, x.1 + y.1))
}
} else {
self.0.next()
}
} else {
self.1.next()
}
}
}
fn main() {
for n in 0..63 {
if 0xa05 & 1 << n % 12 == 0 {
println!("{} 0", n);
} else {
let mut count: Vec<(u64, u128)> = vec![(!(!0 << n) << 1, 1)];
let mut count1 = vec![];
for k in (1..n + 1).rev() {
for i in 0..k - 1 {
count1.extend(Merge(
Merge(
count
.iter()
.filter(|&&(b, _)| !b & 3 << i == 0)
.map(|&(b, c)| (b & !(3 << i), c))
.peekable(),
count
.iter()
.filter(|&&(b, _)| !b & 6 << i == 0)
.map(|&(b, c)| (b & !(6 << i), c))
.peekable(),
)
.peekable(),
count
.iter()
.filter(|&&(b, _)| b & 2 << i == 0)
.map(|&(b, c)| (b | 2 << i, c))
.peekable(),
));
mem::swap(&mut count, &mut count1);
count1.clear();
if i == 1 {
count.retain(|&(b, _)| b & 6 != 2);
}
}
count.retain(|&(b, _)| b & 1 << k == 0);
}
assert_eq!(count.len(), 1);
assert_eq!(count[0].0, 0);
println!("{} {}", n, count[0].1);
}
}
}
```
[Try it online!](https://tio.run/##zVVdb5swFH3nV1wqLbI1gnC6RRNJeN/D1EmTplVVVRHqVCjgMDBtoiZ/fek1UBISE5C2h/kB8XHOsc/x9SXNM7nf5xmHTD66bih56rrfOV/684hPjPpDzOOJYWQyzQMJ33j6xKe/Mhe@It6Xq9SC26Mnj7wrIMizoH66zTyKMmGcRA36FG9imAHJx58syNnoC/WakjqEV381AMdildYrU2TPeC3ey03C4Zw@KUkCBF9LMohzCRmPFhSGHtwkMlyJ6fFkUIqpES4g4hJ@rGJO1hRVFc927ARtEnoEPAVvajDTgyvC2nZgChu8nn9Wo5qvWDg9Q@yAR7htlY7XpcM6dPRU5Wl9sF5K2Ll4Sf2EVNnqOJtDAr04RW4EjVjohsFHdMOoZq1Gr5W3B3cQ0JL1SZWknbEzDKyj2A9FvaOqGAWEAhzbHl83i8dZ@85nGACD6RRBH4CNYDaD011K0lDISJjk6nUHzpUF4igj7SpVwKqOg1UupAs/edAs4Rk888C8IyYxnWJuqq7MAkbvJ@1K7J2IoAZKmVwqk4TZtsDNYdRO@bO2rBU2rAJZwhDN6wurnNHGoLl4JMV5JlqgGh2fa72LCDVs1fg0Z@AMtwgjhdwOBmRuwQPdgjnHrbxWQYbFLvYQibHet4VAgAJECZiklKDqXQ@JpGqphFr/gf3x39sf/3P77TK96N3J9UlNk5jyO@ob2HlY24rcnVSnTdrSdPFn77rZC848qJuABYd71sKrzm4QcT9ta@jY/wrfbee/1sFOIlVH3TaCG4M5g1GL9s7ofnNBu@jHy3JTJka7jJ9lPJUP/LdJSrWIY@NXXXRyEXfn3Kv/2Kl4o8@/7lSjt6AmHIvW/5v9/k@wiPynbD@8eQM "Rust – Try It Online")
(TIO times out after \$n = 37\$.)
### Output
```
0 1
1 0
2 1
3 0
4 0
5 0
6 0
7 0
8 0
9 2
10 0
11 8
12 12
13 0
14 72
15 0
16 0
17 0
18 0
19 0
20 0
21 185328
22 0
23 4736520
24 21617456
25 0
26 912370744
27 0
28 0
29 0
30 0
31 0
32 0
33 3688972842502560
34 0
35 717591590174000896
36 9771553571471569856
37 0
38 3177501183165726091520
39 0
40 0
41 0
42 0
43 0
44 0
```
[Answer]
# \$T(33) = 3688972842502560 \$
```
> 1 0
> 2 1
> 3 0
> 4 0
> 5 0
> 6 0
> 7 0
> 8 0
> 9 2
> 10 0
> 11 8
> 12 12
> 13 0
> 14 72
> 15 0
> 16 0
> 17 0
> 18 0
> 19 0
> 20 0
> 21 185328
> 22 0
> 23 4736520
> 24 21617456
> 25 0
> 26 912370744
> 27 0
> 28 0
> 29 0
> 30 0
> 31 0
> 32 0
> 33 3688972842502560
Process returned 0 (0x0) execution time : 71.730 s
Press any key to continue.
```
Code
```
#include <map>
#include <stdio.h>
#include <algorithm>
const int N = 33;
typedef unsigned long long ulong;
#define long ulong
std::map<ulong, long> A, B;
int i; long base;
template<bool last = false>
void bitfsh(ulong j, ulong d) {
if (!j) {
if(!last || d==0) B[d] += base;
return;
}
int p = sizeof(ulong)*8-1-__builtin_clzll(j);
if (d & 2ULL<<p) {
bitfsh<last> (j ^ 1ULL<<p, d ^ 3ULL<<p);
}
if (p && (j & 1ULL<<p-1)) {
bitfsh<last> (j ^ 3ULL<<p-1, d ^ 1ULL<<p);
}
}
template<bool last = false>
long run() {
B.clear();
for (auto p=A.begin(); p!=A.end(); ++p) {
ulong j = (*p).first;
if (j%65536==0) fprintf(stderr, "%d %lld\r", i, j);
base = (*p).second;
if(base) bitfsh<last> (j, (1ULL<<i)-1);
}
std::swap (A, B);
fprintf(stderr, "%60c\r", ' ');
return A[0];
}
const ulong fs = sizeof(long) << N-1;
int main() {
A[0] = 1;
for (i=1; i<N; ++i) {
//fprintf(stderr, "%d\n", i);
printf ("> %d %llu\n", i, run ());
}
printf ("> %d %llu\n", i, run<true> ());
exit(0);
}
```
# T(45) = 1.9935928828199593078904655e+31
Ran in 31953.963 s on my computer(including state backups), and use approximately 4.5GB disk.
Use @Anders Kaseorg 's solution but with disk as storage. For each \$k,i\$ amounts of items can be found [here](https://paste.ubuntu.com/p/K6Ft6kBdcP/). [TIO](https://tio.run/##3Vltb5vIFv7uXzHNlSMw@A2nbWSMex1to42U5t6uuqsrudkIGxwjY8AGN8k2/u2958wMMDPgdNN2vxQlNsycOXNen3MGz5OkfTuff/nyryCahzvPJ6PNzt/540Y54Ia38TbIlmtxMM28IO4sxaEsWPs4kj0kvucvyC5Kg9vI90gYR7fsYxZkvm8XFF68m4U@CSI62pjHUZoxGnJx9cfk8uKXm7OLD2/fEoe0@79fXnYtoIrctZ8m7twni5R8bhC4ip3mS3dLZrvF9NXpaGT1rm06/SkOPHIHKvh/9DW2CRK2yCIyCXtGkhbx3Mw1SRr85d9kJPQjnfPHCxQeDhM32I6ogCaTegyLQDrt0KyOLO2CCTVCIS0IeulHsJxJW5KdX1y@BekSmFrEiR9pKOjR3exIL2kWVCGNiQyymqRvwhKRYh7GqU@0YnBPP7l6W9/1asxRb4hCRtEi9VJuJSllhbd@hsS4NRe8z2V/WnC8YO1uG@GXqIzgWquiy2GXPeFnoCGoL2rdpTTx4pB7BfF@SHjg3ndbWNCzeRqEbprR59I48ZZoSBg4QBWMIpsYRiBqgBdbja7xpsF1ZxFsgU@bsrMlQioI2eSEqQ9G9CokBDP2v1QTZpAipfXWafvmZrYLwiyIbubhX2GoJToxXuvd03a/ntF7YLQZ9@7PpQvym7whr8mQbEbWCdxujFMylBjg9bckEGY3B4RBlLjbGsY1CEO1G41ekkcmn0zZ0qg1W7oGa4y7rQ4rEhscZTh0oaFwTu@CbL4kGmWlOmbuQmT3SKfTIa@qyrVKwaXtNrgdMZik72FDMoMkWtlV1q/rmFIn1zM8PczqlEo56Fc51qzYS080bA00U6NK8Ax0A4FNEPSbsO078OCb4Y4lsNMzS2xnaEcVASUYW0UZXMWgsfcVEPwhKJNmbhbM68rz2k1XU0yIz737xQIS0iR4I90qD@xRcn45VaE9MHRgkA7vS8EPQeLdMoAuQoOAHnG7q1mXI08KC4vEP4xylHQ8fmkWcEVHjgcqhhQoSy1Hl1@T4ypiKGhRh8A/DEM2ojjvmTg1qPI9iIJbVFDluxBlw238HopUPQMZYLwpJExe1xwaE4aT2FUa8DMvahT1JIJud5FsQYsFTR1/Czhz9NvbyS@kafXC0KNfC5s0T70u/H@MjkySmGTDEIkHWh3APc1b4FbLp2x0WrzUedPetQRzmb9OQjfzR3NQPEWbfhgTd5fFFPm0DzhyD1FTsKKt3j0M6/bXODDgVVnk3XPOY99opNl2N8@Il/Ho5LDCQBez6QosflI2tgfQiaTTq2u78TQw3YbxzA1vAt6Z1FAEnkmWoCekrBuE7H4BsMCe8Y4t9TJNH9JZraezSXqT0xej/IF8DjByDKMUQWw9qRnn/s3Mna9Y0hOXa0Zm0vFhikzLiHXtYqgIzxm2cjgmlAaIHxwhjkOuKjiApx08Dk1fnSholubBh9MQet1snXSbvZMw/F@72eu/gm@Iv8ArddVlBot0OGShwDikZtEL6wopkw97ViZ9aewyYgWTYTQ@/IYOwCBBw@0SR6q03S7VO3cJ6l5IydOj5C8aoSdY4bss8IT2mIstXKILOI7iMk1UH4EuqiSMsDNzM/Jh@PEjl6nFHjwyvvr9kkvGWdoVjg8pJDBjKCHQN2ifW1nRngIJV14Cp3X8yZd23j@Z3YttHEHKCVbhiJJOcefrymEuiZOb6iLDQGo5L3DkuXnB1rBYzTX/1sypsdxXrHfAgmqa8EYUv@osh8HXxs0NLQ/ddiFL60q06CyOQ8So7OEQI8ehJjk@LtKAjZSGEXwzD313K3HirVdpTDISk/UfwKsDVn/SrILnOViV2FJIW/aUUN7sRk2N8bLhsCgDjJy/wYIivkinJ9fTvGJneje/pRS6gRp72TGZ0N4p8u80tgjgBKjZ3FlfmeyLk5YyaYmTA2VywCeDKAwinwXC0k1dOBwXZYrdFGWKR8ULTXP/nOnHM1i9bxSNAoL1Cls02Kg/btB4ABRKKIqvaL6T4jWE@CZvEbq3eDrBF3hkNCIro69Dl8dbaZXy1@B26dMKWdDXE1qRV0PbrmF7jlYVeT8qDGqWWJUlnPGkU9Yvag7H6b1ZDXs85ng@vJh0eNaBRYpWsOwEm6z/m3RYjuvqGQePFJMOh0HWM0jHRf7KpiRR39tMOgKO2lAzgoW2cpxTTPTAccADXKSjFmlCcokfRad7jqfu0ggwBocJ0SrAjMcUpRb1QIBWyCuHMsRwablCgNdZvyP2WEQDrn8iMbob5NtQ7XJlmtC1t8egh/cxYzpI5PpTRwoUhwW4rJZVL5dVK5f1PLmsr8i1J34I5yZ5@7OBsnVCmWCMfn3fkvZA8Zl0OMqzaYwcbhfRDBW3SO/r4SgvcK@Y6inawTNo@0Iugtqwj/w8kJ6VFHuHqAAspCQzyTvMfOCkDiO@AkNl2M@WMM5xwHpTwNDQksFLgIZ@/avaNfChPdQ6iLTi5l0fJdJxfyVG0CtrMnZQBL3uvMxQIpXflJQroW96B6KkhiPYgKGIiWYR4MOst9UhrhbjalW5WgrXOlMf4jpgXAdVrgOFa52nZK4TJcbWcpe2FyNMSgYezdWxgZo0UuJCx053Te/chGhng5KKfye7LNWOjmjBxTq6dsH3eZykfvYJajoGRbyDmOuZ5ObiP1dn52U28IZxGaRZvH3Ap9LtqrKwPE/94qeElTN4aZPV@MQm7fZK/tXLT0a9MSCAWYGpvGU7alpeB/6bfWjXdv9u9i3vEcBmRV945iXOhOYxhjOyeniUZWaB795rwnBtmeSvWFAB@tYicSadmX@LZrNJ8gKe/IiCgGEkunp8kmQHkQlIq7WSPKvpLQsv3S5dU/MDjIU/wKxqf4BBw1GrBf@I1B7BP5QdP2jBxr0O6/FMzwU/o@f2FQ@NLBbaq79voNzWq5/RQnnnwENMjS@lJX3TG04qeKwoxGzOi9FuXeJSXaf8k3bBUL8G5PERHOlYJxWgAKMY0qtpsRuTAxK80rFegtkKp8BqU4wzJYxqfKq6tUf/DsLGvvHly/8B)
] |
[Question]
[
Here are the annual returns for a hypothetical S&P 500 stock index fund for each calendar year from 1928 to 2017, expressed as a multiplier. So in 1928 you might say "the index went up by 37.88%" which I've represented here by 1.3788.
```
1.3788, 0.8809, 0.7152, 0.5293, 0.8485, 1.4659, 0.9406, 1.4137, 1.2792, 0.6141, 1.2521, 0.9455, 0.8471, 0.8214, 1.1243, 1.1945, 1.138, 1.3072, 0.8813, 1, 0.9935, 1.1026, 1.2178, 1.1646, 1.1178, 0.9338, 1.4502, 1.264, 1.0262, 0.8569, 1.3806, 1.0848, 0.9703, 1.2313, 0.8819, 1.1889, 1.1297, 1.0906, 0.8691, 1.2009, 1.0766, 0.8864, 1.001, 1.1079, 1.1563, 0.8263, 0.7028, 1.3155, 1.1915, 0.885, 1.0106, 1.1231, 1.2577, 0.9027, 1.1476, 1.1727, 1.014, 1.2633, 1.1462, 1.0203, 1.124, 1.2725, 0.9344, 1.2631, 1.0446, 1.0706, 0.9846, 1.3411, 1.2026, 1.3101, 1.2667, 1.1953, 0.8986, 0.8696, 0.7663, 1.2638, 1.0899, 1.03, 1.1362, 1.0353, 0.6151, 1.2345, 1.1278, 1, 1.1341, 1.296, 1.1139, 0.9927, 1.0954, 1.1942
```
Source: <https://www.macrotrends.net/2526/sp-500-historical-annual-returns>
## Challenge
Given as inputs:
* the array of annual returns (but see Rule 2. below)
* an array \$X\$ of \$1\le K \le 90\$ positive numbers (the amounts to invest in each year of the investment period)
write a program or function that outputs what would have been the "best" \$K\$ consecutive year period to have invested the amounts in \$X\$, where:
* each amount is invested at the beginning of a year.
* anything left after each year is reinvested at the beginning of each subsequent year.
* "best" means the largest amount at the end of the \$K\$ year period.
## Rules
1. This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the fewest bytes in each language wins. Standard rules apply. Explanations encouraged.
2. If you don't like the way I've represented the array of annual returns, you can change them to any other array of 90 numbers that you prefer.
3. You can output the best \$K\$ year period in any consistent manner (e.g. 0-indexed or 1-indexed, the first and/or the last year to have invested, etc.) but you need to say what your output represents if it isn't obvious.
4. In case of a tie, output any or all correct answers.
## Example calculation
Suppose \$X = [ 10000, 20000, 30000 ]\$.
If you had invested these amounts in 1928, 1929, and 1930 (the 1-indices 1, 2, and 3) you would have ended up with 42743.10. Sad.
But if you had invested those amounts in 2014, 2015, and 2016 (the 1-indices 87, 88, and 89) you would have ended up with 66722.66. A bit better.
It turns out the *best* three year period to have invested these amounts would have been 1995, 1996, and 1997 (1-indices 68, 69, and 70), resulting in 91942.91. Nice.
## Test cases
1-indexed, first year of optimal period
```
[ 1, 2, 3 ] -> 68
[ 1 ] -> 6
* any array of length 90 * -> 1
[ 1, 1 ] -> 27
[ 1, 2 ] -> 8
[ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 ] -> 62
[ 1, 2, 3, 4, 5, 4, 3, 2, 1 ] -> 64
* 1 repeated 20 times * -> 53
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 9 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
PÐƤ⁹L¤ƤḋM
```
A dyadic link which yields a list of all the maximal starting 1-based indices.
**[Try it online!](https://tio.run/##NVI7TkQxDLzKO8DTyp/Yju8AEj3akgbtBSipaTjEHgJakLgHXOSReLJprMRjz3ji56fL5eU4Hr7ff65/r593X9ef6@/H2/1xHI980uh93@jUO@WMwSYzmqTWe@u2b3xqbpXPRl531phRIgvv3Hjf5oMJA2iGBlH3LtxmAUvTAvJA1IP2GZRCIIRHfvYaPVIBISlS4Sgse6s7130CFU2akRTQi2uUoad5Fqd2qKcxVokM0sIr6yIHkHtPqM0ak3IWDoAnVwERgBSORF@UxFAcqDfXUtjFiyFIMC4bRkuGTdPmWc9QyENSEVlEKSUpIdzCoTDwQLB1tFfkXTA6LZsF@ZDiSW03fPWn1nwNggmzw1ttvCaF98q0PtgdStLgWfabNRWHIbqA@BTqWV7AatYlUA3OOBuIdO2D1CcDe1uqXP@tWMJcs6dhp7LJeWwzjbNvgqAznP8B "Jelly – Try It Online")**
(or `ṡL}PÐƤ€ḋM`)
### How?
```
PÐƤ⁹L¤ƤḋM - Link: list of returns, list of nominal investments
Ƥ - for infixes of (the returns)...
- ...of length:
¤ - nilad followed by links as a nilad:
⁹ - chain's right argument (nominals)
L - length
- ...do:
ÐƤ - for post-fixes:
P - product
ḋ - dot-product (each) with (the nominals)
M - maximal indices
```
[Answer]
# [Japt](https://github.com/ETHproductions/japt), 25 bytes
```
ãVl)míV ®rÈ+YÌ *Yg}0
bUrw
```
[Try it online!](https://ethproductions.github.io/japt/?v=1.4.6&code=41ZsKW3tViCucsgrWcwgKllnfTAKYlVydw==&input=WzEuMzc4OCwgMC44ODA5LCAwLjcxNTIsIDAuNTI5MywgMC44NDg1LCAxLjQ2NTksIDAuOTQwNiwgMS40MTM3LCAxLjI3OTIsIDAuNjE0MSwgIDEuMjUyMSwgMC45NDU1LCAwLjg0NzEsIDAuODIxNCwgMS4xMjQzLCAgMS4xOTQ1LCAxLjEzOCwgMS4zMDcyLCAwLjg4MTMsIDEsICAwLjk5MzUsIDEuMTAyNiwgMS4yMTc4LCAxLjE2NDYsIDEuMTE3OCwgIDAuOTMzOCwgMS40NTAyLCAxLjI2NCwgMS4wMjYyLCAwLjg1NjksICAxLjM4MDYsIDEuMDg0OCwgMC45NzAzLCAxLjIzMTMsIDAuODgxOSwgIDEuMTg4OSwgMS4xMjk3LCAxLjA5MDYsIDAuODY5MSwgMS4yMDA5LCAgMS4wNzY2LCAwLjg4NjQsIDEuMDAxLCAxLjEwNzksIDEuMTU2MywgIDAuODI2MywgMC43MDI4LCAxLjMxNTUsIDEuMTkxNSwgMC44ODUsICAxLjAxMDYsIDEuMTIzMSwgMS4yNTc3LCAwLjkwMjcsIDEuMTQ3NiwgIDEuMTcyNywgMS4wMTQsIDEuMjYzMywgMS4xNDYyLCAxLjAyMDMsICAxLjEyNCwgMS4yNzI1LCAwLjkzNDQsIDEuMjYzMSwgMS4wNDQ2LCAgMS4wNzA2LCAwLjk4NDYsIDEuMzQxMSwgMS4yMDI2LCAxLjMxMDEsICAxLjI2NjcsIDEuMTk1MywgMC44OTg2LCAwLjg2OTYsIDAuNzY2MywgIDEuMjYzOCwgMS4wODk5LCAxLjAzLCAxLjEzNjIsIDEuMDM1MywgIDAuNjE1MSwgMS4yMzQ1LCAxLjEyNzgsIDEsIDEuMTM0MSwgIDEuMjk2LCAxLjExMzksIDAuOTkyNywgMS4wOTU0LCAxLjE5NDJdClsgMSwgMiwgMywgNCwgNSwgNCwgMywgMiwgMSBdCi1R)
0-indexed output.
Explanation, with `U` as the list of returns and `V` as the list of investments:
```
ã :Get subsections of U
Vl) : with the same length as V
m :For each of those sections
í : pair each element with
V : the corresponding element from V
® 0 :Calculate the investment results of each by:
r } : for each year:
È+ : add the result of the previous year
YÌ : to this year's investment
*Yg : and multiply by this year's return
b :Get the index of
Urw : the maximum
```
Bonus cheating answer:
# [Japt](https://github.com/ETHproductions/japt), 13 bytes
```
OvUÎò3 ®n dÃq
```
[Try it online!](https://ethproductions.github.io/japt/?v=1.4.6&code=T3ZVzvIzIK5uIGTDcQ==&input=WyIwODUwNjEwOTEwNDkwNDYwNTEwNTUwNTYwNTYwNDQwNDgwNDYwNTYwNTYwNDgwNTcwNDQwNDgwNDYwNTUwNDkwNTMwNTAwNDQwNDgwNDYwNTMwNTAwNTcwNTEwNDQwNDgwNDYwNTYwNTIwNTYwNTMwNDQwNDkwNDYwNTIwNTQwNTMwNTcwNDQwNDgwNDYwNTcwNTIwNDgwNTQwNDQwNDkwNDYwNTIwNDkwNTEwNTUwNDQwNDkwNDYwNTAwNTUwNTcwNTAwNDQwNDgwNDYwNTQwNDkwNTIwNDkwNDQwNDkwNDYwNTAwNTMwNTAwNDkwNDQwNDgwNDYwNTcwNTIwNTMwNTMwNDQwNDgwNDYwNTYwNTIwNTUwNDkwNDQwNDgwNDYwNTYwNTAwNDkwNTIwNDQwNDkwNDYwNDkwNTAwNTIwNTEwNDQwNDkwNDYwNDkwNTcwNTIwNTMwNDQwNDkwNDYwNDkwNTEwNTYwNDQwNDkwNDYwNTEwNDgwNTUwNTAwNDQwNDgwNDYwNTYwNTYwNDkwNTEwNDQwNDkwNDQwNDgwNDYwNTcwNTcwNTEwNTMwNDQwNDkwNDYwNDkwNDgwNTAwNTQwNDQwNDkwNDYwNTAwNDkwNTUwNTYwNDQwNDkwNDYwNDkwNTQwNTIwNTQwNDQwNDkwNDYwNDkwNDkwNTUwNTYwNDQwNDgwNDYwNTcwNTEwNTEwNTYwNDQwNDkwNDYwNTIwNTMwNDgwNTAwNDQwNDkwNDYwNTAwNTQwNTIwNDQwNDkwNDYwNDgwNTAwNTQwNTAwNDQwNDgwNDYwNTYwNTMwNTQwNTcwNDQwNDkwNDYwNTEwNTYwNDgwNTQwNDQwNDkwNDYwNDgwNTYwNTIwNTYwNDQwNDgwNDYwNTcwNTUwNDgwNTEwNDQwNDkwNDYwNTAwNTEwNDkwNTEwNDQwNDgwNDYwNTYwNTYwNDkwNTcwNDQwNDkwNDYwNDkwNTYwNTYwNTcwNDQwNDkwNDYwNDkwNTAwNTcwNTUwNDQwNDkwNDYwNDgwNTcwNDgwNTQwNDQwNDgwNDYwNTYwNTQwNTcwNDkwNDQwNDkwNDYwNTAwNDgwNDgwNTcwNDQwNDkwNDYwNDgwNTUwNTQwNTQwNDQwNDgwNDYwNTYwNTYwNTQwNTIwNDQwNDkwNDYwNDgwNDgwNDkwNDQwNDkwNDYwNDkwNDgwNTUwNTcwNDQwNDkwNDYwNDkwNTMwNTQwNTEwNDQwNDgwNDYwNTYwNTAwNTQwNTEwNDQwNDgwNDYwNTUwNDgwNTAwNTYwNDQwNDkwNDYwNTEwNDkwNTMwNTMwNDQwNDkwNDYwNDkwNTcwNDkwNTMwNDQwNDgwNDYwNTYwNTYwNTMwNDQwNDkwNDYwNDgwNDkwNDgwNTQwNDQwNDkwNDYwNDkwNTAwNTEwNDkwNDQwNDkwNDYwNTAwNTMwNTUwNTUwNDQwNDgwNDYwNTcwNDgwNTAwNTUwNDQwNDkwNDYwNDkwNTIwNTUwNTQwNDQwNDkwNDYwNDkwNTUwNTAwNTUwNDQwNDkwNDYwNDgwNDkwNTIwNDQwNDkwNDYwNTAwNTQwNTEwNTEwNDQwNDkwNDYwNDkwNTIwNTQwNTAwNDQwNDkwNDYwNDgwNTAwNDgwNTEwNDQwNDkwNDYwNDkwNTAwNTIwNDQwNDkwNDYwNTAwNTUwNTAwNTMwNDQwNDgwNDYwNTcwNTEwNTIwNTIwNDQwNDkwNDYwNTAwNTQwNTEwNDkwNDQwNDkwNDYwNDgwNTIwNTIwNTQwNDQwNDkwNDYwNDgwNTUwNDgwNTQwNDQwNDgwNDYwNTcwNTYwNTIwNTQwNDQwNDkwNDYwNTEwNTIwNDkwNDkwNDQwNDkwNDYwNTAwNDgwNTAwNTQwNDQwNDkwNDYwNTEwNDkwNDgwNDkwNDQwNDkwNDYwNTAwNTQwNTQwNTUwNDQwNDkwNDYwNDkwNTcwNTMwNTEwNDQwNDgwNDYwNTYwNTcwNTYwNTQwNDQwNDgwNDYwNTYwNTQwNTcwNTQwNDQwNDgwNDYwNTUwNTQwNTQwNTEwNDQwNDkwNDYwNTAwNTQwNTEwNTYwNDQwNDkwNDYwNDgwNTYwNTcwNTcwNDQwNDkwNDYwNDgwNTEwNDQwNDkwNDYwNDkwNTEwNTQwNTAwNDQwNDkwNDYwNDgwNTEwNTMwNTEwNDQwNDgwNDYwNTQwNDkwNTMwNDkwNDQwNDkwNDYwNTAwNTEwNTIwNTMwNDQwNDkwNDYwNDkwNTAwNTUwNTYwNDQwNDkwNDQwNDkwNDYwNDkwNTEwNTIwNDkwNDQwNDkwNDYwNTAwNTcwNTQwNDQwNDkwNDYwNDkwNDkwNTEwNTcwNDQwNDgwNDYwNTcwNTcwNTAwNTUwNDQwNDkwNDYwNDgwNTcwNTMwNTIwNDQwNDkwNDYwNDkwNTcwNTIwNTAwOTMwNTkwODUwNjEyMjcwODYxMDgwNDExMDkyMzcwODYwMzIxNzQxMTQyMDAwNDMwODkyMDQwMzIwNDIwODkxMDMxMjUwNDgxMjUwNTkwOTgwODUxMTQxMTkiXQpbMSwyLDNd)
Takes the list of returns as [this array](https://pastebin.com/L3ia9T0j), which is an array of 90 strings where each string contains a base-10 integer padded to 1929 digits; I believe this technically meets the requirements. The "Try it" link only has the first element of the "returns" list because the full thing broke the permalink generator, but that's the only one that gets used. You can paste in the whole thing from the pastebin if you want.
Explanation:
As mentioned, only the first element of the "returns" array is actually used; every other element is 0 in the pastebin and ignored by the program. The first element is generated by [this](https://ethproductions.github.io/japt/?v=1.4.6&code=cSBtYyD5JzAgcQ==&input=IlU9WzEuMzc4OCwwLjg4MDksMC43MTUyLDAuNTI5MywwLjg0ODUsMS40NjU5LDAuOTQwNiwxLjQxMzcsMS4yNzkyLDAuNjE0MSwxLjI1MjEsMC45NDU1LDAuODQ3MSwwLjgyMTQsMS4xMjQzLDEuMTk0NSwxLjEzOCwxLjMwNzIsMC44ODEzLDEsMC45OTM1LDEuMTAyNiwxLjIxNzgsMS4xNjQ2LDEuMTE3OCwwLjkzMzgsMS40NTAyLDEuMjY0LDEuMDI2MiwwLjg1NjksMS4zODA2LDEuMDg0OCwwLjk3MDMsMS4yMzEzLDAuODgxOSwxLjE4ODksMS4xMjk3LDEuMDkwNiwwLjg2OTEsMS4yMDA5LDEuMDc2NiwwLjg4NjQsMS4wMDEsMS4xMDc5LDEuMTU2MywwLjgyNjMsMC43MDI4LDEuMzE1NSwxLjE5MTUsMC44ODUsMS4wMTA2LDEuMTIzMSwxLjI1NzcsMC45MDI3LDEuMTQ3NiwxLjE3MjcsMS4wMTQsMS4yNjMzLDEuMTQ2MiwxLjAyMDMsMS4xMjQsMS4yNzI1LDAuOTM0NCwxLjI2MzEsMS4wNDQ2LDEuMDcwNiwwLjk4NDYsMS4zNDExLDEuMjAyNiwxLjMxMDEsMS4yNjY3LDEuMTk1MywwLjg5ODYsMC44Njk2LDAuNzY2MywxLjI2MzgsMS4wODk5LDEuMDMsMS4xMzYyLDEuMDM1MywwLjYxNTEsMS4yMzQ1LDEuMTI3OCwxLDEuMTM0MSwxLjI5NiwxLjExMzksMC45OTI3LDEuMDk1NCwxLjE5NDJdO1U941ZsKW3tViCucsgrWcwgKllnfTB9O2JVcnci), which takes the string representation of a Japt program, turns each character into a 3 digit number, and joins those numbers into a new string of just digits. The code being encoded is [this](https://ethproductions.github.io/japt/?v=1.4.6&code=VT1bMS4zNzg4LDAuODgwOSwwLjcxNTIsMC41MjkzLDAuODQ4NSwxLjQ2NTksMC45NDA2LDEuNDEzNywxLjI3OTIsMC42MTQxLDEuMjUyMSwwLjk0NTUsMC44NDcxLDAuODIxNCwxLjEyNDMsMS4xOTQ1LDEuMTM4LDEuMzA3MiwwLjg4MTMsMSwwLjk5MzUsMS4xMDI2LDEuMjE3OCwxLjE2NDYsMS4xMTc4LDAuOTMzOCwxLjQ1MDIsMS4yNjQsMS4wMjYyLDAuODU2OSwxLjM4MDYsMS4wODQ4LDAuOTcwMywxLjIzMTMsMC44ODE5LDEuMTg4OSwxLjEyOTcsMS4wOTA2LDAuODY5MSwxLjIwMDksMS4wNzY2LDAuODg2NCwxLjAwMSwxLjEwNzksMS4xNTYzLDAuODI2MywwLjcwMjgsMS4zMTU1LDEuMTkxNSwwLjg4NSwxLjAxMDYsMS4xMjMxLDEuMjU3NywwLjkwMjcsMS4xNDc2LDEuMTcyNywxLjAxNCwxLjI2MzMsMS4xNDYyLDEuMDIwMywxLjEyNCwxLjI3MjUsMC45MzQ0LDEuMjYzMSwxLjA0NDYsMS4wNzA2LDAuOTg0NiwxLjM0MTEsMS4yMDI2LDEuMzEwMSwxLjI2NjcsMS4xOTUzLDAuODk4NiwwLjg2OTYsMC43NjYzLDEuMjYzOCwxLjA4OTksMS4wMywxLjEzNjIsMS4wMzUzLDAuNjE1MSwxLjIzNDUsMS4xMjc4LDEsMS4xMzQxLDEuMjk2LDEuMTEzOSwwLjk5MjcsMS4wOTU0LDEuMTk0Ml07VT3jVmwpbe1WIK5yyCtZzCAqWWd9MH07YlVydw==&input=W10KWzEsMiwzXQo=), which is basically my main answer adjusted to hard-code the returns. Then the "answer" program is just:
```
UÎ :Get the first element
ò3 :Cut it into slices of length 3
®n :Convert those strings to numbers
dà :Convert those numbers to characters
q :Join all the characters into one string
Ov :Execute it as Japt
```
[Answer]
# JavaScript (ES6), 73 bytes
Takes input as `(annual_returns)(X)`. The result is 0-indexed.
```
a=>x=>a.map((_,i)=>x.map((c,j)=>(t=(t+c)*a[i+j])>m&&(r=i,m=t),t=0),m=0)|r
```
[Try it online!](https://tio.run/##jVLtahtBDPyfp9hf4ba5OpL2m3KGPEcw5XDjYmPHwTGlhb67u6dZl0J7psZY1kojzczubvw2vq9P27fzx9fjl5fLZriMw/L7sBwXh/Gt6z73W1tzJOt@V5PuPHTnh7X9MD5vH3Yruzzc33enYdsfhrPtzwPZ@o/sz9PlyQzm2fDCpZx7Q4ucqUwxcZApBilOz30Ofe3zMWi9eIqas0tTlFS0P7JnzYMw@kIAPmmehf1UZ/FOY23Q6PIUHCUBDZ7KOqE4dJDoRuGkrRy95qx57XMY4QOJ9kVdVFGYGGLRDRnEqSpSWCIlIo5d26x9nDOiFBVIZcLVeiwQSKR1ShHnue0jBtsEeIgYK4iJBEI5QFVh@AN7icGOKx3YmJKyJFEW7BPqCTnBzTocbvooEA1R1WVcjgRY5K/tOp08LKQEbSUjd56bRljuGKIkRrAoAaJKvnqisVrh2vwMjws8AhnXyDmgIwdMde0JiF4sWtsrKu2KHR5daapL8O3xiFl9urtbH1/fj/uXxf74tdt0T7Z7nubUbc6szMzHWvP4aGL6J3ge9ifYhL/BT6fT@KMrZBeb7X7febFzYJqhfXs5wBLnNP8H2KS5zTe@ZtUM4xtu96beS9Bfpye/tTSwmzNMroaxnaMd5PIL "JavaScript (Node.js) – Try It Online")
[Answer]
# J, 48 bytes
```
1+[:(i.>./)[:({:@[*{.@[+*/@])/"2[(|.@,."1)#@[]\]
```
[Try it online!](https://tio.run/##dVJNb1NBDLznV1gBqXlt2fhjPyMFRULixInrIydEBVy4Vir/Pdizoa2QOLy36/V4POPdn5dtunmg44Fu6J6YDv69S/Th86ePF7lbD7sf6X3aL755OpzW26d0Wu9u96fzst/quvudTvdpK8ub03r@cr4sm8djkmStd@LUOw9fmhT1peiwOMy9kKRcS@RG5hqRWPNF2whklSwUYVEBphQUtoi6SvacaLbAiGdjse5/46boK0bO4KXDkGWNLiotUFJzRBJRYAy1ubAGpga740FU6ogm1qGSXXsUNLZAmthsBoz0PqBrhBMeXuHJOiSgzMBwqzjtswkLtDXUlWoEezVYGysMSYH@IZiATy7qBGrEBWBIrYUo1ugruVWoaQgZs3JKQ64qvPGcnCLXtGAI@YoMTs65Tr1wMToGZlmmGQzThOcl1YrGo2Aao199x@J2bWIwYu4jrGJ6YlOMFdiuUsBt8zY1Lgqo60sY88YMb2ZMb6Pk@QB0s/n29fsvqp2OXqZk9ECP1zMcPYfi4W4wvSVZ/gty@ohfnfwlfqnQIPJ5/EOUnxVkKv6Z71/xuFkv05f@lz8 "J – Try It Online")
## ungolfed
```
1 + [: (i. >./) [: ({:@[ * {.@[ + */@])/"2 [ |.@,."1 #@[ ]\ ]
```
## how
Take input list (eg, `123`) on left, data on right.
`#@[ ]\ ]` Chop up the data into infixes whose length matches the input:
```
1.3788 0.8809 0.7152
0.8809 0.7152 0.5293
0.7152 0.5293 0.8485
```
`[ ,."1` now zip each of those groups of 3 with the input list
```
1 2 3
1.3788 0.8809 0.7152
1 2 3
0.8809 0.7152 0.5293
1 2 3
0.7152 0.5293 0.8485
```
`|.@` and reverse them:
```
3 2 1
0.7152 0.8809 1.3788
```
`(verb to insert)/"2` Between the items of each zipped group of 3, insert the
verb in parentheses.
```
3 2 1
VERB VERB
0.7152 0.8809 1.3788
```
`({:@[ * {.@[ + */@])` is the inserted verb, which will reduce each item of the list of zipped groups of threes down to one number, which is the amount
earned over that group of years:
```
2. plus the first 1. */] = product of right args
(top) item on left
+-+ +--------+
|2| + | 1 |
+-+ | * |
| 1.3788 |
* +--------+
0.8809
3. Multiply that sum by the bottom
number on the left.
```
`(i. >./)` Take the list thus reduced and find the index of the max.
`1 + [:` And add one
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 11 bytes
```
ṡ⁹L¤U×\€UḋM
```
[Try it online!](https://tio.run/##NVK7UUQxDGzlCnhzo48lWT1ASAQXkjDXACGkFEDMDCEFQAqVQCMPW@uLNLJW2tVaD/fn8@O@/369/T19XX2/3/y83v09f9z8fr5c7/t@y0eN3rcDHXunnDHYZEaT1Hpv3bYDH5tb1bORV84aM0pk4Z0bb4f5YMIAmmFAVN6F22xgaVpAHoh60D6DUgiE8KjPWWNGKiAkRSochWVvlXPlE6gY0oykgF5cow0zzbM4tUM9jbVKZJAWXlkXOYDce0Jt1pqUs3EAPLkaiACkcBT6oiSG4kC/uZbCLl4MQYJ12bBaMmyaNs9@hkIekorIIkopSQnhFg6FgQeCrWO8ou6C1WnZLKiHFE9qu@BrPrXmaxFsmB3eauO1KbxXpvXB7lCSBs@yX6ypOAzRBcSnUM/yAlazLoFqcMbZQKTrHqQ@GdjLUeX6b8UR5to9DTeVTU7jmjfZ9PQP "Jelly – Try It Online")
The return factor on a deposit is the cumulative product of the return factors in the years until the end of the `K` year period. If we're allowed to take the input in reverse and output a year number as 2018-[end date], the **10 bytes** solution `×\⁹L¤Ƥ×S€M` works.
```
ṡ All overlapping slices of left input of length:
⁹L¤ length(right input)
Calculate cumulative returns list for each possible year:
U Reverse each element of the result
×\€ Take the cumulative product
U Reverse again
ḋ Dot product with the deposits list.
The final balance when invested in each year.
M Get all indices of maximum values
```
[Answer]
# [Python 2](https://docs.python.org/2/), 97 bytes
```
lambda r,v:max(range(len(r)-len(v)+1),key=lambda i:reduce(lambda x,(a,b):(x+a)*b,zip(v,r[i:]),0))
```
[Try it online!](https://tio.run/##jVJdbxoxEHzPr7DUl7vEQbtefy0S/SOUh6MhLWpC0ZUg0j9P7V2DVKlHik6sbM/szI69fz98/7lz5@fFl/PL8Lp@Gsxoj/PX4dSNw@7bpnvZ7Lqxf6zl2D9gb39s3hcNuZ2Pm6e3rwWk65PtBrvu593pYejv1/b3dt8d7bjczle9hb4/j5vD27j7ZRZmiTNKOVsDs5yBa00YXK3BMcm@z8EanPkY5Jw9RFkjpVpdYsFH9GhN3QgOFRiCNkiyzg59JaDzJEAsCNmgXAtBcmoEy3ntVXowKQSciDpMgsXoZY2yrkDSJj6AE2AUrULTniGyaFJW91DGEpMJSPCE1MQViDmzumUZE7gSCyAyCgFAgZCiHuQmCaiOk/JDJHGYXRSFBE7HxaCjMWpMNebKR3WIxZIIhZTEKTgxgj5FdZh0AzTW0p70PDodHVrMTs@TEx0mf8FLf/A@tkF0Qs6aLXlsk2r2hNAuOEZ1wkEz43yJRmoJhBpQLwUySxYaNVIzSEGTiRhUiNp7cHLJir08Km73TfoIuc3OQd8Ue8eru7v9uN0dzHPXXrg1y9qnyJFZmYlfbz6Zx8/GxPxP@jTxb7qJU/R7w/AxHSfM3zZwobs0Nft/0U2eUr/xmdU1OrqRvDXlioL8k@xcJ7rS/XR07uPoAp3/AA "Python 2 – Try It Online")
Returns `0`-indexed
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~21~~ 20 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
Œsgùεø0©\vy`s®+*©]Zk
```
Way too long..
0-indexed.
[Try it online](https://tio.run/##NVI7TkMxEOw5RWqIov14vd6rECIBEkKIgiISEtfILdLQIUGbiJYrPewd5zWjfTu7nhn7bf/w@PK0LL@H/fP55@/r/E2n4937x/3@9HlzfTrubl@XZcsb9dbWK9q0RjHQ2WSgSWj@L83WK96UatmPQjVrVh8oHsmvXDhrEwbPDPOedRMuo89SNLETErUNUHKBDB7t3BAKBkmeKOxJ5Vqy5qw7T7GiGEnyah7Up7DRauQJDcKpO8oxpxQiyjpPTh63BpRIgxRjrvdrwCBR9skr/rd5HjHUOsatYq0AnQRG2eAqGPkgXmKo4y4HMbqnSpJUwcXRd9SENPtypFmqwDRM9ZRxOWKIqFzouZ0KIiSHt2iotfD0iMiVYUpqhYowmIp2ySSxR6Fzf0PGgYwgRqc4xXRlw1adT0DyYkGdryjmFSseXUzXYWU@HtldbZn6t14JQAfs/gE) or [verify all test cases](https://tio.run/##1VI7SgRBFLzKYKjN8j79e9EmXkFR1wUVRMTAYEHYwFRzb2FiJmi6auohvMja86oXIwNDZxhqXr9PV1X39eL07PJ8/X6/d7Ocbg1fdw/D1nS5u3@w/nhYXLy9fj4fLt5eaPV4fLM8WayedrZXj7e3R1frsJ7NeKKl1jDQpFayEQsnGTGJqa/HmsLAk5iT5y1S9pi1jCjFvD5zZI@TMOpSQn/xuArHMc8S1bEVOGodQakIaPCY9gmmqCDxHYWLl3KOHrPHrU4xIiYSr8u@UevCxJTNd6ggTk2RtxVyIqKsfWev41qBYi6QbOxr@WwQSOR5Khnrte9HDLYF7SljrAALCYRygipj@AN7icGOGx3YWIqzJHEWHAvyBTHBzTYcbsYsEA1RzWUcjiRYFDflPp0iLKQCbVYRa@SuEZYrQ5TkDBaWIMrqxhPHZoX2@RUeGzwCGe3kFN2ZE6ZqvwLiB4vSfousH7Hi0llXbSn2yyPzMAwzpvaEQQA6AtaDBMVfj//du@G90fO7jh/FIYbUPm3/f9I9n38D).
**Explanation:**
```
Œ # Get all sublists of the (implicit) input-list of stock-changes
s # Swap to take the second (implicit) input-list of investments
g # And take its length
ù # Only leave sublists of that size
ε # Map each to:
ø # Create pairs with the second (implicit) input-list of investments
0© # Store 0 in the register
\ # Discard the 0 from the stack
vy # Loop `y` over the pairs
` # Pop and push both values of the pair to the stack
s # Swap them
®+ # Add the value from the register to the investment amount
* # And multiply it by the current number of the sublist
© # And then replace the value in the register with this
] # Close both the loop and map
Z # Take the max of the mapped sublists (without popping the list)
k # Determine the index of that max (and output implicitly)
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 15 bytes
```
ṡ⁹L¤ż€+Ṫ×Ḣʋƒ€0M
```
[Try it online!](https://tio.run/##NVI7TkQxDLzK61mt/Inj@A5wAkRJg/YClNDS0VCDqBAHYCUqEBTcYvcij8STbWLZHtvjcW6ud7vbdT3sn493@/Ov15/P4/372WH/9v10@Hj5e/h97D5drOvKW/XWNgttW6MY1tlkWJPQjJdmm4W3pVrmo1BNn9WHFY/EVy68WUbAhAE0QwNPvwmXUcBSNIHcERnQNoySC4hwz49evUcoICQ5VNgTy7Wkz@kPoKJJMZIE1pzVy9DTauRMbWBPfa0k6aSJV9Y5HEBuLcA2ck2KUdgBNTgLiAAkr0i0OZIYjB31VjUZNqk5wUmwLhtWC4ZMQ@ZRz2DInVIOMvdkSpJEuHgFQ0eAIGtvr8hXweo0ZRbkXXJOaDnhsz@VUuci2DAatNXCc1Nor0zzwLWCSRg0i3aSJm0XRCcQR6EWqQWkZp0E1aBMZcMgnf9B8sjAnj5VzHsrPmHM3cPwp6LIejlqeuvetQctX80IL1f/ "Jelly – Try It Online")
] |
[Question]
[
I have a series of binary switches, which I can represent as a bit string. The last person who used my switches left them in some arbitrary state without cleaning up, and it bugs me. I always keep the switches in one of four possible "tidy" configurations:
* All `1`: e.g., `111111111`
* All `0`: e.g., `000000000`
* Alternating `1` and `0`: e.g., `10101010` or `01010101`
However, in addition to being fastidious about my switch arrangements, I'm also very lazy, and want to extend the smallest amount of effort possible to reset the switches to one of my preferred states.
# Challenge
Write a program or function that takes a sequence of ones and zeros of any length. It should output a result of the same length that shows the closest "tidy" configuration.
## Input and output
* You may represent your bit sequence using a string or any language-native ordered type, such as a list or array. If using a non-string structure, items within the sequence may be number or string representations of `1` and `0`.
+ Your strings may have leading and trailing characters like `"..."` or `[...]`
* Your input and output formats are not required to match. (For example, you may input a list and output a string.)
* Don't input or output base 10 (or other base) representations of the bit string. That's way too much effort to correspond back to switches -- I'm doing this because I'm lazy, remember?
* Output must be a sequence as specified above. Don't output an enumerated value saying which of the four configurations is the best (e.g., don't say, "solution is case #3"). Actually output a bit sequence in that configuration.
* Input may be of any length. Your code may not impose arbitrary limits on the size of the input.
+ If your language or interpreter imposes reasonable arbitrary limits on the size of an input or call stack (e.g, if you choose a recursive solution), then this is acceptable insofar as it is a shortcoming in your environment, not your code.
## Notes
* The distance between two strings is the [Hamming distance](https://en.wikipedia.org/wiki/Hamming_distance). You must find the "tidy" configuration of the same length at the input that has the fewest number of differences from the input.
* If multiple tidy configurations are equally best choices, you may output any best choice, or (at your option) multiple best choices, delimited in some way or as siblings in a data structure. The selection can be completely arbitrary and does not need to be consistent between executions.
* The input might already be a tidy state.
## Examples
```
Input: 1111110
Output: 1111111
Input: 001010000
Output: 000000000
Input: 0010100
Allowed output: 0000000
Allowed output: 1010101
[You may choose either allowed output, or both]
Input: 1111
Output: 1111
Input: 10
Output: 10
Input: 010101101
Output: 010101010
Input: 110
Allowed output: 111
Allowed output: 010
```
[Answer]
# [Python 2](https://docs.python.org/2/), ~~127~~ ~~103~~ 101 bytes
```
lambda a:min(zip(*[[1,0,i%2,~-i%2]for i in range(len(a))]),key=lambda N:sum(o^b for o,b in zip(a,N)))
```
[Try it online!](https://tio.run/##K6gsycjPM/qfZhvzPycxNyklUSHRKjczT6Mqs0BDKzraUMdAJ1PVSKdOF0jGpuUXKWQqZOYpFCXmpadq5KTmaSRqasZq6mSnVtpCtftZFZfmauTHJSmAVOfrJIHUg0xL1PHT1NT8X1CUmVeikKYRbaADMhyCwWSsJheSJELaAFnCUAcGsQmjC6GpAXL/AwA "Python 2 – Try It Online")
Makes the lists `111...`, `000...`, `101...` and `010...` with the first `zip` then finds the min of these lists with key function: sum of the xor of each element in the each possible output the input.
[Answer]
# [Python 3](https://docs.python.org/3/), ~~101~~ 98 bytes
```
lambda s:min([p*len(s)for p in('1','0','10','01')],key=lambda l:sum(map(str.__ne__,l,s)))[:len(s)]
```
[Try it online!](https://tio.run/##TU3NDsIgDL77FL0sBYMG4kmS@SJzITNukQiMwDzs6bFsHmzTv6/9vsZ1ec3hUqb2XtzgH88BsvY2sC4e3RhY5tOcIAIhqFCgpFA1SYW8F@9xbX80p/PHMz9Elpd0NiaMxggnMue807tUX6qYJTFAtRkpAUqpyMn@htrWg63ui4oTY4cI0weAmGxYGDbXDKcbUEFogFkBE7P0uHwB "Python 3 – Try It Online")
[Answer]
# Pyth, ~~21~~ ~~20~~ 19 bytes
```
.iFm*ld].R.OdZ.TcQ2
```
Input/output as a list of 0s and 1s.
[Try it here](http://pyth.herokuapp.com/?code=.iFm%2ald%5D.R.OdZ.TcQ2&input=%5B0%2C0%2C1%2C0%2C1%2C0%2C0%2C0%2C1%5D&debug=0)
### Explanation
```
.iFm*ld].R.OdZ.TcQ2
.TcQ2 Separate the bits at even and odd positions.
m For each part...
.R.OdZ ... round the average bit...
*ld] ... and get a list of copies of that number.
.iF Interleave the results.
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), ~~22~~ 17 bytes
```
JµṠ,¬;‘Ḃ,ḂƲạ³S$ÐṂ
```
[Try it online!](https://tio.run/##y0rNyan8/9/r0NaHOxfoHFpj/ahhxsMdTTpAfGzTw10LD20OVjk84eHOpv///0cb6BjqwDCYjAUA "Jelly – Try It Online")
Outputs all minima.
[Answer]
# [Stax](https://github.com/tomtheisen/stax), 18 [bytes](https://github.com/tomtheisen/stax/blob/master/docs/packed.md#packed-stax)
```
æQ|jX8ŽΓÜ\`\Δ○║á♦
```
[Run and debug it](https://staxlang.xyz/#p=91517c6a58388fabe29a5c605cff09baa004&i=[1+1+1+1+1+1+0]%0A[0+0+1+0+1+0+0+0+0]%0A[0+0+1+0+1+0+0]&m=2)
[Answer]
# [Ruby](https://www.ruby-lang.org/), ~~89~~ 87 bytes
```
->l{[a=[0],b=[1],a+b,b+a].map{|i|i*a=l.size}.min_by{|i|l.zip(i).count{|c,d|c!=d}}[0,a]}
```
[Try it online!](https://tio.run/##XVDdasMgFL7PU7ibubVO9LaQvYhIMcasB9IYEgNrY549M878bJ8Ix@@Pg91QPOYqnz8@61GoXDBJilxwSdS5IMVZSXpX7ejBw0nlNe3haSZ6h@ZaPBa2pk9o3@Cdajs0bvSalF6/5OU0CUaUnGaRISQwj2CYoDRyLElUGOPhBCwaW/FPjbk48oNtNcW61LxxKbMVxfCaT12HBpb41INlJqlR@oZKizwQZFm43Ad320HjEIamHdwFBeCFHFyPYFe/7K92UCsBVN9U1y8fil4vzl5BnjDeQ@a7NdqZ8rKHLNtl26VKhBFUYZvNxP@8M9OU8w8 "Ruby – Try It Online")
[Answer]
# [Husk](https://github.com/barbuz/Husk), 18 bytes
```
ΣTm(Ṡm`K(iA)Ċ2)Set
```
[Try it online!](https://tio.run/##yygtzv6fm/@oqTE3v8j6/7nFIbkaD3cuyE3w1sh01DzSZaQZnFry////aCVDMDBQ0lEyMDAEQiBAsIEskCyIAouCBIGKwQJAkVgA "Husk – Try It Online")
[Answer]
# [Ruby](https://www.ruby-lang.org/), ~~105~~ 87 bytes
```
->s{(0..3).map{|i|("%02b"%i*z=s.size)[0,z]}.min_by{|x|("%b"%eval("0b1#{x}^0b"+s)).sum}}
```
[Try it online!](https://tio.run/##RYtdCsIwEISvIiuFRuuy0ed6kRKlkRYDVkrTSpufs8ckCM4@7PDNzLTILfR1OF21LQnxwnBoR@uUK6Ggs4RCHUytUSvTsYYqIzwO6n2Xm3Vr6sRG92lfJZDke7v6G0k4asZQL4P3oQGeRVABEY8X9ffRpTS9TBOM5Qz4L80LgV37eFo3u3GZ9a5vZuHDFw "Ruby – Try It Online")
This code constructs the four "tidy" strings by elongating the bit representations of numbers 0 to 3 to the required size, and then selects the one that gives the minimum Hamming distance to our test string.
The distance is calculated by XORing the integer representations of strings, and in theory we should then count the number of set bits in the result. But in practice, string byte `sum` method works just as well, and is golfier. The only extra trick that is now necessary, is to pad one of the bit strings with an extra "1" in front: `0xb1...` to prevent dropping of leading zeroes in the result, as they are important for `sum`.
[Answer]
# [Coconut](http://coconut-lang.org/), 75 bytes
Port of [my Python answer](https://codegolf.stackexchange.com/a/162464/64121).
```
s->min(map(x->x*len(s),('1','0','10','01')),key=sum..map$((!=),s))[:len(s)]
```
[Try it online!](https://tio.run/##TUvRCoMwDHzfV2QwSTJaaR8n1B/Z9jBEoWy2YhXc13epvuxCcsnlrotdDOuSB/fISbejDzS@Jtp0u10/faDEitCiQiNtyzAWmdW7/7q0jnUt7gvR2bFKzPfmyDzzEGfw4AOg3SFJQGOslODvKGsx7Hw8ii6JQxKtOQFMsw8LYXVLoFsQQqiAvIKBPDPnHw "Coconut – Try It Online")
[Answer]
# PHP, ~~117~~ 116 bytes
```
for(;~$f=$argn[$i++];${1}.=0,${0}.=1,${2}.=~$i&1,${3}.=$i&1,$d[2|$f^$i&1]++)$d[$f]++;echo${array_flip($d)[min($d)]};
```
Run as pipe with `-nR` or [try it online](http://sandbox.onlinephpfunctions.com/code/9c769feb2a4add1ce67d071bef2743a56008659f).
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 101 100 bytes
```
s=>[0,1,10,"01"].map(m=x=>[...t="".padEnd(s.length,x)].map((x,i)=>c+=x^s[i],c=0)&&m<c||(m=c,T=t))&&T
```
[Try it online!](https://tio.run/##dY7LDoMgEEX3/QozCwMpJcO@465/4M7YxOCjNr5STOPCf6cUddPQywaGk3vmWbwLo1/tNF@GsaxsTdZQkqFQQqEAVJDLvphYT4sbSylnApBTUd6GkhnZVUMzP8TCN4otouWU6DMtd5O1udCEPI77q15XV6FFSjN3g9TqcTBjV8lubFjNQPkgcKL9roCffiBE5Y6Lx/DIXxB4RBSB8q9A32bZjYHvfZ2QwDf60u8muwFDCjwQ4PYD "JavaScript (Node.js) – Try It Online")
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 16 bytes
```
J1;Ḃ;¬$Ʋ€Z=³S$ÐṀ
```
[Try it online!](https://tio.run/##y0rNyan8/9/L0PrhjibrQ2tUjm161LQmyvbQ5mCVwxMe7mz4//9/tKGOAhoyiAUA "Jelly – Try It Online")
Sort of similar to dylnan's answer, which I noticed afterwards, but I think the method is unique enough to warrant a separate answer.
# Explanation
```
J1;Ḃ;¬$Ʋ€Z=³S$ÐṀ Main Link
J Range from 1 to len(z)
€ For each element
Ʋ
1 1
;Ḃ [1, k % 2]
¬$ Append the logical NOT of the list ([1, k%2, 0, !k%2])
Z Zip (basically, it generates a 4-long list per element, and then transposes it into the four lists)
ÐṀ Take the maximum element via
=³S$ the number of matching elements (pairwise-equality into sum)
```
[Answer]
# Java 10, ~~182~~ ~~179~~ ~~178~~ 170 bytes
```
a->{int l=a.length,b[][]=new int[4][l],i=4*l,y,r=l,R[]=a;for(;i-->0;)b[y=i/l][i%l]=y<2?y:i%l+2/y&1;for(var B:b){for(i=y=0;i<l;)y+=a[i]^B[i++];if(y<r){r=y;R=B;}}return R;}
```
-11 bytes thanks to *@ceilingcat*.
[Try it online.](https://tio.run/##rVDLbsIwELzzFb60ipsHAXHCmKrcywGOlis5IaFLjYMch8qK/O2pSSj9gEbrXXsfHu3MSVxFfDp8dbkUdY3eBah2ghAoU@hS5AXa3tK@wDjKg@EWmPiq8@5PbYSBHG2RQhR1Il63fghJKhJZqKP5jDLGGaeq@O5RFpxJHgFdvMjIRprKaOe7gpSVDgjE8TolOGOWwlRyBk@SU7uav9qlf4bzqX2e9ZNXodFmmeH2lgC1NCWwkgTbkAoG/GPDIAw5gTKwK41bTS3Z0Q1xThem0QrtiOvIsP@lyaTf/07jWsEBnb0Mwd5oUEfGBR4k2NvaFOekakxy8R0jVXDy6iWNAZm8aS1snZhq@BWoJA9@GfN2Fv1Z6jDu5fsXYhqlN6zeexsfdRTEO@uRsMZiOXvw7ONoTB/7uYnrfgA)
**Explanation:**
```
a->{ // Method with integer-array as both parameter and return-type
int l=a.length, // Length of the input-array
b[][]=new int[4][l],
// Integer matrix of 4 rows and `l` columns
i=4*l, // Index integer
y, // Temp integer
r=l, // Result smallest difference with the input-array
R[]=a; // Result-integer array
for(;i-->0;) // Loop over the cells:
b[y=i/l][i%l]= // Set `y` to the current cell's y-coordinate,
// and fill this cell in the matrix with:
y<2? // If this is the first or second row:
y // Fill this cell with this 0 or 1 from `y`
: // Else:
i%l+2/y&1; // Fill it with `(x+2//y)%2` instead
// (which is `x%2` for the third row
// and `(x+1)%2` for the fourth row)
for(var B:b){ // Loop over the rows of the matrix:
for(i=y=0; // Reset `y` to 0, and use it as sum
i<l;) // Inner loop over the cells of the matrix
y+=a[i]^B[i++]; // Add the xor of the values at the same positions
// of both the input array and current row to the sum
if(y<r){ // If the sum is smaller than the current smallest difference:
r=y; // Set the sum as new smallest difference
R=B;}} // Set the result-array `R` to the current row of the matrix
return R;} // Return the resulting array with the smallest difference
```
**Example: Input-array `[0,1,0,1,0,1,1,0,1]`**
The first nested loop creates the following matrix, where the rows are the same length as the input:
```
[[0,0,0,0,0,0,0,0,0],
[1,1,1,1,1,1,1,1,1],
[0,1,0,1,0,1,0,1,0],
[1,0,1,0,1,0,1,0,1]]
```
The second nested loops uses an XOR between each value at the same position in this row and the input-array, and sums that together:
```
[0^0 + 1^0 + 0^0 + 1^0 + 0^0 + 1^0 + 1^0 + 0^0 + 1^0 = 5,
0^1 + 1^1 + 0^1 + 1^1 + 0^1 + 1^1 + 1^1 + 0^1 + 1^1 = 4,
0^0 + 1^1 + 0^0 + 1^1 + 0^0 + 1^1 + 1^0 + 0^1 + 1^0 = 3,
0^1 + 1^0 + 0^1 + 1^0 + 0^1 + 1^0 + 1^1 + 0^0 + 1^1 = 6]
```
And then it returns the row with the lowest XOR-sum, which is `[0,1,0,1,0,1,0,1,0]` (`3`) in this case.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~14~~ ~~13~~ 12 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
dāÈ‚D≠«Σ^O}н
```
Port of the approach I used in [my Java answer](https://codegolf.stackexchange.com/a/162555/52210).
[Try it online](https://tio.run/##yy9OTMpM/f8/5Ujj4Y5HDbNcHnUuOLT63OI4/9oLe///jzbQMdSBYTAZCwA) or [verify all test cases](https://tio.run/##yy9OTMpM/V9WeXjCoZX2SgqP2iYpKNn/TznSeLjjUcMsl0edCw6tPrc4zr/2wt7/Ov@jow11ENAgVifaQMcAxAJjMEQXA/Kh6sEsiLwhXAWYhKoxiI0FAA).
**Explanation:**
```
# Create the list of 1s the same length as the input-list:
d # Check for each value in the (implicit) input-list if it's non-negative (≥0)
# Create the list of alternating 0s/1s (starting at 0):
ā # Push a list in the range [1, list-length) (without popping the list)
È # Then check for each whether it's even (1 if even; 0 if odd)
‚ # Pair the two lists together
# Create the list of 0s and list of alternating 1s/0s (starting at 1):
D # Duplicate the pair of lists
≠ # And invert each boolean by checking !=1
« # And then merge them together to have a list of four lists
Σ # Sort the list of lists by:
^ # XOR the values of the current inner list and (implicit) input-list
# (at the same positions)
O # And then sum it to get the amount of 1s
}н # And after the sorting: only leave the first list (with the smallest sum)
# (which is output implicitly as result)
```
] |
[Question]
[
Pig-latin is a made-up language that is translated into by moving the first letter of a word to the end and adding `ay` to the end. For example: `hello` translates into pig-latin as `ellohay`. Therefore, translating pig-latin back into English is dropping the `ay` at the end and moving the last letter to the start (like `oodbyegay` to `goodbye`). When writing it out, some people will put a `-` at the end before moving the first letter for clarity, so it reads (for example) `ello-hay` instead of `ellohay` for `hello`. We will use this hyphenated version for this challenge.
# Objective
Undo a pig-latin string.
# Instructions
Write a program/function that takes one argument, a *single* word in the form of a string. If that word is in pig-latin, the program/function must output (i.e. `return` or print it) the non-pig-latin word. If it isn't pig-latin, output the word as-is.
Pig-latin for this challenge will be in the following format:
```
ello-hay
```
If the word ends in `-*ay`, it is pig-latin, where the `*` is a single wildcard character.
Non-letter characters should be treated as a normal letter. For multiple dashes, ignore all except the last.
# Examples
Using fictitious `unpig()` Python function for demo.
```
unpig("ello-hay") #=> hello
unpig("hello-world") #=> hello-world
unpig("hello") #=> hello
unpig("pple-aay") #=> apple
unpig("apple") #=> apple
unpig("ig-Stay") #=> ig-Stay (+1 to ETHproductions for noticing.)
unpig("ello----hay") #=> hello---
unpig("la$s-gay") #=> gla$s
unpig("ig-pay-yay") #=> yig-pay
```
# Rules
1. Standard loopholes apply
2. This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so shortest code wins.
3. Built-in functions (specifically for this purpose) are not permitted.
4. Use header `# Language, XX bytes`
# Leaderboard
```
var QUESTION_ID=127963,OVERRIDE_USER=46066;function answersUrl(e){return"https://api.stackexchange.com/2.2/questions/"+QUESTION_ID+"/answers?page="+e+"&pagesize=100&order=desc&sort=creation&site=codegolf&filter="+ANSWER_FILTER}function commentUrl(e,s){return"https://api.stackexchange.com/2.2/answers/"+s.join(";")+"/comments?page="+e+"&pagesize=100&order=desc&sort=creation&site=codegolf&filter="+COMMENT_FILTER}function getAnswers(){jQuery.ajax({url:answersUrl(answer_page++),method:"get",dataType:"jsonp",crossDomain:!0,success:function(e){answers.push.apply(answers,e.items),answers_hash=[],answer_ids=[],e.items.forEach(function(e){e.comments=[];var s=+e.share_link.match(/\d+/);answer_ids.push(s),answers_hash[s]=e}),e.has_more||(more_answers=!1),comment_page=1,getComments()}})}function getComments(){jQuery.ajax({url:commentUrl(comment_page++,answer_ids),method:"get",dataType:"jsonp",crossDomain:!0,success:function(e){e.items.forEach(function(e){e.owner.user_id===OVERRIDE_USER&&answers_hash[e.post_id].comments.push(e)}),e.has_more?getComments():more_answers?getAnswers():process()}})}function getAuthorName(e){return e.owner.display_name}function process(){var e=[];answers.forEach(function(s){var r=s.body;s.comments.forEach(function(e){OVERRIDE_REG.test(e.body)&&(r="<h1>"+e.body.replace(OVERRIDE_REG,"")+"</h1>")});var a=r.match(SCORE_REG);a&&e.push({user:getAuthorName(s),size:+a[2],language:a[1],link:s.share_link})}),e.sort(function(e,s){var r=e.size,a=s.size;return r-a});var s={},r=1,a=null,n=1;e.forEach(function(e){e.size!=a&&(n=r),a=e.size,++r;var t=jQuery("#answer-template").html();t=t.replace("{{PLACE}}",n+".").replace("{{NAME}}",e.user).replace("{{LANGUAGE}}",e.language).replace("{{SIZE}}",e.size).replace("{{LINK}}",e.link),t=jQuery(t),jQuery("#answers").append(t);var o=e.language;/<a/.test(o)&&(o=jQuery(o).text()),s[o]=s[o]||{lang:e.language,user:e.user,size:e.size,link:e.link}});var t=[];for(var o in s)s.hasOwnProperty(o)&&t.push(s[o]);t.sort(function(e,s){return e.lang>s.lang?1:e.lang<s.lang?-1:0});for(var c=0;c<t.length;++c){var i=jQuery("#language-template").html(),o=t[c];i=i.replace("{{LANGUAGE}}",o.lang).replace("{{NAME}}",o.user).replace("{{SIZE}}",o.size).replace("{{LINK}}",o.link),i=jQuery(i),jQuery("#languages").append(i)}}var ANSWER_FILTER="!t)IWYnsLAZle2tQ3KqrVveCRJfxcRLe",COMMENT_FILTER="!)Q2B_A2kjfAiU78X(md6BoYk",answers=[],answers_hash,answer_ids,answer_page=1,more_answers=!0,comment_page;getAnswers();var SCORE_REG=/<h\d>\s*([^\n,]*[^\s,]),.*?(\d+)(?=[^\n\d<>]*(?:<(?:s>[^\n<>]*<\/s>|[^\n<>]+>)[^\n\d<>]*)*<\/h\d>)/,OVERRIDE_REG=/^Override\s*header:\s*/i;
```
```
body{text-align:left!important}#answer-list,#language-list{padding:10px;width:290px;float:left}table thead{font-weight:700}table td{padding:5px}
```
```
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="//cdn.sstatic.net/codegolf/all.css?v=83c949450c8b"> <div id="answer-list"> <h2>Leaderboard</h2> <table class="answer-list"> <thead> <tr><td></td><td>Author</td><td>Language</td><td>Size</td></tr></thead> <tbody id="answers"> </tbody> </table> </div><div id="language-list"> <h2>Winners by Language</h2> <table class="language-list"> <thead> <tr><td>Language</td><td>User</td><td>Score</td></tr></thead> <tbody id="languages"> </tbody> </table> </div><table style="display: none"> <tbody id="answer-template"> <tr><td>{{PLACE}}</td><td>{{NAME}}</td><td>{{LANGUAGE}}</td><td>{{SIZE}}</td><td><a href="{{LINK}}">Link</a></td></tr></tbody> </table> <table style="display: none"> <tbody id="language-template"> <tr><td>{{LANGUAGE}}</td><td>{{NAME}}</td><td>{{SIZE}}</td><td><a href="{{LINK}}">Link</a></td></tr></tbody> </table>
```
[Answer]
## JavaScript (ES6), 34 bytes
```
s=>s.replace(/(.*)-(.)ay$/,'$2$1')
```
### Test cases
```
let unpig =
s=>s.replace(/(.*)-(.)ay$/,'$2$1')
console.log(unpig("ello-hay")) // => hello
console.log(unpig("hello-world")) // => hello-world
console.log(unpig("hello")) // => hello
console.log(unpig("pple-aay")) // => apple
console.log(unpig("apple")) // => apple
console.log(unpig("ig-Stay")) // => ig-Stay
```
[Answer]
# [PHP](https://php.net/), 61 bytes
```
function f($v){echo preg_replace("#(.*)-(.)ay$#","$2$1",$v);}
```
[Try it online!](https://tio.run/##FcxBCoMwEEDRvaeQcRZJMYJuY/EoZRhGI0gyBC2I9Nhdp3b/39egZZw0aIWUl/gE1U0c0Qm@zEfkfU2xng2@7SUcUq1ZllcW3YjFQGO6h3Wms3RiAy3ggD20d@w/5Ub/o/XlG5Nj4iA/ "PHP – Try It Online")
# [PHP](https://php.net/), 46 bytes
without a function
```
<?=preg_replace("#(.*)-(.)ay$#","$2$1",$argn);
```
[Try it online!](https://tio.run/##HcuxCoAgEADQ3c84HTRUqNXMT4lDDh3EDrc@vNmi@fG48twTVxYKR@kRmBs5xBuCSMdHkQeVcxA3zKRBar8Yp73BW0mwoDa1gv2vCXM@/XIZc6UX "PHP – Try It Online")
[Answer]
# [Python 2](https://docs.python.org/2/), ~~48~~ 46 bytes
*-2 bytes thanks to xnor.*
These are anonymous lambda functions that can be assigned to, say `unpig`.
```
lambda s:[s,s[-3]+s[:-4]][s[-4]+s[-2:]=="-ay"]
```
[Try it online!](https://tio.run/##VY/BCsIwEETv/YpQhCp2L7WnQL/CYwyy2tgGYhKaiOTrYxop0bm92dlh1wY/G93Fl7ZyGi5R4fM2InGUudYxOPGjYxR6zlmifiXoKB@GGjDUPHrh/PWOTjgyEFaRpEYoZWDG0LRfnrPxNosa/6wNrFUCsORxNTaQE5x9meWqpJ96hTsHU@G0YTFASE7Fq@phFiKJ1KScSnPQLlJ7kv/ey0P8AA "Python 2 – Try It Online")
## Regex solution, 49 bytes
```
lambda s:re.sub('(.*)-(.)ay',r'\2\1',s)
import re
```
[Try it online!](https://tio.run/##VY9BCoMwEEX3OcXskhQj1KXgKbqspcSa6kBMwiRSPH2qFpHO7r35w/DDkkbvqjy7gEPTZqunrtcQazJlnDvBRXmRSpRSL7wg3lbtlRdRMpyCpwRkcjIxPV86mggN3Bmsw421Xo3byY/HXXw82f5PHRCCNUqfeb2JA3BQt7Tu2IOxtydAQAfn13pPBUKXYG8hUOYv "Python 2 – Try It Online")
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 15 bytes
```
D'-¡θ¦„ayQi¨¨Á¨
```
[Try it online!](https://tio.run/##AS4A0f8wNWFiMWX//0QnLcKhwq7DqMKm4oCeYXlRacKowqjDgcKo//9pZy1wYXkteWF5 "05AB1E – Try It Online")
`θ` is replaced by `®è` on TIO since it hasn't been pulled there yet.
[Answer]
# Python 2.7, ~~68~~ ~~55~~ 52 bytes
```
def up(s):print(s,s[-3]+s[:-4])[s[-4]+s[-2:]=="-ay"]
```
Uses a ternary-like operator.
-13 bytes thanks to officialaimm and an update in rules.
-3 Changed ternary operator. See <https://stackoverflow.com/a/470376/3210045>.
[Answer]
# [Lexurgy](https://www.lexurgy.com/sc), 29 bytes
```
p:
([]+)$1 \- []$2 ay=>$2 $1
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), ~~22~~ 17 bytes
```
ṖṖṙ-Ṗµṣ”-ṪḊ⁼⁾ayµ¡
```
[Try it online!](https://tio.run/##y0rNyan8///hzmlgNFMXSB3a@nDn4kcNc4HsVQ93dD1q3POocV9i5aGthxb@//8/M123ILFStzKxEgA "Jelly – Try It Online")
[Answer]
# [Perl 6](http://perl6.org/), 22 bytes
```
{S/(.+)\-(.)ay$/$1$0/}
```
Basic regular expression solution.
[Answer]
# [Python 3](https://docs.python.org/3/), ~~59~~ 60 bytes
* 1 byte added thanks to @Erik the Outgolfer: $ to ensure `ig-payyay` outputs the same and not `yig-pa`
```
lambda a:a[-3]+a[:-4]if re.search("-.ay$",a)else a
import re
```
[Try it online!](https://tio.run/##dcyxDoIwEMbxnadoGgeIHgtOJD4JMpxw0ialvZQa0wd3roA6YPTW3/0/jkE5W6WbZT2czsngeOlRYI0NVO0emxqOrb4KT@VE6DuVSygx7uQBCzITCcz0yM6H@SOx1zbk61QuyRgHCqMsCjFftkG16t150y/@A9/Zd8hsCPCzujVc8E@nB2CM8RWmh3XQYafoCQ "Python 3 – Try It Online")
[Answer]
# [Java (OpenJDK 8)](http://openjdk.java.net/), 146 bytes
```
s->{Matcher m=Pattern.compile("(.*)-(.)ay").matcher(s);String g="";while(m.find())g=m.group(1);return (g!=""?s.charAt(s.lastIndexOf('-')+1)+g:s);}
```
[Try it online!](https://tio.run/##lU/LTsMwELznK5YIqTbFRlwJLeKCxKECqUfEwU0cx8WxLXtdiKp@e3FpeRzJHLyr3Zn1zFpsBHNe2nXztte9dwFhnWc8oTY8SCU/@EUFV1cQO5dMAysJ2tYmNbLJDawGlFC7ZLEofFoZXUNtRIywEHm7LSDjNI8oMJeN0w30eUuWGLRVL68ggor0RD7g10CbbI3aWf5wam6Poks41jm0MIN9ZPPtQmDdyQD97FkgymB57XqvjSQl4ReUEU7FUFLeH3kk0up4A9SsLKv37kDteattQyhVs56r4JIn17QKElOwQNRZZt5FXnci3COJPCfFR9vIj6eWTNiETq/pVN3ky7v9d5bqJ9VyiCh77hJyn/9FY0nLhfdmIKU0xrHu4I/@T9B9Kd5dMM04zb/Z@ZVMjLCkFVviCP5XgowxsY04j0yNM@XFwIY/kl2xK/af "Java (OpenJDK 8) – Try It Online")
[Answer]
# [Japt](https://github.com/ETHproductions/japt), ~~18~~ 17 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
Just the same RegEx replacement as everyone else, first posted by [Arnauld](https://codegolf.stackexchange.com/a/127964/58974).
```
r"(.*)-(.)ay$"ÏiZ
```
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=ciIoLiopLSguKWF5JCLPaVo&input=ImlnLXBheS15YXki)
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~15~~ 14 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
I know there already is [a 15-bytes 05AB1E answer](https://codegolf.stackexchange.com/a/128064/52210). ~~I haven't found anything shorter yet, but since I found two 15-byters with a different approach, I figured I'd post them as well~~ EDIT: Found a 14-byter. But I'll still mention the two 15-byters either way:
```
œ6è…-ayÅ¿i¨¨Á¨
```
Very slow for larger inputs.
[Try it online](https://tio.run/##ASkA1v9vc2FiaWX//8WTNsOo4oCmLWF5w4XCv2nCqMKow4HCqP//aWctU3RheQ) or [verify all test cases](https://tio.run/##yy9OTMpM/V9TVmmvpPCobZKCkn2ly/9gMz1Pr0cNy3QTKw@3HtqfeWjFoRWHGw@t@F@r8z81JydfNyOxkisDzCrPL8pJgbC5CgpyUnUTgVKJIBZXZrpucAmQB1YHBCBNOYkqxbrpQAZQsiCxUrcysRIA). (The test suite uses `S6.IJ` instead of `œ6è`, since it's A LOT faster, but basically does the same. Unfortunately, builtin `.I` doesn't work on strings - apparently.)
```
4(è«…ay-Å¿i¨¨Á¨
```
[Try it online](https://tio.run/##ASoA1f9vc2FiaWX//zQow6jCq@KApmF5LcOFwr9pwqjCqMOBwqj//2lnLVN0YXk) or [verify all test cases](https://tio.run/##yy9OTMpM/V9TVmmvpPCobZKCkn3l4Qn/TTQOrzi0@lHDssRK3cOth/ZnHlpxaMXhxkMr/tfq/E/NycnXzUis5MoAs8rzi3JSIGyugoKcVN1EoFQiiMWVma4bXALkgdUBAUhTTqJKsW46kAGULAAaX5lYCQA).
```
`«ŠŠ«…ay-QiJÁëI
```
[Try it online](https://tio.run/##ASgA1/9vc2FiaWX//2DCq8WgxaDCq@KApmF5LVFpSsOBw6tJ//9pZy1TdGF5) or [verify all test cases](https://tio.run/##yy9OTMpM/V9TVmmvpPCobZKCkn3l/4RDq48uOLrg0OpHDcsSK3UDM70ONx5eXfm/Vkcz5n9qTk6@bkZiJVcGmFWeX5STAmFzFRTkpOomAqUSQSyuzHTd4BIgD6wOCECachJVinXTgQygZAHQ7MrESgA).
**Explanation:**
```
œ # Get all permutations of the (implicit) input-string
6è # Only leave the 7th one (0-based 6th)
…-ayÅ¿i # If this permutation ends with "-ay":
¨¨ # Remove the last two characters from the (implicit) input-string ("ay")
Á # Rotate it once towards the right
¨ # Rotate the last character ("-")
# (after which it is output implicitly as result)
# (implicit else)
# (implicitly output the implicit input unchanged)
4(è # Get the 0-based -4'th character of the (implicit) input
« # Append it to the (implicit) input
…ay-Å¿i # If this string ends with "ay-"
¨¨Á¨ # Same as above
` # Push all characters of the (implicit) input separately to the stack
« # Merge the last two together
ŠŠ # Triple-swap the last three items twice (a,b,c to b,c,a)
« # Merge the top two together
…ay-Qi # If this is equal to "ay-":
J # Join the other characters on the stack together
Á # And rotate it once towards the right
ë # Else:
I # Push the input
# (after which the top of the stack is output implicitly as result)
```
[Answer]
# [Pip](https://github.com/dloscutoff/pip), 18 bytes
```
a~`-(.)ay$`?$1.$`a
```
[Try It Online!](https://dso.surge.sh/#@WyJwaXAiLCJfIC4gXCIgIC0+ICBcIiAuIHsiLCJhfmAtKC4pYXkkYD8kMS4kYGEiLCJ9IE0gW1xuIFwiZWxsby1oYXlcIlxuIFwiaGVsbG8td29ybGRcIlxuIFwiaGVsbG9cIlxuIFwicHBsZS1hYXlcIlxuIFwiYXBwbGVcIlxuIFwiaWctU3RheVwiXG4gXCJlbGxvLS0tLWhheVwiXG4gXCJsYSRzLWdheVwiXG4gXCJpZy1wYXkteWF5XCJcbl0iLCIiLCItbCJd)
### Explanation
```
a~`-(.)ay$`?$1.$`a
a First command-line argument
~ Find first match
`-(.)ay$` of this regex (capture the letter in group 1)
? If a match was found:
$1 Contents of group 1
. Concatenated with
$` Portion of the string before the match
Else:
a The string unchanged
```
] |
[Question]
[
**Note:** I have accepted an answer, but I'm willing to accept a better answer if it comes.
Write a program that computes operations on sets. You may take input either from standard input or from command line arguments. Your program must be able to compute unions, intersections, relative complements, and cartesian products. Output should be the result of these operations.
You may not use built-in functions to do the work for you.
## Input Format
`<A>` and `<B>` represent sets. The format for sets can be anything that is convenient, as long as it *actually represents a set* (no taking advantage of this "looseness"). The elements of a set don't always have to be in the same order because sets aren't ordered. You define what kind of object these elements can be (integers, letters, ...).
* Union: `union <A> <B>`
* Intersection: `intersect <A> <B>`
* [Relative complement](http://en.wikipedia.org/wiki/Complement_(set_theory)#Relative_complement) (difference of sets): `complement <A> <B>`
* Cartesian product: `product <A> <B>` (format for ordered pairs can be anything convenient -- don't take advantage of this "looseness" either)
**For info on what these operations even are, see [the Wikipedia page on it](http://en.wikipedia.org/wiki/Set_(mathematics)#Basic_operations).**
[Answer]
### GolfScript, 73 characters
```
.' '?:^>~`"~{:^1$?0<{[^]+}*}/
{\\`{[\\]}+/}+%
{?0<!}+,
{?0<}+,"n/^2/2-=~`
```
Uses non of the GolfScript set operators and should work on all valid GolfScript objects. Input must be given on STDIN, for format see also the [online examples](http://golfscript.apphb.com/?c=IyBURVNUIENBU0VTCiM7InVuaW9uIFsxIDIgM10gWzIgMyA0XSIKIzsiaW50ZXJzZWN0IFsxIDIgM10gWzIgMyA0XSIKIzsiY29tcGxlbWVudCBbMSAyIDNdIFsyIDMgNF0iCiM7InByb2R1Y3QgWzEgMiAzXSBbMiAzIDRdIgoKOyJ1bmlvbiBbMSAyIDNdIFsyIDMgNF0iCgouJyAnPzpePn5gIn57Ol4xJD8wPHtbXl0rfSp9Lwp7XFxge1tcXF19Ky99KyUKez8wPCF9KywKez8wPH0rLCJuL14yLzItPX5gCg%3D%3D&run=true).
```
> union [1 2 3] [2 3 4]
[1 2 3 4]
> intersect [1 2 3] [2 3 4]
[2 3]
> complement [1 2 3] [2 3 4]
[1]
> product [1 2 3] [2 3 4]
[[1 2] [1 3] [1 4] [2 2] [2 3] [2 4] [3 2] [3 3] [3 4]]
```
The code does not use GolfScript's set operators but implements them using loops.
```
.' '? # find the first space character in the input
:^> # save the position to variable ^ and remove from start of string
~ # evaluate the string (i.e. get two sets as arguments)
` # transform the second set into a string
"..."n/ # generates an array of 4 strings which represent the set operations
# (see below)
^2/2- # take position of the first space (i.e. length of the operator)
# divide by two, subtract two (i.e. union->0, intersect->2,
# complement->3, product->1)
=~ # take the corresponding command string and evaluate on the arguments
` # transform the result back into a string representation
### union
~{ # evaluate the second argument (i.e. revert the ` operation)
# and loop over all items
:^ # save item to variable ^
1$? # is it contained in the first set?
0<{ # if no then
[^]+ # add to set
}* # end if
}/ # end loop
### intersection
{ # prepend second argument to code block {...}+ and filter the first set
?0<! # is the current item contained in the second set? if yes, keep
}+, # end filter block
### complement
{ # prepend second argument to code block {...}+ and filter the first set
?0<! # is the current item contained in the second set? if no, keep
}+, # end filter block
### product
{ # prepend second argument to code block {...}+ and map on first set
\`{ # take current item and prepend to code block `{...}+ and iterate
[\] # swap both items (item of second set + item of first set) and
# build a tuple of them
}+/ # end loop
}+% # end map
```
[Answer]
## Ruby, 97 characters
```
$_,a=$*;A,B=eval a
p (~/c/?B.map{|i|~/d/?A.map{|j|[i,j]}:!A.index(i)^~/m/?p: i}:A+B).uniq.compact
```
Usage examples:
```
$ ruby set.rb union [[1,2,3],[8]]
[1, 2, 3, 8]
$ ruby set.rb complement [[1,2,3,6,7],[7,2,1,5]]
[5]
$ ruby set.rb intersect [[1,2,3,6,7],[7,2,1,5]]
[7, 2, 1]
$ ruby set.rb product [[1,2],[7,5,2]]
[[[7, 1], [7, 2]], [[5, 1], [5, 2]], [[2, 1], [2, 2]]]
```
[Answer]
# GolfScript, 77 characters
```
(\~@99-:x{6x={&}{13x={'"#{['@','*+'].product ['+\','*+']}"'+~}{|}if}if}{-}if`
```
Sample inputs and outputs:
```
$ echo "union [1 2 3] [2 3 4]" | golfscript setops.gs
[1 2 3 4]
$ echo "intersect [1 2 3] [2 3 4]" | golfscript setops.gs
[2 3]
$ echo "complement [1 2 3] [2 3 4]" | golfscript setops.gs
[1]
$ echo "product [1 2 3] [2 3 4]" | golfscript setops.gs
"[[1, 2], [1, 3], [1, 4], [2, 2], [2, 3], [2, 4], [3, 2], [3, 3], [3, 4]]"
```
---
Okay, now time to explain this gobbledygook. First, here's an explanation of how it chooses which one of the four blocks (union, intersect, complement, product) to execute.
I noticed something convenient about these commands. They each begin with a unique letter (`u`, `i`, `c`, `p`). Therefore, we only care about this first letter.
Now, to make the code even shorter, these can be converted into ASCII codes (117, 105, 99, 112). Here's an explanation of the main logic of the program:
```
( # grab the ASCII code of the first letter of the input string
\~ # evaluate the rest of the string. GS will ignore "nion", "tersect", etc.
@ # stack is now [A B CMD]
99-:x # subtract 99 for shorter code. Now 'uicp' maps to [18 6 0 13]
```
After this comes a huge chain of `if`s. With the set operation logic removed, it looks like this:
```
{6x={INTERSECT_CODE}{13x={PRODUCT_CODE}{UNION_CODE}if}if}{COMPLEMENT_CODE}if`
```
Converted to a more readable C-like format, it looks like this:
```
if (x) {
if (x == 6) {
INTERSECT_CODE
} else {
if (x == 13) {
PRODUCT_CODE
} else {
// x must be 18
UNION_CODE
}
}
} else {
// x is 0
COMPLEMENT_CODE
}
```
Now, it's just a matter of looking at the code for the set operations. Most of them are fairly straightforwards: `&` for intersect, `|` for union, and `-` for complement. However, GolfScript doesn't have a built-in product operator, so I had to build some Ruby code for that. Here's an explanation of that mess:
```
'"#{[' # stack: [1 2 3] [2 3 4] '"#{['
@','*+ # stack: [2 3 4] '"#{[1,2,3'
'].product ['+ # stack: [2 3 4] '"#{[1,2,3].product ['
\','*+ # stack: '"#{[1,2,3].product [2,3,4'
']}"'+ # stack: '"#{[1,2,3].product [2,3,4]}"'
~ # evaluate
```
Simply tack on a ``` to show array output correctly, and it's done!
[Answer]
# Bash+coreutils, 200 bytes
I'm not exactly sure what *"You may not use built-in functions to do the work for you"* means, but I am assuming it means no use of APIs **specifically** designed for handling sets. Some of the coreutils used here might be considered to come close, but I am asserting that these utilities operate on files and lines of files, and not specifically on sets:
```
f()(tr \ \\n<<<$1|sort -u)
c()(comm -2$1 <(echo "$a") <(echo "$b"))
a=`f "$2"`
b=`f "$3"`
case $1 in
u*)sort -u<<<"$a
$b";;i*)c 1;;c*)c 3;;p*)eval printf '%s\\n' {${a//$'\n'/,}},{${b//$'\n'/,}};;esac
```
The **union**, **intersect** and **complement** cases are relatively uninteresting calls to `sort` and `comm`.
The **product** case uses [bash brace expansion](https://www.gnu.org/software/bash/manual/html_node/Brace-Expansion.html). For example `echo {1,2,3},{a,b}` produces the output `1,a 1,b 2,a 2,b 3,a 3,b`. The catch here is that [brace expansion normally occurs before variable expansion](https://www.gnu.org/software/bash/manual/html_node/Shell-Expansions.html#Shell-Expansions), so the whole thing must be `eval`ed so the variables are effectively expanded first.
Example output:
```
$ ./sets.sh union "1 2 3 4 3 2 1" "2 4 6 4 6"
1
2
3
4
6
$ ./sets.sh intersect "1 2 3 4 3 2 1" "2 4 6 4 6"
2
4
$ ./sets.sh complement "1 2 3 4 3 2 1" "2 4 6 4 6"
1
3
$ ./sets.sh product "1 2 3 4 3 2 1" "2 4 6 4 6"
1,2
1,4
1,6
2,2
2,4
2,6
3,2
3,4
3,6
4,2
4,4
4,6
$
```
[Answer]
## Haskell, ~~123~~ 96 bytes
Saved the `import Control.Applicative` part since `liftA2` is now in `Prelude`.
Not sure whether this is considered cheating, but:
```
union=liftA2(||)
intersect=liftA2(&&)
complement f=liftA2(&&)f.(not.)
product f g (x,y)=f x&&g y
```
If allowed, `product` could be curried to save extra 1 byte.
The key idea is to implement sets as a predicate (`a -> Bool`) that returns `True` if the element is present. This can represent not only finite sets, but also infinite sets.
Being possibly infinite, the outputted set cannot be represented in a string, but it can be queried:
```
Prelude> union (\_->False) (\_->False) 0
False
Prelude> union (\_->False) (\_->True) 0
True
Prelude> union (\_->False) even 0
True
Prelude> union (\_->False) odd 0
False
Prelude> union even odd 0
True
Prelude> intersect (\_->False) (\_->True) 0
False
Prelude> intersect (\_->True) even 0
True
Prelude> intersect odd even 0
False
Prelude> complement (\_->True) even 0
False
Prelude> complement (\_->True) odd 0
True
Prelude> product even odd (0,0)
False
Prelude> product even odd (0,1)
True
Prelude> product even odd (1,1)
False
```
[Answer]
# Axiom, 186 bytes
```
union(a,b)==removeDuplicates concat(a,b)
intersection(a,b)==[x for x in a|member?(x,b)]
complement(a,b)==[x for x in a|~member?(x,b)]
product(a,b)==concat[[[x,y]for y in b]for x in a]
```
All input for above function has to be List [of ints] that have not repetition (for to be a set).
Here the necessary functions for see if one List is a set and for see if two set are equals:
```
isEq?(a,b)==(#a~=#b=>false;(sort(a)=sort(b))@Boolean)
isSet?(a)==isEq?(removeDuplicates(a),a)
```
Some results
```
(9) -> union([1,2,3], [2,3,4])
(9) [1,2,3,4]
Type: List PositiveInteger
(10) -> intersection([1,2,3], [2,3,4])
(10) [2,3]
Type: List PositiveInteger
(11) -> complement([1,2,3], [2,3,4])
(11) [1]
Type: List PositiveInteger
(12) -> product([1,2,3], [2,3,4])
(12) [[1,2],[1,3],[1,4],[2,2],[2,3],[2,4],[3,2],[3,3],[3,4]]
Type: List List PositiveInteger
```
[Answer]
# TypeScript's Type System, No Ignore, 353 339 222 219 Bytes
```
type X<S>=S extends`${infer O extends"u"|"i"|"c"|"p"}${any} ${infer A} ${infer B}`?{u:X<A|B>,i:X<A>&X<B>,c:Exclude<X<A>,X<B>>,p:{[K in X<A>]:{[I in X<B>]:[K,I]}}[X<A>][X<B>]}[O]:S extends`${infer A},${infer R}`?A|X<R>:S
```
## Explanation
We can check the first character (infer O) to check if it's union, intersect, complement, or product. However, if it doesn't extend it, we can parse the array of values provided (as this is a self-recursive function). Set operations are native to TypeScript's Type System, so implementing each one is trivial, with union and intersect being native TS operators (`|` and `&` accordingly), cartesian joins using a joined json object, and complement using the `Exclude` type.
[TypeScript Playground](https://www.typescriptlang.org/play?#code/PTAEDkHtQSwcwHaQE4FNQDdXIM40ggFCEAuAngA7oAaAPAMoB8AvPaKgB4moIAmOAAwAkAbxgIAZtlAB5dlx78ARAFclAHyUwNSgMY6KSgL6iAhgjJHQo8VOSgAglZuTpAISMCA-CJUAuOgd1N0YAGhgA2gdGADI6ENDdPwBRDl0AGxVeVFpAsPjGMIo-EQBtAGlYBFA8gF0S0oBJKpraEPqK0MbaoyNSuv62xh7SmXq2Tm4+QRc7RyNQ2ekAJU8vILplxj96YhBQbhwSUF1THFQcYnIqUAAVC5IcUGZQEUJQUBUEfAQ-VtVvgRQABGUIAJlCAGZQJDQgAWUIAViUjHeoH2AD0vGjxNxcKhdCQ-nQtAg8edCSDwVCYfCkSi0ZjsR9dJAALYUdKoNk8In-Vkcrk8slUiHQ2EI5Goj5MtEUZCQXgqQnE2hKeWK5XHUFi2mShkysBYwhGIA)
[Answer]
## PowerShell, 131
```
param($o,[array]$a,[array]$b)switch($o[0]){'u'{$a+$b|sort -u}'i'{$a|?{$_-in$b}}'c'{$b|?{$_-notin$a}}'p'{$a|%{$x=$_
$b|%{"$x,$_"}}}}
```
Fairly straightforward rendition of all the operators. Sets are given as comma-separated lists and the script takes arguments:
```
PS> .\set.ps1 union 1,2,3 8
1
2
3
8
PS> .\set.ps1 intersect 1,2,3,6,7 7,2,1,5
1
2
7
PS> .\set.ps1 complement 1,2,3,6,7 7,2,1,5
5
PS> .\set.ps1 product 1,2 7,5
1,7
1,5
2,7
2,5
```
[Answer]
# [R](https://www.r-project.org/), 105 bytes
```
function(A,B)list(U<-unique(c(A,B)),U[U%in%A&U%in%B],A[!A%in%B],cbind(rep(A,sum(B|1)),rep(B,e=sum(A|1))))
```
[Try it online!](https://tio.run/##K/qfbqP7P600L7kkMz9Pw1HHSTMns7hEI9RGtzQvs7A0VSMZLKipExodqpqZp@qoBqacYnUcoxUdoczkpMy8FI2i1AKg2uLSXA2nGkOgDhDfSSfVFiTiCBLR1Pz/HwA "R – Try It Online")
Returns a `list` with four elements, the Union, the Intersection, the Difference, and the Cartesian Product, in that order.
Takes input as an R vector of integers.
The Union is the unique values in the concatenation of the two vectors, `U=unique(c(A,B))`.
The Intersection is the subset of the Union where `x in A & x in B`, so `U[U%in%A&U%in%B]`.
The Set Difference is those `a in A` where `a notin B`, so `A[!A%in%B]`
The Cartesian Product is returned as a matrix where each row is an ordered pair. It repeats `A` `|B|` times and the elements of `B` `|A|` times each, then binds them together as matrix columns, i.e.:
```
cbind( # bind as matrix columns
rep(A,sum(B|1)), # repeat A |B| times (concatenate |B| copies of A)
rep(B,e=sum(A|1))) # repeat each element of B |A| times
```
[Answer]
# APL NARS 100 chars
```
union←{∪⍺,⍵}⋄intersection←{(⍺∊⍵)/⍺}⋄complement←{(∼⍺∊⍵)/⍺}
∇r←x product y;i;j
r←⍬⋄:for i:in x⋄:for j:in y⋄r←r,⊂(i,j)⋄:endfor⋄:endfor
```
the symbol ∪ in union above means "each elment appear one time only"
so it doesn't make union. They are about 135 chars but if i cut the names of anonimous functions
it would be 100 chars(25+19+56=100 chars). Test
```
1 2 3 union 2 3 4
1 2 3 4
1 2 3 intersection 2 3 4
2 3
1 2 3 complement 2 3 4
1
1 2 3 product 2 3 4
1 2 1 3 1 4 2 2 2 3 2 4 3 2 3 3 3 4
```
The APL functions for doing above union, intersection, complement and product could be:
```
sysunion←∪
sysintersection←∩
syscomplement←∼
sysproduct←{,⍺∘.,⍵}
1 2 3 sysunion 2 3 4
1 2 3 4
1 2 3 sysintersection 2 3 4
2 3
1 2 3 syscomplement 2 3 4
1
1 2 3 sysproduct 2 3 4
1 2 1 3 1 4 2 2 2 3 2 4 3 2 3 3 3 4
x←1 3
y←2 3
x sysproduct y
1 2 1 3 3 2 3 3
```
] |
[Question]
[
The answer to [this question](https://stackoverflow.com/q/12850950/174728) is much too long
Your challenge is to write a **partitioning function** in the smallest number of characters.
Input example
```
['a', 'b', 'c']
```
Output example
```
[(('a'),('b'),('c')),
(('a', 'b'), ('c')),
(('a', 'c'), ('b')),
(('b', 'c'), ('a')),
(('a', 'b', 'c'))]
```
The input can be a list/array/set/string etc. whatever is easiest for your function to process
You can also choose the output format to suit yourself as long as the structure is clear.
Your function should work for at least 6 items in the input
[Answer]
### GolfScript, 51 characters
```
{[[]]\{[.;]`{1$[1$]+@@`1$`{[2$]-@@[+]+}++/}+%}/}:P;
```
The script defines a variable `P` which takes an array from top of the stack and pushes back a list of all partitions, e.g.
```
[1 2] P # => [[[1] [2]] [[1 2]]]
["a" "b" "c"] P # => [[["a"] ["b"] ["c"]] [["b"] ["a" "c"]] [["a"] ["b" "c"]] [["a" "b"] ["c"]] [["a" "b" "c"]]]
```
It does also work on larger lists:
```
6, P ,p # prints 203, i.e. Bell number B6
8, P ,p # 4140
```
You may [perform own tests online](http://golfscript.apphb.com/?c=e1tbXV1ce1suO11gezEkWzEkXStAQGAxJGB7WzIkXS1AQFsrXSt9KysvfSslfS99OlA7CgpbMSAyXSBQIHAKWyJhIiAiYiIgImMiXSBQIHA%3D).
[Answer]
## J, 51 characters
```
([:<a:-.~])"1~.((>:@i.#:i.@!)#l)<@;/."1[l=:;:1!:1[1
```
Takes input from the keyboard, items separated by spaces:
```
([:<a:-.~])"1~.((>:@i.#:i.@!)#l)<@;/."1[l=:;:1!:1[1
a b c
+-----+------+------+------+-------+
|+---+|+--+-+|+--+-+|+-+--+|+-+-+-+|
||abc|||ab|c|||ac|b|||a|bc|||a|b|c||
|+---+|+--+-+|+--+-+|+-+--+|+-+-+-+|
+-----+------+------+------+-------+
```
[Answer]
## GolfScript (43 chars)
```
{[[]]:E\{:v;{:^E+1/{^1$-\[~[v]+]+}/}%}/}:P;
```
or
```
{[[]]:E\{:v;{:^E+1/{^1$-\{[v]+}%+}/}%}/}:P;
```
Same input format, output format, and function name as Howard's solution. There's no brute forcing: this takes the simple iterative approach of adding one element from the input list to the partition each time round the outer loop.
[Answer]
# Haskell, ~~90~~ ~~87~~ ~~71~~ 66
Saved 5 bytes thanks to [nimi](https://codegolf.stackexchange.com/users/34531/nimi).
```
x#[]=[[[x]]]
x#(y:s)=((x:y):s):map(y:)(x#s)
p=foldr((=<<).(#))[[]]
```
Example:
```
*Main> p "abc"
[["abc"],["bc","a"],["ac","b"],["c","ab"],["c","b","a"]]
```
[Answer]
# Python 2, 131 bytes
```
def P(L):
if len(L)<2:yield[L];return
for p in P(L[1:]):
for n,s in enumerate(p):yield p[:n]+[[L[0]]+s]+p[n+1:]
yield[[L[0]]]+p
```
[**Try it online**](https://tio.run/nexus/python2#JY4xCsMwDEXn@BQaHeyhSTu57Q08dBcaClHAkKrGcSA9fWqRTTzpff1j4hleNvbBQJphYWnzYwy/xMuEke6F61bEwPwtkCGJHuMQqAmdMvGrUpbtw@Vd2eb@lCFjEHKIES9EbiWXUVwzTXeGn4uGj/jEwY/@6m9kNHPXxCWt1Woz/ZRLkmr3/vgD%20Try%20it%20online!)
Uses [this algorithm](https://stackoverflow.com/a/30134039/2415524).
] |
[Question]
[
Given a number N, write the shortest complete program to find the number of [square-free integers](http://en.wikipedia.org/wiki/Square-free_integer) below N.
```
Sample Input
100000
Sample Output
60794
```
Constraints:
1. Should work for all positive N below 1,000,000
2. Should not take more than 10 secs.
3. Please do not use built in functions, please.
[Answer]
## Python 2: 71 chars
```
i=n=input()
A=[1]*n
while~-i:A[i*i::i*i]=~-n/i/i*[0];i-=1
print~-sum(A)
```
Basically an optimization of [Keith Randall's solution](https://codegolf.stackexchange.com/a/919/20260) of zeroing out numbers that are multiples of squares. The main improvement is directly zeroing out the sublist `A[i*i::i*i]`, which requires awkwardly calculating its length or else Python refuses to do the slice assignment.
Lots of `~-` are used for `-1`. The `~-sum(A)` corrects for `0` being falsely counted as a squarefree number.
[Answer]
## J, 21 chars
```
+/(]=&#~.)@:q:"0>:i.N
```
Checks for each integer from 1 to N if any prime factor appears more than once.
eg:
```
+/(]=&#~.)@:q:"0>:i.10000
6083
+/(]=&#~.)@:q:"0>:i.100000
60794
```
Takes ~3secs for N=1,000,000 (@2GHz,1core)
[Answer]
## Python, 84 characters
```
n=input()
R=range(n)
A=[1]*n
for i in R[2:]:
for x in R[::i*i]:A[x]=0
print sum(A)
```
[Answer]
**Java Solution**
```
import java.io.*;
public class Main{
public static void main(String[] args)throws Exception {
int N=Integer.parseInt(new BufferedReader(new InputStreamReader(System.in)).readLine());
int list[]=new int[N];
for (int i=0;i<N;i++){
list[i]=(i+1);
}
for (int i=1;i<N;i++){
if (Math.sqrt(list[i])-Math.floor(Math.sqrt(list[i]))==0){
for(int j=i;j<N;j+=(i+1)){
list[j]=-1;
}}}
int c=0;
for (int i=0;i<N;i++){
if (list[i]!=-1){
c++;
}}System.out.println(c);}}
```
IDEONE <http://ideone.com/Yf467>
[Answer]
# [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 24 bytes
```
Count[√Range@#,_^_|1]&
```
[Try it online!](https://tio.run/##y00syUjNTSzJTE78n2b73zm/NK8k@lHHrKDEvPRUB2Wd@Lj4GsNYtf8BRZlAiTQHQwMQiP0PAA "Wolfram Language (Mathematica) – Try It Online")
`SquareFreeQ` is too long anyways.
[Answer]
# [APL (Dyalog Extended)](https://github.com/abrudz/dyalog-apl-extended), 11 bytes
```
+/≡∘∪⍨⍤⍭¨⍤⍳
```
[Try it online!](https://tio.run/##SyzI0U2pTMzJT9dNrShJzUtJTflfra1frfGoa9GjzoWPOlZpPupd@6h3a@2hFY96N4MYXEB5FOklQBVw2f/a@mCJGUC5R70rELJAevP/tEdtEx719j3qan7Uu@ZR75ZD640ftU181Dc1OMgZSIZ4eAb/T1MwNAABAA "APL (Dyalog Extended) – Try It Online")
Bubbler's tacit form. (-4 bytes)
-1 byte from Adám.
# [APL (Dyalog Extended)](https://github.com/abrudz/dyalog-apl-extended), 16 bytes
```
{+/{(⊢≡∪)⍭⍵}¨⍳⍵}
```
[Try it online!](https://tio.run/##SyzI0U2pTMzJT9dNrShJzUtJTfn/v1pbv1rjUdeiR50LH3Ws0nzUu/ZR79baQyse9W4GMf6nPWqb8Ki371FX86PeNY96txxab/yobeKjvqnBQc5AMsTDM/h/moKhAQgAAA "APL (Dyalog Extended) – Try It Online")
Same approach as the J answer, `100000` runs under 10 secs on tio, so it should be all good.
## Explanation
```
{+/{(⊢≡∪)⍭⍵}¨⍳⍵}
{(⊢≡∪)⍭⍵} square-free checking function
{ ⍭⍵} prime factors of ⍵
(⊢≡∪) are the unique values equal to the originals?
function ends
¨⍳⍵ map function to range 1-n
+/ sum the resulting boolean array
```
[Answer]
# Python - 105 bytes
```
s=input()
C=set()
for q in [k*k for k in range(2,s+1)]:
i=1
while q*i<=s:C.add(q*i);i+=1
print s-len(C)
```
[Answer]
# Ruby - ~~119~~ 114
```
I=gets.to_i
m=[]
(s=->i{(I>i*i)?s[i+1]+[i*i]:[]})[2].map{|s|(1..I).map{|x|s*x<I||break;m<<s*x}}
p ([*1...I]-m).size
```
[Answer]
## C
**144 Chars**
```
#define m 1000001
x[m];
main(s,o,f){
for(o=2;o*o<m;o++)
for(f=s=o*o;f<m;f+=s)x[f]=1;
scanf("%d",&f);
for(s=0,o=1;o<f;o++)if(!x[o])s++;
printf("%d",s);
}
```
Instantaneous Solution on my crummy PC! :)
[Answer]
# Java - 278 Characters
A golfed version of the [Java answer](https://codegolf.stackexchange.com/a/897/32114) already demonstrated here without changing the spirit of the answer, because the original poster's idea golfed could have saved 50%, which is huge compared to most other languages!
```
class T {public static void main(String[] a) {int n,i,j;double k;n=Integer.parseInt(a[0]);int l[]=new int[n];for(i=0;i<n;)l[i]=1+i++;for (i=1;i<n;i++) {k=Math.sqrt(l[i]);if(k==Math.floor(k))for (j=i;j<n;j+=i+1)l[j]=-1;}j=0;for(i=0;i<n;)if(l[i++]!=-1)j++;System.out.println(j);}}
```
Specifically, a few Java golfing tricks were used to optimize this:
* Removed long variable names
* Removed the use of a Reader in favor of using an argument (saves a huge amount of characters, including import, Exception handling, and casting the reader in general)
* Removed extra brackets and parentheses using single-line actions for ifs and fors where applicable
* Declare ints beforehand together to reduce calls to int
* Declare a double and optimize square calculation
* Extracted ++ where possible
This shows that the original ungolfed solution of 565 characters can be brought down to a very respectable <300 character answer even with a more structured language like Java.
### Ungolfed
```
class T {
public static void main(String[] a) {
int n, i, j;
double k;
n = Integer.parseInt(a[0]);
int l[] = new int[n];
for (i = 0; i < n;)
l[i] = 1 + i++;
for (i = 1; i < n; i++) {
k = Math.sqrt(l[i]);
if (k == Math.floor(k))
for (j = i; j < n; j += i + 1)
l[j] = -1;
}
j = 0;
for (i = 0; i < n;)
if (l[i++] != -1)
j++;
System.out.println(j);
}
}
```
[Answer]
# GNU coreutils, 44 bytes
```
seq $1|factor|sed '$d;/\( .*\)\1\b/d'|wc -l
```
This factors every number up to N, removes the last line (as we're only counting results strictly less than N), and removes any line with a repeated word. Finally, we count the remaining lines.
The regular expression `\( .*\)\1\b` looks over-generous, but it takes advantage of what we know about the output of `factor` - the factors will be in ascending order, with exactly one space between each.
With N=1,000,000, this completes on my machine in about ¼ second.
[Answer]
# [Japt](https://github.com/ETHproductions/japt) [`-x`](https://codegolf.meta.stackexchange.com/a/14339/), 8 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
```
õ_=k)eZâ
```
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LXg&code=9V89ayllWuI&input=MTAwMDAw)
```
õ_=k)eZâ :Implicit input of integer U
õ :Range [1,U]
_ :Map each Z
= : Reassign to Z
k : Prime factors of Z
) : End reassignment
e : Test equality with
Zâ : Z deduplicated
:Implicit output of sum of resulting array
```
] |
[Question]
[
I'm trying to shorten a bash solution to a Code Golf challenge, which requires an output of `true` or `false`. I've managed to condense the key piece of the code down to a substring check, to determine if the provided argument, `$1`, is a substring of a particular hard-coded fixed string, of the form:
```
[[ FIXEDSTRING = *$1* ]]&&echo true||echo false
# And a minor improvement to shave a character on the test:
[[ FIXEDSTRING =~ $1 ]]&&echo true||echo false
```
**My question is, is there some clever way to shorten this, either in general, or for the specific case of converting success to `true` and failure to `false`?**
In a language like Python, I'd use:
```
# Shortest solution without imports I know of
str(sys.argv[1]in"FIXEDSTRING").lower() # Also feels a little long, kinda
# curious if there is a better way
# Shorter when json is already imported for some other purpose, saves a character (more if
# json aliased or dumps denamespaced via from json import*):
json.dumps(sys.argv[1]in"FIXEDSTRING")
```
for the specific case of "success is `true`, failure is `false`", and one of:
```
# When string lengths close enough for stepped slicing to work, only 3 characters longer
# than the true/false specific solution
"ftarlusee"[sys.argv[1]in"FIXEDSTRING"::2]
# When string lengths aren't compatible for stepped slicing,
("false","true")[sys.argv[1]in"FIXEDSTRING"]
```
when I need to select between arbitrary strings, not just `true`/`false`.
But AFAICT:
1. `bash` has no concept of converting from success/failure to a specific string (without relying on `if`/`then`/`fi`,`case`/`esac` or `&&`/`||` and manually running `echo` with a literal string for each string option)
2. `bash` arrays can't be used "anonymously", and the array indexing and slicing syntax is so verbose you can't save any characters this way (e.g. `a=(true false);[[ FIXEDSTRING = *$1* ]];echo ${a[$?]}` is six characters longer than my current approach; useful if I needed to convert exit status to true/false in multiple places, but not for a one-off use)
3. Stepped slicing of a string isn't a thing.
[Answer]
Here's a slightly shorter method in pure Bash. It doesn't beat the `expr` based method, but it doesn't use any utils.
```
false
[[ FIXEDSTRING =~ $1 ]]&&true
echo $_
```
[Answer]
This one is the **same size** as the `expr` method while still being **pure Bash**. It takes advantage of `$_` and the fact that `true`/`false` are builtins that simply returns the status you would expect.
```
FIXEDSTRING
${_/*$1*}true||false
echo $_
```
##### Explanation:
* "FIXEDSTRING" gets stored into `$_` by attempting to execute it with no args.
* If $1 is a substring of "FIXEDSTRING", then it will be removed in the pattern replacement and allows Bash to execute the `true` builtin.
* Otherwise, the pattern replacement will result in no change to "FIXEDSTRING" if it's not a substring, thus executing `FIXEDSTRINGtrue`, which is not a valid command and fails through to executing `false`. Thus putting either "true" or "false" into `$_` based on the pattern replacement result.
* `$_` is then echoed out.
[Answer]
I found one way to improve on this using [the `expr` command](https://www.man7.org/linux/man-pages/man1/expr.1.html); not `bash` itself, but at least a GNU coreutil so it exists pretty universally (and more importantly, on the Code Golf test bed):
```
expr true \& FIXEDSTRING : .*$1 \| false
```
`FIXEDSTRING : .*$1` is a regex pattern match; it's implicitly anchored with a leading `^`, thus the need for the `.*` in front of `$1` (probably would need to be `.\*$1` if there was a possibility of a file with a name matching the pattern). `true \&` will evaluate to the string `true` if the pattern match succeeds, and `0` otherwise, which, when paired with `\| false`, will replace all cases where it evaluated to `0` with the string `false`. Shaves off seven characters from my original approach (and six characters relative to the slightly shorter version I updated the question with, using `=~` to avoid a pair of `*`s).
If anyone can come close to that with pure `bash`, or beat it using near-universally available tools like `expr`, let me know; I'll happily accept such an answer.
[Answer]
Here's an option that abuses the filesystem for 41 bytes:
```
echo true>FIXEDSTRING
dd<*$1*||echo false
```
[Attempt This Online!](https://ato.pxeger.com/run?1=m70kKbE4Y8GCpaUlaboWNzVTkzPyFUqKSlPt3DwjXF2CQ4I8_dy5UlJstFQMtWpqwNJpiTnFqRANUH0ropVAqpVioXwA)
This requires that your fixed string is not empty, `.`, `..`, nor contains `/`.
[Answer]
Found a `sed`-based solution that beats `expr` significantly. Obviously not a `bash` built-in, but it's using solely portable `sed` features AFAICT so it should be near universally available:
```
sed "/$1/ctrue
cfalse"<<<FIXEDSTRING
```
`/$1/ctrue` selects "lines" (there's only one line) which match the regex from `$1`, and `ctrue` short-circuits for that line, emitting `true` and discarding the line. If it wasn't short-circuited, `cfalse` with no selector handles everything else by echoing `false` and discarding the line.
Shaves four characters off the `expr` solution: Ignoring length of the fixed string, which appears once in each, it's 25 characters, vs. 29 for `expr`. It also has similar flexibility (it's not just `true` or `false`, you can use *mostly* arbitrary string outputs).
] |
[Question]
[
## Introduction:
Some times using a 24-hour clock are formatted in a nice pattern. For these patterns, we'll have four different categories:
```
All the same (pattern A:AA or AA:AA):
0:00
1:11
2:22
3:33
4:44
5:55
11:11
22:22
```
```
Increasing (pattern B:CD or AB:CD, where D==C+1==B+2==A+3):
0:12
1:23
2:34
3:45
4:56
12:34
23:45
```
```
Pair (pattern AB:AB):
10:10
12:12
13:13
14:14
15:15
16:16
17:17
18:18
19:19
20:20
21:21
23:23
```
```
Palindrome (pattern A:BA or AB:BA):
0:10
0:20
0:30
0:40
0:50
1:01
1:21
1:31
1:41
1:51
2:02
2:12
2:32
2:42
2:52
3:03
3:13
3:23
3:43
3:53
4:04
4:14
4:24
4:34
4:54
5:05
5:15
5:25
5:35
5:45
6:06
6:16
6:26
6:36
6:46
6:56
7:07
7:17
7:27
7:37
7:47
7:57
8:08
8:18
8:28
8:38
8:48
8:58
9:09
9:19
9:29
9:39
9:49
9:59
10:01
12:21
13:31
14:41
15:51
20:02
21:12
23:32
```
## Challenge:
Given a starting time and a category, output how many minutes should be added to the start time, for it to reach the closest (forward) time of the given category.
*For example:* if the start time is `14:47` and the category is `palindrome`, the smallest time after `14:47` in the palindrome category is `15:51`, so the output is `64` minutes (because 14:47 + 64 minutes = 15:51).
## Challenge Rules:
* As you may have noted: the times in the 'All the same' category are excluded from the 'Pair' and 'Palindrome' categories, even though they are technically also pairs/palindromes.
* We only look forward when we go to the closest time. So in the example above the output is `64` (time `15:51`) and not `-6` (time `14:41`).
* You may take the times in any reasonable format. May be a string, a (Date)Time-object, a pair of integers, etc.
* You may use any *reasonable* distinct input-values for the four categories. (Keep in mind [this forbidden loophole](https://codegolf.meta.stackexchange.com/a/14110/52210)!) May be four integers; may be the category-names as strings; may be an enum; etc.
* If the input-time is already valid for the given category, the result is `0` (so we won't look for the next one).
* We use an `A:BC` pattern for single-digit hours, so they won't be left-padded with a `0` to `0A:BC`.
## General Rules:
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest answer in bytes wins.
Don't let code-golf languages discourage you from posting answers with non-codegolfing languages. Try to come up with an as short as possible answer for 'any' programming language.
* [Standard rules apply](https://codegolf.meta.stackexchange.com/questions/2419/default-for-code-golf-program-function-or-snippet/2422#2422) for your answer with [default I/O rules](https://codegolf.meta.stackexchange.com/questions/2447/default-for-code-golf-input-output-methods/), so you are allowed to use STDIN/STDOUT, functions/method with the proper parameters and return-type, full programs. Your call.
* [Default Loopholes](https://codegolf.meta.stackexchange.com/questions/1061/loopholes-that-are-forbidden-by-default) are forbidden.
* If possible, please add a link with a test for your code (e.g. [TIO](https://tio.run/#)).
* Also, adding an explanation for your answer is highly recommended.
## Test Cases:
You don't need to output the time between parenthesis. Those are just added as clarification in the test cases below. Only the integer-output is required to be output.
```
Inputs: 14:47, palindrome
Output: 64 (15:51)
Inputs: 0:00, all the same
Output: 0 (0:00)
Inputs: 23:33, palindrome
Output: 37 (0:10)
Inputs: 23:24, pair
Output: 646 (10:10)
Inputs: 10:00, increasing
Output: 154 (12:34)
Inputs: 0:00, increasing
Output: 12 (0:12)
Inputs: 23:59, all the same
Output: 1 (0:00)
Inputs: 11:11, pair
Output: 61 (12:12)
```
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), 82 bytes
```
L+%/b60 24%"%02d"%b60JiQ60KE-f@[q1l{yT!-.+CMyT1&%%T60 11q.*cyT2&%%T60 11q_yTyT)KJJ
```
[Try it online!](https://tio.run/##K6gsyfj/30dbVT/JzEDByERVSdXAKEVJFcjzygw0M/B21U1ziC40zKmuDFHU1dN29q0MMVRTVQ0BqjY0LNTTSq4MMULw4ytDKkM0vb28/v@PNjTUUTA0iOUyAgA "Pyth – Try It Online")
A bit ham fisted, but it works. Expects time as an integer list [hours, minutes] and type as (ALL, INC, PAI, PAL) -> (0, 1, 2, 3)
### Explanation
```
L+%/b60 24%"%02d"%b60 define y(b) to format a number of seconds to the string "(h)hmm"
JiQ60 set J to the input time as a number of seconds
KE set K to the input mode
- J subtract the input time from
f J the first integer greater than or equal to the input which satisfies
@[ )K mode selection
q1l{yT formatted string only has one unique character (all)
!-.+CMyT1 code point deltas are all 1 (inc)
&%%T60 11q.*cyT2 string splits into two equal parts but seconds are not 0 mod 11 (pai)
&%%T60 11q_yTyT string is the same as itself backwards but seconds are not 0 mod 11 (pal)
```
[Answer]
# JavaScript (ES6), 126 bytes
*-2 bytes thanks to [Kevin](https://codegolf.stackexchange.com/users/52210/kevin-cruijssen)*
Expects `(type)(minutes, hours)`, with type in \$[0..3]\$ (*all the same*, *increasing*, *pair* and *palindrome* respectively).
```
t=>g=(m,h,T=10,d=m-h)=>[q=m%11|d&&d-h*T,d-12-T*(282%h^6?h:1),h<T|d,(h>9?m/T^h%T?T:h/T:h)^m%T][t]|!q*t&&1+g(m=-~m%60,(h+!m)%24)
```
[Try it online!](https://tio.run/##VZFRa8IwFIXf@yuuDy2J3tomrXXqUpGxB0HGHvJWKojVZsPYqWFPsr/eNa0T93DhkI9zTm7yufneXLbnjy/jH6tiV@9FbURaCqJRoRQsxEJoX1GRZiehXcauhecVvupLLHzGfdkn/Im7ap3M1ZRRVM/yWiBR6WSuA7lWrpzLqQqaoWvtyjwz@bV36hvPY4OSaOH/aDcJG8Ogp6nLY1pvq@PFwGK1AgEhwvLtpREM4X2xbAS3wqJo5jizzAHIgMUI8bgDOUIQQBK3wPrt2LAOhO05jxCi6NEQje@Ax13XX1LSddyi7HU6wkb/Sx4Iv4eNJo/trItqlmG3hXJoS5iTO8N9dX7dbBUhGSgEjWAgpyBSsC9SHXbDQ1WSPTG0@RtQlNL6Fw "JavaScript (Node.js) – Try It Online")
## How?
All formulae are falsy if the criterion is met, or truthy if it's not.
If the first test is triggered, the other ones are forced to fail (this is `| !q * t` in the code). This enforces the rule about discarding pairs and palindromes with a unique digit.
### All the same
```
m % 11 | m - h && m - h * 11
```
We must have either:
* \$m\bmod 11=0\$ and \$m=h\$ (e.g. 22:22)
* or \$m=h\times11\$ (e.g. 4:44)
### Increasing
```
m - h - 12 - 10 * (282 % h ^ 6 ? h : 1)
```
We must have either:
* \$m=h+12+10\$ if \$h\in\{12,23\}\$
* or \$m=h+12+10\times h\$ if \$h\notin\{12,23\}\$
We have \$282\bmod h=6\$ if \$h\in\{12,23\}\$ and \$282\bmod h\neq 6\$ otherwise.
### Pair
```
h < 10 | h - m
```
We must have \$h\ge9\$ and \$h=m\$.
### Palindrome
```
(h > 9 ? m / 10 ^ h % 10 ? 10 : h / 10 : h) ^ m % 10
```
We must have either:
* \$h=m\bmod 10\$ if \$h\le 9\$
* or \$\lfloor m/10\rfloor = h\bmod 10\$ and \$\lfloor h/10\rfloor = m\bmod 10\$ if \$h>9\$
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 33 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
,_J$;,Ṛ,ŒHƲE€i1
“𩽑ḶŒpDF€ṙ⁸Ç€i’
```
A dyadic link that accepts the time of day in minutes as an integer on the left and the category as an integer on the right and yields the number of minutes until the clock will show a time with the given category.
| category | input value |
| --- | --- |
| all the same | 1 |
| increasing | 2 |
| palindrome | 3 |
| pair | 4 |
(Zero will give the time until no category too.)
**[Try it online!](https://tio.run/##y0rNyan8/18n3kvFWufhzlk6Ryd5HNvk@qhpTaYh16OGOYc3HFp5aO@jhhkPd2w7OqnAxQ0o83DnzEeNOw63gxQ9apj5//9/M3PD/yYA "Jelly – Try It Online")** Or see the [test-suite](https://tio.run/##y0rNyan8/18n3kvFWufhzlk6Ryd5HNvk@qhpTaYh16OGOYc3HFp5aO@jhhkPd2w7OqnAxQ0o83DnzEeNOw63gxQ9apj5/@GORQ93Ln7UMNcq7OGOVjODw8sf7lwF1JuYk6NQkpGqUJyYmwrkZuYlF6UmFmfmpQM5BYk5mXkpRflgmYLEzCKg9sxjXZr//0dHqxuaWJmYq@soqCNUqcdy6USrG1gZGIDEkU2GyBgZWxkbY9MClDAygUhkFkGEDGHGIFyEajy6ONAMU0vs9hoaWhkaIhkfCwA "Jelly – Try It Online").
### How?
```
,_J$;,Ṛ,ŒHƲE€i1 - Helper Link = categorise: Time as a list of three or four digits
$ - last two links as a monad - f(Time):
J - range of length (Time) -> [1,2,3] or [1,2,3,4]
_ - (Time) subtract (that) (vectorises)
, - (Time) pair with (that)
Ʋ - last four links as a monad - f(Time):
Ṛ - reverse (Time)
, - (Time) pair with (that)
ŒH - split (Time) into two halves
, - ([Time, Reversed(Time)]) pair (that)
; - concatenate
-> [Time, Time - Indices, [Time, Reversed(Time)], [Prefix, Suffix]]
€ - for each:
E - all equal? -> 1 or 0
i1 - first 1-indexed index of 1, or 0 if none
“𩽑ḶŒpDF€ṙ⁸Ç€i’ - Link = time to next: time of day in minutes, M; category, C
“𩽑 - code-page indicies = [24,6,10]
Ḷ - lowered range -> [[0..23],[0..5],[0..9]]
Œp - Cartesian product -> [[0,0,0],...,[0,5,9],[1,0,0],...,[23,5,9]]
D - digits -> [...,[[2,3],[5],[9]]]
F€ - flatten each -> [[0,0,0],...,[0,5,9],[1,0,0],...,[2,3,5,9]]
ṙ⁸ - rotate (that) left by (M)
Ç€ - call the helper Link (above) for each
i - first 1-indexed index of (C) in (that)
’ - decrement
```
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 70 bytes
```
I⌕EE﹪⁺↨⁶⁰↨N¹⁰⁰…⁰φ¹⁴⁴⁰﹪%03d↨¹⁰⁰↨ι⁶⁰⌕⟦⁼⌊ι⌈ι⬤ι∨¬μ⁼λI⊕§ι⊖μ⁼⌊⪪ι²⌈⪪ι²⁼ι⮌ι⟧¹N
```
[Try it online!](https://tio.run/##VVBNa8MwDL3vV4TCQIYM3DT0slP3BTm0K91x7ODGojXITubYpf/es11v7QRCT8/vScj9Udh@EBTC1irj4FlMDt6UkbAW4yUH6WmALfkJnsSEsOR1lUFnRu82Xu/RAqurOecslp0wBwSe@0zM25bHUubM7vlCzsqEKClI1dUyqpM@b/98/faCJlgro7TXoNIEcS44NiuiZHq3sBkc6MgUB9VVPqIzvUWNxqGEleuMxHMyvOCV1uwSf97fbR8jKZfUDbvZe8tePbHf4QltOoKxr3hvevz3NzEeQ2gWTXvXhIcT/QA "Charcoal – Try It Online") Link is to verbose version of code. Takes the time as a 3- or 4-digit string (e.g. `2324`) and maps the categories to `0..3` for same, increasing, pair, palindrome. Explanation:
```
⁺↨⁶⁰↨N¹⁰⁰
```
Convert the input time into a number of minutes since midnight.
```
﹪...…⁰φ¹⁴⁴⁰
```
Create a range of 1000 minutes starting that that time, and wrapping around at midnight if necessary.
```
E...﹪%03d↨¹⁰⁰↨ι⁶⁰
```
Convert each time into that range back into a 3- or 4-digit string as appropriate.
```
E...⌕⟦...⟧¹
```
Find the category of each time, given as the index of the first of these expressions that evaluates to true: ...
```
⁼⌊ι⌈ι
```
... all the digits are the same; ...
```
⬤ι∨¬μ⁼λI⊕§ι⊖μ
```
... each digit is one more than the previous; ...
```
⁼⌊⪪ι²⌈⪪ι²
```
... the time is composed of two equal pairs; or...
```
⁼ι⮌ι
```
... the time equals its reverse.
```
I⌕...N
```
Find the index of the first time in the desired category.
[Answer]
# [Japt](https://github.com/ETHproductions/japt), 73 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
```
@V¥[_e¥0}_e¥J}_ä+ e[TT]}_Î¥ZÌn «Zx}]b!gUì60_+60²+XÃÅvu24 gJ,_s ù'02ìä-}a
```
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=QFalW19lpTB9X2WlSn1f5CsgZVtUVF19X86lWsxuIKtaeH1dYiFnVew2MF8rNjCyK1jDxXZ1MjQgZ0osX3Mg%2bScwMsOs5C19YQ&input=WzIzLDMzXSwz)
Input is `[hours, minutes], pattern` with `pattern` in the range [0...3] using the same order as they are listed in the question.
### Explanation:
Broad overview:
```
@ }a # Find the smallest X that returns true:
Uì...ä- # Calculate the time after X minutes and do some preprocessing
[...]b!g # Find the first pattern that it matches
V¥ # Check that it's the pattern we're looking for
```
Calculating times:
```
Uì60_+60²+XÃÅvu24 gJ,_s ù'02ìä-
Uì60_ # Convert the input from base-60 to base-10
+60² # Add 3600, forcing 3 digits of output
+X # Add X minutes
à # Convert back to base-60
Å # Remove the extra digit we added
v # Modify the first remaining digit:
u24 # Mod 24
gJ,_ Ã # Modify the last digit:
s # Convert to a string
ù'02 # Left-pad with 0 to length 2
¬ # Join the digits to a string
ä- # Get the difference between consecutive digits
```
Check against the patterns:
```
[_e¥0}_e¥J}_ä+ e[TT]}_Î¥ZÌn «Zx}]b!g
!g # Consecutive differences as Z
[ ]b # Index of first function that returns true:
_ } # Index 0: All the same
e # Every item in Z
¥0 # Is 0
_ } # Index 1: Increasing
e # Every item in Z
¥J # Is -1
_ } # Index 2: Pair
ä+ # Consecutive sums of Z
e[TT] # Is exactly [0,0]
_ } # Index 3: Palindrome
Î # The first item in Z
¥ n # Is the opposite of
ZÌ # The last item in Z
«Zx # And the sum of Z is 0
```
] |
[Question]
[
This challenge will be based on an [R language](https://www.r-project.org/) trivia: every release is named and it's a reference to Peanuts comic strips (see [here](https://bookdown.org/martin_monkman/DataScienceResources_book/r-release-names.html) and [here](https://stackoverflow.com/questions/13478375/is-there-any-authoritative-documentation-on-r-release-nicknames)).
## Task
Given a release name, output its number.
For reference, use the below list:
```
Great Pumpkin 2.14.0
December Snowflakes 2.14.1
Gift-Getting Season 2.14.2
Easter Beagle 2.15.0
Roasted Marshmallows 2.15.1
Trick or Treat 2.15.2
Security Blanket 2.15.3
Masked Marvel 3.0.0
Good Sport 3.0.1
Frisbee Sailing 3.0.2
Warm Puppy 3.0.3
Spring Dance 3.1.0
Sock it to Me 3.1.1
Pumpkin Helmet 3.1.2
Smooth Sidewalk 3.1.3
Full of Ingredients 3.2.0
World-Famous Astronaut 3.2.1
Fire Safety 3.2.2
Wooden Christmas-Tree 3.2.3
Very Secure Dishes 3.2.4
Very, Very Secure Dishes 3.2.5
Supposedly Educational 3.3.0
Bug in Your Hair 3.3.1
Sincere Pumpkin Patch 3.3.2
Another Canoe 3.3.3
You Stupid Darkness 3.4.0
Single Candle 3.4.1
Short Summer 3.4.2
Kite-Eating Tree 3.4.3
Someone to Lean On 3.4.4
Joy in Playing 3.5.0
Feather Spray 3.5.1
Eggshell Igloo 3.5.2
Great Truth 3.5.3
Planting of a Tree 3.6.0
Action of the Toes 3.6.1
Dark and Stormy Night 3.6.2
Holding the Windsock 3.6.3
Arbor Day 4.0.0
See Things Now 4.0.1
Taking Off Again 4.0.2
Bunny-Wunnies Freak Out 4.0.3
Lost Library Book 4.0.4
Shake and Throw 4.0.5
Camp Pontanezen 4.1.0
Kick Things 4.1.1
Bird Hippie 4.1.2
One Push-Up 4.1.3
Vigorous Calisthenics 4.2.0
```
## Rules
* You may take input and output in any reasonable format (for output this includes a dot delimited string (as above), a string with other delimiter, a 3-element list etc.).
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") - usual rules apply.
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 174 bytes
Returns a triplet \$[a,b,c]\$.
```
s=>[(n=Buffer("1M1rb2dX~N(jm8+2p~aL2fw[k~_)1F1sT2q3VSGx^~R7H~ue.v/~ytY2U~gl~O1W|6*3I5`2Z".replace(/\d/g,n=>10**n))[parseInt(s[9]+s,36)%901%126]+56)/42|0,n/6%7^13*(n<105),n%6]
```
[Try it online!](https://tio.run/##dVTNcuNEEL7nKbpclbKV2I4lO14WcKg4sZ2w@auVd8NivDCRWtLE0oyYGSWI2vITUMWFI7wHz7MvwCOEkWZkTlx06K@nv/66v9YjeSIyEDRXPcZDfIkmL3JysuqwybSIIhSdlnvtigcv/G5703nMvjj08i258qLn1Wb7o@POXbn0fh6@9xe/fNy@fXWxLbD/dLQt1Qfv3TZOt7fu/afxwfDy@Cfv@1ZfYJ6SADtHP4RHcZdNTtzBwQFznFVOhMRLpjpy9Xp9KLvDsbP/euDuu954fXg8do5G3qdBlx2N9199dIcHHfa1Ozh2umx/vH75arW3ai0EEgV3RZZvKGt1W17fHfUHrXV31TrHALMHFOAz/hylZIOySXDrhAWNVG@BSlEWg49E8l0Fr06YEan0@ymSOEUDHdvib3mFhXCtBSQZSVP@LJsMU30paLABLmBZtdhgprCPQSGoKmGaErbBHTqs0WsiN6b0E6YaGvYHlnXBeQh@zoWyYUM1F1Q@IIJPaKq1WMxQ3ROR6fnkeWnDhsPPRaX6nLAAa8C1FD7XXVMFisN1gxgWO2S4wDRDZSGrJ@NcJeDTEJ9JurGYYZoXaQo8gksWCwwpMiVr3LOE91ykYW9OMl5IOJVKcEYKZVOsPioqcRGq0satNj0OZHCWaP0qI7KnR402w5C/R1FCPW2EcyoTbLhHO7gL/5t0bMTp4XGJYVrCLCwCoqju0OxlaDVMixj0ZD7wQsAFocKCpnuf6hnr0s387ogKEpthdJwyPT1ttDPCOFrE9K8rgq@KnIZ6VWLDUJreGo/r2tqa1cMwRYtY1kS7BPwiy1BYwJC9oQp7M1KbfjevUWMLniFnWG3/CgmDW2ZhM69veVnpvEtJ2fisOYi5NnmlQRuLlBYxncziWM9Um@AyTjm3kOnFXO9SFCqxcdOGJmB1g9o35L8ux5brNKh2UIGaEpbcLmxsCatJgZ6InhwXWQk3NE6UzTC8FzwNq/LV83vKQqlNbxNMA6fiQV/uea1ktDs/X9/YMtEPJdzwZwvZayebquBtFMFpTOpf0Wh3g9OCsbJ3r78UJcy16A3c1h4f7Q7yiksFV/RBEG3GKecbi47sNvXvq9a0TMSO2vjzjGQ53HGmCMNf0TA31/ym@geZlm3ctDulIoQLmucUbdx0essqn8qk9y63cXtHNOaiOtAzkupbS5DRwFSsz3hvvdePuJiRIOl0Voxk2IUnFFJvae3A5AQCziRPsZ/yuFPB/ZyEMxZ2vJHThagOObsnMJk0sf4jp6zT7rcd@Aba//z9@@c//9DfNnwJ7c9//dZ2nJd/AQ "JavaScript (Node.js) – Try It Online")
### Encoding
[Here](https://tio.run/##y0osSyxOLsosKNHNy09J/f9fqa7Ot66uKKmuri4los5PIyu3Dga0gbigLtEHSKWVR2fXxWvW1bnV1RWHAAUKQQrCgt0r4uqCwIoN6uo86kpT9cr06ypLIoECoXXpOXX@dXXhNVDjtECEJ4SdAMRRSv//AwA) is the uncompressed lookup string.
Each version is encoded as a single character in the printable ASCII ranges \$[40\dots48]\$ and \$[70\dots124]\$. The first range is for 2.x.x and the second one for 3.x.x and 4.x.x.
The padding character in the lookup string is `~`. Runs of 2 to 10 consecutive `~` are replaced with `1` to `9`.
**Note**: We actually don't use `~` when decompressing. Each digit \$k\$ is instead expanded to \$10^k\$ (a `1` followed by \$k\$ `0`'s). And that's why the sub-string `R~~~~~0~~H`, which includes a meaningful `0`, can be compressed as `R7H`, saving 2 more bytes.
To summarize:
| ASCII Range | Character range | Meaning |
| --- | --- | --- |
| 40 - 48 | `(` to `0` | version 2.x.x |
| 49 - 57 | `1` to `9` | compressed padding string |
| 70 - 124 | `F` to `|` | version 3.x.x or 4.x.x |
| 126 | `~` | single padding character |
To turn a character \$C\$ into the version triplet \$[a,b,c]\$, we compute \$n=\operatorname{ord}(C)+56\$ and then:
$$\begin{align}&a=\lfloor n/42\rfloor\\
&b=\cases{
\lfloor n/6\rfloor\bmod7&if $n\ge105$\\
\left(\lfloor n/6\rfloor\bmod7\right)\operatorname{xor}13&if $n<105$
}\\
&c=n\bmod6\end{align}$$
] |
[Question]
[
Given \$n, m\ge 1\$. There are \$n\$ balls. Do \$m\$ moves, each choose a ball (maybe also the first one), and exchange with the one currently on the first place. At the end, the order of balls should be the same as the initial state.
You can either output all possibilities, or a random one provided all possibilities have non-zero probability to be outputted. You can use 0-index or 1-index. You can output a specific ball either by its initial position or by its position at the time of that move. Shortest code win.
Tests: (1-index, current position)
```
n=9, m=1 => 1
n=4, m=2 => 1,1; 2,2; 3,3; 4,4
n=2, m=3 => 1,1,1; 1,2,2; 2,1,2; 2,2,1
```
For case 1, with only 1 move we can't do any actual swap but swapping with itself. For case 2, we can swap the first ball to anywhere but the next step we have to make it back.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), ~~20~~ 19 bytes
There is probably\* a terser way to swap the items...
```
’RŒBF!‘œ?@ƒ⁹Ƒ
ṗçƇR{
```
A dyadic Link that accepts the number of balls, \$n\$, on the left and the number of moves, \$m\$, on the right and yields a list of lists of valid move sequences using 0-indexing.
**[Try it online!](https://tio.run/##AS4A0f9qZWxsef//4oCZUsWSQkYh4oCYxZM/QMaS4oG5xpEK4bmXw6fGh1J7////NP82 "Jelly – Try It Online")**
### How?
Filters all length \$m\$ potential instructions consisting of the alphabet \$[1,n]\$ keeping those which cause no change when applied.
In order to perform a single instructed swap the code translates this to an equivalent sequence of swaps of adjacent elements. The swaps are then applied in turn starting with an ordered list where the rightmost element is the first index and the leftmost is the last.
To swap the \$k^{\text{th}}\$ element with the \$1^{\text{st}}\$ we actually perform multiple swaps of neighbouting pairs, first to move the \$1^{\text{st}}\$ element to position \$k\$ and then to move the original \$k^{\text{th}}\$ element to to position \$1\$
For example starting with elements `GFEDCBA` (A being the "first") to swap the sixth element (`F`) with the first (`A`) we swap like so:
```
(indices): 7654321
start: GFEDCBA moving A from index 1...
swap(2,1): GFEDCAB .
swap(3,2): GFEDACB .
swap(4,3): GFEADCB .
swap(5,4): GFAEDCB .
swap(6,5): GAFEDCB done, now moving F to index 1...
swap(5,4): GAEFDCB .
swap(4,3): GAEDFCB .
swap(3,2): GAEDCFB .
swap(2,1): GAEDCBF done.
```
This is then performed by noting that `swap(n,n-1)` can be performed by calculating the \$((n-1)!+1)^{\text{th}}\$ lexicographical permutation of the current state (which I wrote a built-in for a few years ago, `œ?`).
```
’RŒBF!‘œ?@ƒ⁹Ƒ - Link, is transform an invariant?: instruction string, [1..n]
’ - decrement (each instruction) e.g. [4,1,3] -> [3,0,2]
R - range -> [[1,2,3],[],[1,2]]
ŒB - bounce -> [[1,2,3,2,1],[],[1,2,1]]
F - flatten -> [1,2,3,2,1,1,2,1]
! - factorial -> [1,2,6,2,1,1,2,1]
‘ - increment -> [2,3,6,3,2,2,3,2]
-> this is an equivalent set of instructions swapping neighbouring pairs in
turn, as lexicographical permutation indices.
⁹ - right argument = [1..n]
Ƒ - is invariant under?:
ƒ - apply the new instructions to [1..n] in turn using:
œ?@ - nth index-lexicographical permutation
ṗçƇR{ - Main Link: n, m
ṗ - (n) Cartesian power (m) -> all length m strings of alphabet [1..m]
R{ - range (n) -> [1..n]
Ƈ - filter (the strings) keeping those for which:
ç - call last Link (1) as a dyad, f(potential_string, [1..n])
```
---
\* Although this is 20:
```
J=o⁸ɗḊ⁹;ị⁸
ṗçƒ⁹Ƒ¥ƇR{
```
10 bytes to swap to list elements by index; perhaps Jelly should have a `œ.` built-in to swap elements of a list by indices?
[Answer]
# [Haskell](https://www.haskell.org/), 111 bytes
```
(0?y)q=[[]|q==y]
(n?y@(h:t))q=[k:x|k<-q,x<-(n-1)?(y!!(k-1):tail(take(k-1)y++h:drop k y))$q]
x#y=x?[1..y]$[1..y]
```
[Try it online!](https://tio.run/##JYhLCsMgEED3OUVCXIykhoZ2JRF7D3EhNKBMamPqwoHc3f5W7@PdC5d1rRXOmnhSxtgjKUW2gajpBl5m/t0oy4GzSKcyC4hi4hqo6wA/JrMLK2SHyy9pGLy878@txZY4Z8k2pSdVtJnGkSz7oz5ciGrbQ8zs0l/rGw "Haskell – Try It Online")
Just attempts every possible path and returns the ones that work.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 31 bytes
Uses 0-indexing. A lot more complicated than it has to be.
```
L©<Iãʒ®yv¹<!y*¹ÍLRyDĀ-£!O+.I}āQ
```
[Try it online!](https://tio.run/##AToAxf9vc2FiaWX//0zCqTxJw6PKksKueXbCuTwheSrCucONTFJ5RMSALcKjIU8rLkl9xIFR/10@wrv/Mgoz "05AB1E – Try It Online")
This generates all move sequences and selects the right ones by doing the swapping. Instead of directly swapping values (which would probably be shorter), this calculates the index of the permutation that does the right swap.
For a list of length \$t\$ the permutation that swaps the first with the \$n\$-th value has index
$$
(n-1) \cdot (t-1)! \, + \sum\_{i=t-n+1}^{t-2} i!
$$
(Uses 1-indexing, Related OEIS sequence: [A211369](https://oeis.org/A211369))
This is calculated by `¹<!y*¹ÍLRyDĀ-£!O+`, where `¹` is \$t\$ and `y` is \$n-1\$. The sum part is quite annoying to compute, because all the range builtins don't want to return empty lists.
```
# Full program, taking two inputs
# ¹ the length of the move sequence
# ² the number of balls
L© # range from 1 to ¹, store in register
< # decrement to get range from 0 to ¹-1
Iã # all ²-tuples of numbers in the range
ʒ # filter on:
® # start with the range 1 .. ¹
yv } # iterate over the current move sequence:
... # calculate permutation index
.I # apply corresponding permutation
āQ # is the result equal to [1 .. length]?
```
[Answer]
# [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 49 bytes
```
Nest[#/.r&,r={1->#,#->1}&~Array~#,#2]~Position~r&
```
[Try it online!](https://tio.run/##y00syUjNTSzJTE78n2b73y@1uCRaWV@vSE2nyLbaUNdOWUdZ186wVq3OsagosbIOyDWKrQvIL84syczPqytS@x9QlJkH1KJrl@bgoByrVhecnJhXV81VbaljWKvDVW2iYwSijHSMgRSIawLiGuuY1nLV/gcA "Wolfram Language (Mathematica) – Try It Online")
Input `[n, m]`.
Thanks to alephalpha's [now-deleted answer](https://codegolf.stackexchange.com/a/235713/81203) for the idea to swap values instead of positions.
Swapping the positions \$1\$ and \$x\$ of the \$\text{position}\to\text{ball}\$ list is equivalent to swapping the values \$1\$ and \$x\$ of the \$\text{ball}\to\text{position}\$ list.
The list that's being mutated isn't actually `1..n`, but it contains all numbers in the range all the same.
[Answer]
# [JavaScript (V8)](https://v8.dev/), ~~123 120 113~~ 112 bytes
Expects `(n)(m)`. Prints all 0-indexed solutions.
```
n=>g=(m,A=[...Array(n)],o)=>A.some((v,j)=>m?g(m-1,A,[o]+j+' ',[A[j],A[0],A]=[A[0]^j,v^j,[...A]]):v)|m?0:print(o)
```
[Try it online!](https://tio.run/##HYxBCoMwFET3PUV3/o/foLaLKkTJOUIKoTRiIIlECRR69zR2MfPmbcbqpPdXXLejSY9sePZ8Wjg4ElwyxkSM@gMeFQXkk2B7cG@ARLaYmxdwTUeCZFC1ratrRVJIq0jItpTi8hxPS6nk/6YUjgm/bm7HLa7@gIDZwIDQ4cXAHaE/2SPcMP8A "JavaScript (V8) – Try It Online")
### How?
Instead of storing \$[0,1,\dots,n-1]\$ into the reference array, we store the actual value at a given position XOR'ed with the expected value.
This makes the initialization and the final test easier and shorter to write because we start with an array filled with \$0\$'s and expect to end up with the same configuration. (In the JS code, we actually start with an array filled with undefined values and test that there's no truthy value in the final one.)
To exchange \$A\_0\$ and \$A\_j\$, we do:
$$\cases{A\_j\leftarrow A\_0\operatorname{xor}j\\
A\_0\leftarrow A\_j\operatorname{xor}j
}$$
The implementation is a bit freaky. Within a recursive call to \$g\$, we pass the current instance of \$A[\:]\$ and then simultaneously update \$A[0]\$, update \$A[j]\$ and set \$A[\:]\$ to a new instance consisting of a copy of itself before the changes are applied, so that the array is restored to its initial state after the call:
```
g(…, A, …, [A[j], A[0], A] = [A[0] ^ j, v ^ j, [...A]])
```
[Answer]
# [Python 3](https://docs.python.org/3/), 124 bytes
```
def f(n,m,*l):
*p,=*q,=range(n)
for x in l:q[0],q[x]=q[x],q[0]
return m and sum([f(n,m-1,*l,i)for i in p],[])or[l][:q==p]
```
[Try it online!](https://tio.run/##HY7BCoQwDETvfkWOiWRh1b2s0C8pPQjqbkFjWyu4X981XjKEmXlM@OXvJl0p4zTDjMIr1wv1FdSBTR3ZpEE@EwpVMG8JTvACSx/t03G0pzN6WN8K0pSPJLDCICPsx4r25j2ai8ietO61HhxbR1uyi7N9NCa4ot4VVRfxzQ0x4ItblZY70j0QkpeMN5Ko/AE "Python 3 – Try It Online")
Brute force search. Outputs all options.
-3 bytes thanks to Jakque
[Answer]
# [Ruby](https://www.ruby-lang.org/), 86 bytes
```
->n,m{w=*0...n;w.product(*[w]*~-m).select{|x|s=*w;x.map{|c|s[0],s[c]=s[c],s[0]};s==w}}
```
[Try it online!](https://tio.run/##NYhBCsIwEADvvsKjhu1Say8S1o@EHDS2J1NDt2UrSfx6JIiXYWbm9f4uI5XmOoGPQqpFxEkLhvn1WN1yUEas@jT@iDw8B7fEtCUmJXpDfwsxucSmtcDGWaqAmlkzkeRcwn40FzjZXZUeup90cP6f3pYv "Ruby – Try It Online")
[Answer]
# [R](https://www.r-project.org/), 118 bytes
```
function(n,m,l=expand.grid(rep(list(v<-1:n),m)))l[apply(l,1,function(s){for(i in s)v[c(1,i)]=v[c(i,1)];all(v==1:n)}),]
```
[Try it online!](https://tio.run/##PY27CsMwDAB/JaMEasGQqa2/JHgweRSBIgs7NS0h3@6SDt1uubvcNFnxbXnpuHFSUFpJ/Py2qNP1mXmCPBsIlw3q4@JuirQiogzRTD4g5OjvFtyXlIE71q5gHUZwxBj8SUwOwz2KQPX@zBxI4TeHnnpsXw "R – Try It Online")
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 60 bytes
```
≔…⁰NθNη⊞υ⟦⟦⟧θ⟧Fυ¿⁼L§ι⁰ηF⁼⊟ιθIιFθ⊞υ⟦⁺§ι⁰⟦κ⟧E§ι¹⎇∧μ⁻κμλ§§ι¹⁻κμ
```
[Try it online!](https://tio.run/##XY9Na8MwDIbv/RU6SuBBP447hdFDoS2h9FZy8Fo3NnWUxB9j@/We2q2Q7SLQo0ev7LPV4dxrX0oVo2sZD5pbg3MFGx5y2ufu3QQkUjDS62zKrPR1jhazgtOpEaERcu0DYCZwV8D1mLWPuDXcJotV2vDFfKJTML/nWSJ42L9a3Q/oHncI6uA44ZuOSZCkGh/NjzzK8Hm09jn@jRV4a6Tu9DAdLAQdTWAdvrDiC3ZiOJblm4Lu/hav4Kn/W5t6RPLDUpawKi8f/hs "Charcoal – Try It Online") Link is to verbose version of code. Outputs all 0-indexed possibilities by current position. Explanation:
```
≔…⁰Nθ
```
Create the initial range of `n` elements.
```
Nη
```
Input `m`.
```
⊞υ⟦⟦⟧θ⟧
```
Start a breadth-first search with a possibility of `0` moves and the initial position.
```
Fυ
```
Loop over the possibilities.
```
¿⁼L§ι⁰η
```
If this possibility has `m` moves, then...
```
F⁼⊟ιθIι
```
... print the possibility if the initial state was reached.
```
Fθ
```
Otherwise, looping over each position, ...
```
⊞υ⟦⁺§ι⁰⟦κ⟧E§ι¹⎇∧μ⁻κμλ§§ι¹⁻κμ
```
... push the possibility obtained from the switch to the search list.
] |
[Question]
[
Consider the integer set \$S = \{3, 5, 6, 7\}\$. If we list all \$2^n\$ subsets of \$S\$ (its powerset) and calculate their sums, we get
$$
\mathcal{P}(S) = \{\emptyset, \{3\}, \{5\}, \{6\}, \{7\}, \{3, 5\}, \{3, 6\}, \{3, 7\}, \{5, 6\}, \{5, 7\}, \{6, 7\}, \{3, 5, 6\}, \{3, 5, 7\}, \{3, 6, 7\}, \{5, 6, 7\}, \{3, 5, 6, 7\}\} \\
\sum\_{s \in \mathcal{P}(S)} s = \{0, 3, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 21\}
$$
You'll note that this set of sums is distinct - no element is repeated. We'll say that \$S\$ is a **distinct subset sum set**. Note that we're only considering sets containing positive integers for this.
In fact, for \$n = 4\$, \$k = 7\$ is the smallest positive integer such that there is a set \$S\$ containing \$n\$ distinct elements from the set \$\{1, 2, ..., k\}\$ and that \$S\$ is a distinct subset sum set. The values of \$k\$ for \$n = 0, 1, 2, 3\$ are:
| \$n\$ | \$k\$ | \$S\$ |
| --- | --- | --- |
| \$0\$ | \$0\$ | \$\emptyset\$ |
| \$1\$ | \$1\$ | \$\{1\}\$ |
| \$2\$ | \$2\$ | \$\{1,2\}\$ |
| \$3\$ | \$4\$ | \$\{1,2,4\}\$ |
For any given \$n\$, we can say that \$2^{n-1}\$ is an upper bound, as the set \$\{2^0, 2^1, ..., 2^{n-1}\}\$ is always a distinct subset sum set.
However, as shown above, this upper bound can be improved. In fact, one of the current best upper bounds is the Conway-Guy sequence ([A005318](https://oeis.org/A005318)), given by:
$$
a\_0 = 0, a\_1 = 1\\
a\_{n+1} = 2a\_n - a\_{n - \lfloor 1/2 + \sqrt{2n} \rfloor}
$$
However, it's been shown that \$a\_{67} = 34808838084768972989\$ can be improved as a bound to \$34808712605260918463\$, so the Conway-Guy sequence is currently only an upper bound (and a non-optimal one at that), rather than the exact terms. The exact terms are given by [A276661](https://oeis.org/A276661).
This sequence has only been proven to be optimal up to \$n = 9\$. Your task is to improve this.
Your program should take a non-negative integer \$n\$ and output the smallest integer \$k\$ such that there exists a distinct subset sum set \$S\$ such that, for all elements \$S\_i\$, \$1 \le S\_i \le k\$. Note that this is *not* the Conway-Guy sequence; if given \$n = 67\$ as an input, the output should not be \$34808838084768972989\$.
Your program may fail *practically* due to integer constraints (e.g. if the output exceeds your language's integer maximum), but should work *theoretically* for all \$n\$.
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest code in bytes wins.
---
Additionally, I will offer a bounty for the answer for which:
* it can produce the correct output for a value \$x > 9\$ within a minute (time using TIO if possible), and
* it can produce the correct output for all values \$1 \le i \le x\$ within a minute for each
The bounty will be awarded to the answer which can do this for the highest \$x\$. The amount I'll award will depend on the exact value of \$x\$ (e.g. \$x = 20\$ will be awarded more than \$x = 10\$), but it will be at least 150 reputation. Once someone can produce the output for \$x = 10\$, I'll wait 2 weeks for any answers to try to beat it, then start the bounty.
---
## Test cases
```
n k
0 0
1 1
2 2
3 4
4 7
5 13
6 24
7 44
8 84
9 161
```
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal) `R`, 13 bytes
```
λ?↔'ṗv∑:U⁼;;ṅ
```
[Try it Online!](https://lyxal.pythonanywhere.com?flags=R&code=%CE%BB%3F%E2%86%94%27%E1%B9%97v%E2%88%91%3AU%E2%81%BC%3B%3B%E1%B9%85&inputs=4&header=&footer=)
Outputs in a singleton list.
```
λ ;ṅ # First integer for which the following is true:
' ; # Any of...
?↔ # combinations_with_replacements(1..n,input)
' ; # Has the property that...
ṗv∑ # Sums of all subsets
:U⁼ # Are all unique
```
[Answer]
# [Python 3.8 (pre-release)](https://docs.python.org/3.8/), 169 bytes
```
from itertools import*
f=lambda i,n=2:any(len(k:=[*map(sum,chain(*[combinations(x,r)for r in range(n)]))])==len({*k})for x in product(*[range(1,n)]*i))and~-n or f(i,n+1)
```
[Try it online!](https://tio.run/##Jc7LCsIwEIXhvU@R5STWRdWFCHmS4iK9xA5tZsI0hRbRV6@pwll@/Jy4pp7pcouybV44KEydJOZxUhgiSzIHb0cX6tYpLMie745WGDuC4W4rE1yEaQ5F0zskMFXDoUZyCZkmWArRnkWJQlLi6NkB6YfOs3YvvMzw/oFlB1G4nZuUI39aFhkb1NpR@zmRys5DvnAs9RYFKYGHq9bbFw "Python 3.8 (pre-release) – Try It Online")
Mighty itertools
-15 thanks to @ovs
[Answer]
# [Python 2 (PyPy)](http://pypy.org/), ~~111~~ ~~102~~ 96 bytes
Finishes for \$n=7\$ in three seconds, every larger \$n\$ takes too long on TIO.
```
f=lambda n,i=1,s=[(0,1)]:n>max(zip(*s)[0])and-~f(n,i+1,s+[(w+1,l|l<<i)for w,l in s if l<<i&l<1])
```
[Try it online!](https://tio.run/##FYpBCoMwEADvfcWeym4TQXsqkvgR8ZBi0y7ENUTBppR@PdXTwMzEvL5muVYxx1yKt8FN99GBaLaNXmyPtW5oaKWb3Bs/HPGyUF8P5GSsfh73T@2f6nHbGb7BGCY/J9h0ABZYgD0c8hxMM1A5Eh8hOXk@8EbtCSAmlhVYg/LIVP4 "Python 2 (PyPy) – Try It Online")
The list `s` keeps track of all valid sets up to size `k`, storing a set as its length and the possible sums represented by a bitmask. This improves performance over regular sets and makes adding a new number as simple as `l|l<<i`.
With some small optimizations this finishes in under a second for \$n=7\$: [Try it online!](https://tio.run/##Vc7BCsIwEATQe75iT9JaAsaLULtfsuyhEEs3hm0oESmIvx5TevIyp3nDpC3Pi15t2tJWiuATL0ZRNDei6ZWbtjUeiRxzR8R8/lo171niA8YYmzgMcoowLStEEAVP1nHbGwio1hk4mqH3FBj36Ggnnz8SqpEJjq3B8T1YrFa6mmmtV0BhVA9Syu0H "Python 2 (PyPy) – Try It Online")
\$n=8\$ is still far out on TIO (1m30s and 15GB RAM locally)
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 11 bytes
```
ṗŒP§QƑƊƇ¥1#
```
[Try it online!](https://tio.run/##AR4A4f9qZWxsef//4bmXxZJQwqdRxpHGisaHwqUxI////zQ "Jelly – Try It Online")
A monadic link taking and returning an integer. Terribly inefficient since it takes the powerset of the Cartesian power. Replacing `ṗ` with `œc` improves efficiency at the cost of a byte, but still very slow.
[Answer]
# JavaScript (ES10), 136 bytes
Slightly shorter. Much slower.
```
n=>(g=k=>{for(v=++k**n;v--*!(new Set([...Array(n)].reduce((a,_,i)=>a.flatMap(x=>[x,x+v/k**i%k|0]),[0])).size>>n););return~v?0:1+g(k)})``
```
[Try it online!](https://tio.run/##FY7BboMwEETv@QpHSqVdDC459FK6rvoBOfWIomIRgyhoHRniklL669S9zFye5s2nCWasfXedMnYXuzW0MWloqSe9NM5DICn7JOEiZFmyB7Zf4t1OUCql3rw3d2A8K28vt9oCmPQj7ZC0Uc1gppO5wky6nNNZhsc40j30P/kZ0zIGqrH7tlozFlh4O908/4bX/PkoW@hxxara/vUsSOSFYPFC4im2lCiWnRC149ENVg2uhcrAYeEVI3pYmnhorXC3bn8 "JavaScript (Node.js) – Try It Online")
---
# JavaScript (ES7), 138 bytes
```
n=>(g=k=>{for(v=++k**n;v--*!(new Set([...Array(n)].reduce((a,_,i)=>[...a,...a.map(x=>x+v/k**i%k|0)],[0])).size>>n););return~v?0:1+g(k)})``
```
[Try it online!](https://tio.run/##FY7BToRAEETv@xVtsibdDIx42IvYY/wGjxsiE3YgyNqzGdhxFfHXES5Vh3qpvA8b7VCH7jJm4k9uaXgRNthyz2ZqfMDISvVJIkXMsuQOxX3BmxvxqLV@DcF@o1Cpgztda4do0/e0IzbbatMt9Ke94I3NTcWH9aa7739zKtNjXhLpoftxxggVVAQ3XoP8xZf86VG12NNMVbVsAgIMeQECzwyHtZUimHYAtZfBn50@@xYri/tJZlrR/dSsSnNFu3n5Bw "JavaScript (Node.js) – Try It Online")
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), ~~64~~ 46 bytes
```
Nθ≔¹η⊞υ¹W¬⊙υ⁼Σ↨κ²X²θ«≦⊗ηFυ¿¬&κ×ηκ⊞υ×⊕ηκ»I⊖L↨η²
```
[Try it online!](https://tio.run/##RY67jsIwEEVr8hVTjiVTQLFNqvAokFgUafkBkwzYwrGJHxshxLebPEDcaubq6uhUUrjKCp3SztxiOMTmRA5blmeF9@picMFB9l8ZvcTIYdHfnVSaAA82YGHuQ7tto9Ae/2KDK@EJrxyWjHEobdfTlhxaNgQe2exX3N7kjY0nTfXEn52tA4wM1Hkir1TolKfC1APtqBryKDlcR87HZqp3pnLUkAlUo2TjJs@eWemUCbgWPuCGvos9mUuQk6ccPfvkKf2k@b9@AQ "Charcoal – Try It Online") Link is to verbose version of code. Too slow to do `n>6` on TIO. Explanation:
```
Nθ
```
Input `n`.
```
≔¹η
```
Start with `2ᵏ=1`.
```
⊞υ¹
```
The empty set has one subset sum, `{0}`, represented here as a bitmask of `2⁰=1`.
```
W¬⊙υ⁼Σ↨κ²X²θ«
```
Repeat until a subset sum set of size `2ⁿ` is found.
```
≦⊗η
```
Increment `k`.
```
Fυ
```
Loop over all of the sets so far.
```
¿¬&κ×ηκ
```
If adding `k` to each subset sum (achieved by shifting the bitmask left by `k` bits) does not duplicate any existing sum, then ...
```
⊞υ×⊕ηκ
```
... add the combined subset sum set to the list.
```
»I⊖L↨η²
```
Extract the value of `k` needed to get a set of size `n`.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 16 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
Āi∞.ΔLIãεæODÙQ}à
```
[Try it online](https://tio.run/##ASQA2/9vc2FiaWX//8SAaeKIni7OlExJw6POtcOmT0TDmVF9w6D//zQ) or [verify increasing test cases until it times out](https://tio.run/##ATUAyv9vc2FiaWX/W05Ewqk/IiDihpIgIj//xIBp4oieLs6UTMKuw6POtcOmT0TDmVF9w6D/fX0s/w).
**Explanation:**
```
Āi # If the (implicit) input is not 0:
∞.Δ # Find the first positive integer which is truthy for:
L # Pop the integer, and push a list in the range [1,n]
Iã # Take the cartesian power of the input-integer
ε # Map each inner list to:
æ # Take the powerset of this list
O # Sum each inner list
# Check if all items are unique by:
D # Duplicating the list
Ù # Uniquify the copy
Q # Check if the lists are still the same
}à # After the map: check if any were truthy (by taking the max)
# (after which the integer is output implicitly as result)
# (implicit else: output the implicit input; the 0)
```
] |
[Question]
[
There are 4 regular polygons that we can construct using ASCII art:
```
. . .
. . . . . . .
. . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . . . . . . . . . .
. . . . . . .
. . .
```
That is, a triangle, a square, a hexagon and an octagon.
Your task is to take two inputs and produce the corresponding ASCII art polygon.
## Input
The two inputs will be:
* A string/list of printable ASCII characters (i.e. with code points in the range \$33\$ (`!`) to \$126\$ (`~`)
* An indicator as to which polygon you should output. This indicator can be any \$4\$ distinct and consistent values (e.g. `1234`, `ABCD`, etc.), but each must be only one character long, to avoid any exploitation of this input.
The string will be a perfect fit for the polygon, meaning that, if the shape to be outputted is:
* A triangle, then the length of the string will be a [triangular number](http://oeis.org/A000217)
* A square, then the length of the string will be a [square number](http://oeis.org/A000290)
* A hexagon, then the length of the string will be a [centered hexagonal number](http://oeis.org/A003215)
* An octagon, then the length of the string will be an [octo number](http://oeis.org/A079273)
The string may have repeated characters, but will always fit the appropriate lengths for the given shape/sequence, so there is no need to worry about too many/few characters.
## Output
You should output a shape, indicated by the second input, in the format shown at the top of the challenge with the `.` replaced with the characters in the inputted string. Each character must be separated by a single space, and leading/trailing whitespace is acceptable, so long as the shape is preserved. The characters may be used in any order, but each character in the string must only appear once. For example, for a hexagon using `ABCDABC`, the following are valid:
```
A B B A
C D A A B C
B C D C
```
as each character from the string is used once. However,
```
A A A B AD
A A A A B C ABC
A A C A BC
```
are not valid (the first only has `A`, the second doesn't have a `D` and the third doesn't have spaces between characters).
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") so the shortest code in *bytes* wins
## Test cases
These test cases use `T`, `S`, `H` and `O` to indicate which shape the output should be in. The string of characters is on the first line and the indicator on the second
```
i1+K8{^wsW
O
i 1
+ K 8
{ ^ w
s W
,r1~vi4l{W@+r<vzP;mq>:8gJcgg$j`$RFhDV
H
, r 1 ~
v i 4 l {
W @ + r < v
z P ; m q > :
8 g J c g g
$ j ` $ R
F h D V
0J++
S
0 J
+ +
Kn[Vyj
T
K
n [
V y j
#5~m
S
# 5
~ m
'*g(AUFV~Ou2n=172s'|S11q&j=+#
O
' * g
( A U F
V ~ O u 2
n = 1 7 2
s ' | S 1
1 q & j
= + #
```
[Answer]
# [Ruby](https://www.ruby-lang.org/), ~~139~~ 138 bytes
```
->s,n{w=(((s=s.chars*' ').size/n=n.hex)**0.5).to_i+k=1&~n
(0..h=w+n/5*~-w).map{|i|s.slice!(0,[w+n/6*~-w,w**k+i,w+h+~i].min*2).center w*4}}
```
[Try it online!](https://tio.run/##TctNT8IwHIDxO59iJsS@8mcjQIhaoonxABfjAQ7LVFzKWmAV20GFwb76HAcTrs8vj919HeqlqDtjx03pBcbYCQepWlhHUYAIOH2UXSMMKPlLKA1hQKD4/tBsLaLbyrRwCKCEZ6Y7oFXHE8gX2/KkTw7cRqfyBoc8vujwotxTumaae6ZYpRPItaE9Aqk0hbSBp/3zud7uChcsY6QjNh2V797NEUdPKGn9A7dRtdf9TTl/ZPZhf3y9z3/Gd6NskmZZe/XZfntRz7PmGV494YSxJvWu0tTEs8OqiRFK6j8 "Ruby – Try It Online")
A function taking 2 arguments: a string `s` and a shape `n` as a single character in hexadecimal of value `1`,`2`,`6` or `A`. It returns an array of strings.
**Explanation**
The input string is converted to an array, then joined back into a string with spaces between the characters. The length of this combined string is twice the length of the original string, minus 1. This is divided by a constant, square rooted and rounded to determine the side length `w` of the polygon to be drawn. The value of the constant is per the table below. For triangles, the square root is rounded down. For others, it needs to be rounded up, so we round down then add `k=1&~n` to correct.
```
Shape Triangle Square Hexagon Octagon
n = 1 2 6 10
```
We iterate through `h` rows of output. For the triangle and square, `h=w`. For the other shapes we need to add `w-1` for the hexagon and twice this amount for the octagon. This is done by adding `n/5*~-w`.
Each line of output is centred and padded to `w*4` characters which is enough for all cases. Chunks of `s` are removed using `slice!` and outputted. For the octagon the number of symbols to be outputted on each line is the minimum of three numbers: `w+w-1` for the centre section, `w+i` for the top section and `w+h-i-1` = `w+h+~i` for the bottom section. These formulas also work for the hexagon. Note that the numbers have to be multiplied by 2 to account for the spaces.
For the square and triangle, the width of the output is restricted to `w`. Therefore the formula for the centre section becomes `w+n/6*~-w` to cover all shapes . For the triangle, the width of the output is further restricted to `1+i`. Therefore the formula for the top section becomes `w**k+i` to cover all shapes.
[Answer]
# JavaScript (ES8), ~~191 176 174~~ 171 bytes
Takes input as `(type)(string)`, where the 1st parameter is `0123` instead of `TSHO` and the 2nd parameter is an array of characters.
```
i=>g=(s,n=1,p=0)=>s[o=(h=k=>k?(F=j=>j?s.slice(p,p+=w+=k&6?k&2&&1:-1).join` `.padStart(n*2+w)+`
`+F(j-1):'')(n-k%2)+h(k>>3):'')([2,4,10,106][i],w=i>1?n-1:n*i),p]?g(s,n+1):o
```
[Try it online!](https://tio.run/##fZHBTsJAEIbvPIURbHfZbdMtiKS6W01MD3DQSIRDU9OmQNlt2ZYu0iiGV68l4sGEmMxpvv@bzGREtItUXPJia8h8vqiXtOaUJRQoLCnBBbUgZcrPKVjRlLLUBR4VlAlXmSrj8QIUuEC0QjTVBm6q2ZpGHINAU@RchhehWUTzyTYqt0B2bVRBFLZC5AHRRBxdh0Aa6ZUN0QqkjPV@Wr6N@5hYTQ0Cnwe4opwRVxrEkV0OcRG4yXE51EzI6ziXKs8WZpYnYAl6jW2a5iUnaDzcv1VqdhlA2Pobsk8hXJLDjvez/ewelXe7z@fb9YY5w2QUJ0lHhJ0Xb/U4PeOTk2@NEDqDrRMeS3/6If7x29eH9Rn8e4PeTcDDqzc9PL3bzSdubKV/TQjZaIKi9tGrvwE "JavaScript (Node.js) – Try It Online")
## How?
The shape of each polygon is encoded as groups of 3 bits, packed into a single integer.
Each group of bits is decoded as follows:
* **bit 0**: if set, repeat \$n-1\$ times; if cleared, repeat \$n\$ times
* **bits 1-2**: if both bits are cleared, decrement the width at each iteration; if only bit 1 is set, increment the width after at iteration; otherwise, leave it unchanged
The initial width of the shape is:
$$w=\cases{
0,&\text{if $i=0$}\\
n,&\text{if $i=1$}\\
n-1,&\text{if $i>1$}
}$$
### Triangle (\$i=0\$)
```
..1
.1.1
1.1.1
```
One group: repeat \$n\$ times, increment the width → encoded as \$2\$
### Square (\$i=1\$)
```
1.1.1
1.1.1
1.1.1
```
One group: repeat \$n\$ times, leave the width unchanged → encoded as \$4\$
### Hexagon (\$i=2\$)
```
..1.1.1
.1.1.1.1
1.1.1.1.1
.2.2.2.2
..2.2.2
```
Two groups:
* group 1: repeat \$n\$ times, increment the width → encoded as \$2\$
* group 2: repeat \$n-1\$ times, decrement the width → encoded as \$1\$
Final encoding: \$2+8\times1=10\$
### Octagon (\$i=3\$)
```
..1.1.1
.1.1.1.1
1.1.1.1.1
2.2.2.2.2
2.2.2.2.2
.3.3.3.3
..3.3.3
```
Three groups:
* group 1: repeat \$n\$ times, increment the width → encoded as \$2\$
* group 2: repeat \$n-1\$ times, leave the width unchanged → encoded as \$5\$
* group 3: repeat \$n-1\$ times, decrement the width → encoded as \$1\$
Final encoding: \$2+8\times5+8^2\times1=106\$
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 70 bytes
```
≔⁰ζWφ«⎚≦⊕ζ≔∨⁼θ3ζδ≔E⮌ηκφP⪫Eδ⊟φ F§⪪”;↧↷$↑R{P≧⍘”,IθF⊖ζ«M✳Iκ≧⁺⁻⁶IκδP⪫Eδ⊟φ
```
[Try it online!](https://tio.run/##jY9fT4MwFMWf4VM0mLhbrYnMDEzMHsimyUzIli36TqBApRZoC5rp9tWxMPzz6EPvQ@/vnHtOnEcyLiPedYFSLBNwTdAe39lvOeMUQYrRh20tOI0kmF8rjKqRW4lY0lcqNE1OCmtcrCXc103EFdQEOTcO7tcEJX8Q4wJb2lKpKORmV5iXDvYN16ySTGh4LNkJNPabsjJJDOQgB/dcWkoEgV6JhL7DruJMg0Nmnk/IjHhm@I5hSX96ESkNNcYYDZol/UkNezyUs8KypbBkksaalQIGRYGHO799tyzLNWx4owgKmWgUeKN5gb/b/Tv@wT503a09ucggeHp4Pq6bqZi7/lRNPneuW5@/zC/PuquWfwE "Charcoal – Try It Online") Link is to verbose version of code. Takes input as the number of sides and the characters. Explanation:
```
≔⁰ζ
```
Keep track of the size of the polygon.
```
Wφ«
```
Repeat until we find a size that consumes the input. (This variable is predefined to the truthy value `1000` but I'm going to redefine it.)
```
⎚
```
Clear the previous attempt from the canvas.
```
≦⊕ζ
```
Increment the polygon size.
```
≔∨⁼θ3ζ
```
Calculate the number of characters in the first row, which is `1` for the triangle and the size for the other shapes.
```
δ≔E⮌ηκφ
```
Convert the characters from a string into a list and reverse them. This allows us to iterate over them by popping from the list, which will become empty if we pop all of them.
```
P⪫Eδ⊟φ
```
Print the first row of the polygon.
```
F§⪪”;↧↷$↑R{P≧⍘”,Iθ
```
Loop over one of four strings, `5`, `6`, `57` or `567`, depending on the number of sides. These correspond to the Charcoal directions of the left-most character in each row.
```
F⊖ζ«
```
Loop for one fewer row than the polygon size.
```
M✳Iκ
```
Move in the desired direction.
```
≧⁺⁻⁶Iκδ
```
Calculate the number of characters in this row.
```
P⪫Eδ⊟φ
```
Print the row.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 32 bytes
```
∞εLDN+DûsÂćNиì«yDи)¹è}.ΔO∍Q}£».c
```
[Try it online!](https://tio.run/##yy9OTMpM/f//Uce8c1t9XPy0XQ7vLj7cdKTd78KOw2sOra50ubBD89DOwytq9c5N8X/U0RtYe2jxod16yf//G3JFK@ko6SgoFYEIQxBRByLKQEQmiDABETkgohpEhIMIBxChDddmA9dRBSICQIQ1iMgFEYUgwg5EWIEICxCRDiK8QEQynAsmVEBEFohIgHODQIQbiMgAES4gIkwpFgA "05AB1E – Try It Online")
First input is 0 for triangle, 1 for hex, 2 for oct, 3 for square. Second input is a list of characters. The program will hang forever if the list isn't of a valid length.
```
∞ # infinite list [1, 2, 3...]
ε } # map each integer y to a polygon with side length y:
L # range 1..y (=> triangle)
D # duplicate
N # 0-based iteration count (effectively y-1)
+ # vectorized add, yielding y..(2y-1)
D # duplicate
û # palindromize (=> hexagon)
s # swap to get the other copy of y..(2y-1)
 # push a reversed copy: (2y-1)..y
ć # head extract: 2y-1
Nи # repeat that y-1 times
ì # prepend that to the reversed list
« # append it to the original list (=> octogon)
y # push y
Dи # repeat it y times (=> square)
) # wrap all polygons in a list
¹è # index into the list using the first input
.Δ } # get the first polygon such that:
O # its sum
∍Q # is equal to the length of the input
£ # cut the input in this shape
» # join by newlines, joining sublists with spaces
.c # center
```
[Answer]
# [Python 3](https://docs.python.org/3/), ~~600~~ ~~548~~ ~~503~~ ~~458~~ ~~358~~ ~~349~~ ~~346~~ ~~326~~ 324 bytes
```
lambda n,s:p(s,q(s,(0,1,1,1.2)[n],(1,.5,3,5)[n]),n)
q=lambda s,p,q:int(p/2+(p*p/4+len(s)/q)**.5)
g=lambda s,j,i,c,n=1,l=[]:s and-~i and g(s[i:],j,i+(-1,1,0)[(2,1,n<j,(n<j*2-1)+(0<=n-j<j-1))[c]],c,n+1,l+[s[:i]])or l
p=lambda s,k,c:"\n".join([" ".join(i).center(k*(1,(2,4)[c>1])[c>0]-2)for i in g(s,(0,k)[c>1],(k,0)[c==1],c)])
```
[Try it online!](https://tio.run/##fVFRT8IwEH7nVyzDaLtexzogksmMKPEBHzQa4WHWiANmxyjbihrF8NexDSgPEtPcXa/39fuu1/xj8TKX9fUkfFhnw9nzaGhJUEGOFBTakAfMLNfHkeSAGLhNqEPTZBgkrhTh9paCHIpAyAXKaz5BuZPXGiQbS6RwrcCO4zZxJdmBUxAQgwwZZGHEA2UN5YiuhAlWglQkAm4wBFGj7@EI@TrKdgpIO8enDBPktUNJ03aqExzFnBtGohlJpKJAcI7npZVV8p3qFOLAfpC2m86FRJFtbXcCu/FYLsYlmjr6jVqroQlPGTfe49THE00lLCFNc2Yq000d0NQ0F4eh3seY43VemhlMNMT2eoTYGFc2Rz/xt0Rpter@re9wDGxKCalWjd9H9Av4j8UHG0q2ehONbDk4I2X77fPmZFacBq2kFyfJQfp0cHv50u3vE9B3O@cXXW3/KdTBFoxctZaP72qwj0YDjpwEde4v@6vrV1//@rGvjr7uGCsO05CY9tff "Python 3 – Try It Online")
I Know it is a bit long but i want to commit it and improve it over time...
The inputs are:
0 = Triangle
1 = square
2 = Hexagon
3 = Octagon
Thanks to:
- @caird coinheringaahing for saving 2 bytes
] |
[Question]
[
### Challenge:
Your program will take two integers `n` and `k` as input, and output the smallest integer greater than (but not equal to) `n` that contains at least `k` occurrences of the digit `5`.
You can assume `1 ≤ k ≤ 15` and `1 ≤ n < 10**15`.
This is a [restricted-time](/questions/tagged/restricted-time "show questions tagged 'restricted-time'") challenge. Your program must run on [TIO](https://tio.run/) for all of the test cases and complete within 10 seconds in total.
## General rules:
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest answer in bytes wins.
Don't let code-golf languages discourage you from posting answers with non-codegolfing languages. Try to come up with an as short as possible answer for *any* programming language.
* [Standard rules apply](https://codegolf.meta.stackexchange.com/questions/2419/default-for-code-golf-program-function-or-snippet/2422#2422) for your answer with [default I/O rules](https://codegolf.meta.stackexchange.com/questions/2447/default-for-code-golf-input-output-methods/), so you are allowed to use STDIN/STDOUT, functions/method with the proper parameters and return-type, full programs. Your call. The function parameters may be taken in either order, but please specify in your answer.
* [Default Loopholes](https://codegolf.meta.stackexchange.com/questions/1061/loopholes-that-are-forbidden-by-default) are forbidden.
* You must add a link with a test for your code (i.e. [TIO](https://tio.run/#)).
* The answer header should list the score in bytes but also the total time taken for all test cases on TIO
* If your language is not on TIO, the code should finish far under 10 seconds on your machine so that you're confident it's fast enough on any reasonable computer.
* Adding an explanation for your answer is highly recommended.
### Test Cases:
```
(n, k) -> output
(53, 2) -> 55
(55, 1) -> 56
(65, 1) -> 75
(99, 1) -> 105
(555, 3) -> 1555
(557, 1) -> 558
(5559, 3) -> 5565
(6339757858743, 5) -> 6339757859555
(99999999999999, 15) -> 555555555555555
```
### Program Example:
[This program](https://ideone.com/JDJchY) is correct.
[Answer]
# [R](https://www.r-project.org/), ~~85~~ ~~84~~ ~~76~~ 74 bytes, 0.250s on TIO
```
f=function(n,k,m=nchar(gsub("[^5]","",n+1))-k)`if`(m<0,f(n+.1^m/50,k),n+1)
```
[Try it online!](https://tio.run/##VY7RDoIgGIXvewpGNzCxVPpBtuxFWs5yUc6JTvP5CcN0/nffOYdv9LbtPlVrBjKUVfc0WcKp1ZkeTTnFxLCaNZkp3/eevIbxQfA1hxtmGDMTxJSGNS0qXZDmHDFNTHCI8@YIEavpr7eaAGcooXsUXhDAzjEwFM8sHIuV5dQrtXAc@QduwecEZodcJZD6kVpWAGJaCc6VBJlCKk/uE@DLJVXepTbntPCXbM5@AQ "R – Try It Online")
-1 byte thanks to Robert S.
-8 bytes thanks to Giuseppe.
The `nchar(gsub(...))` part counts the number of `5`s.
A simple recursive solution would be to increment by 1 until the answer is found, but this would not meet the time restriction. To meet the time restriction, this function makes use of the fact that if there are p missing 5s, we can increment by `2*10^(p-2)` (represented as the golfier `.1^m/50`, with `m=-p`).
Note that when p=1, the increment becomes 0.2. This is OK, since after 5 steps we come back to an integer, and none of the decimal numbers encountered in the mean time have an extra 5. If instead we were to increment by `5*10^(p-2)` or by `1*10^(p-2)`, then we would find f(24, 1)=24.5 instead of 25 for example.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 37 bytes 0.113 s on TIO
```
»DL‘Ɗ}©5xḌ_DḌÐƤ;®ŻṬ€UḌ¤+⁹D=5S>ʋƇ⁸’¤ḟṂ
```
[Try it online!](https://tio.run/##y0rNyan8///QbhefRw0zjnXVHlppWvFwR0@8C5A4POHYEutD647ufrhzzaOmNaFAoUNLtB817nSxNQ22O9V9rP1R445HDTMPLXm4Y/7DnU3/j056uHOGzqOGOQq6dgqPGubqHF7uoM91uB2oOfL//2hTYx0Fo1idaFNTHQVDIG0GpS0tIbQpSMIYwrCEsCxRAFCZKVjaHGqAsbGluam5hamFuQnQbNNYAA "Jelly – Try It Online")
This works by
1. working out the maximum of the number of digits in the input plus one and `k`, and making a number with that many fives
2. Subtracting the input from that number
3. Generating all of the suffixes of that number
4. Also generating all the powers of ten from 1 up to the next one greater than the input
5. Adds each of the numbers in 3 and 4 to the input
6. Removes answers with too few 5’s
7. Filters out the input from the answers
8. And returns the minimum
[Answer]
# [Stax](https://github.com/tomtheisen/stax), 17 [bytes](https://github.com/tomtheisen/stax/blob/master/docs/packed.md#packed-stax) (6.861 total seconds on TIO)
```
≈ª╞¥é£ôñτ←╝α┴╢JLd
```
[Run and debug it](https://staxlang.xyz/#p=f7a6c69d829c93a4e71bbce0c1b64a4c64&i=2+53%0A1+55%0A1+65%0A1+99%0A3+555%0A1+557%0A3+5559%0A5+6339757858743%0A15+99999999999999%0A&a=1&m=2)
This program takes `k` and `n` on standard input separated by space. Stax doesn't have a convenient way to run multiple test cases on TIO, so I ran each input separately and added up the time. 99% of the time is in the interpreter process startup. Using the javascript interpreter on staxlang.xyz, all test cases run in 50 milliseconds.
[Last test case on Try it online!](https://tio.run/##Ky5JrPj//1Fnx6FVj6bOO7T08MpDiw9vObzxfMujtgmPps49t/HRlC2Ppi7y8kn5/9/QVMESBQAA "Stax – Try It Online")
**Procedure**:
1. Increment input
2. If there are enough `5`s, terminate and print
3. `t`= number of trailing `5`s in the number
4. Add `10 ** t`
5. Goto 2
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~33~~ ~~32~~ 31 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
sg>‚à©5s×α.s0š®Ý°0šâO+IKʒ5¢¹@}ß
```
Port of [*@NickKennedy*'s amazing approach in his Jelly answer](https://codegolf.stackexchange.com/a/182378/52210), so make sure to upvote him!!
Takes \$k\$ as first input; \$n\$ as second.
[Try it online](https://tio.run/##AUgAt/9vc2FiaWX//3NnPuKAmsOgwqk1c8OXzrEuczDFocKuw53CsDDFocOiTytJS8qSNcKiwrlAfcOf//85CjYzMzk3NTc4NTg3NDM) or [verify all test cases](https://tio.run/##yy9OTMpM/V9Waa@koGunoGRfmRAWGukS8b843e5Rw6zDCw6tNC0@PP3cRr1ig6MLD607PPfQBiDj8CL/SO1I71OTTA8tinCoPTz/v87/6GgjHVPjWJ1oQx1TUzBlBqEsLYGUMVDQFCppDqSNoDRYHKTAVMfM2NjS3NTcwtTC3ARsjilQKzIAilmiqYoFAA).
**Explanation:**
```
sg> # Get the length+1 of the second (implicit) input-integer
‚à # Pair it with the first input-integer, and leave the maximum
© # Store this maximum in the register (without popping)
5s× # Create an integer (actually, create a string..) with that many 5s
α # Take the absolute difference with the second (implicit) input
.s # Get the prefixes of that number
0ª # Prepended with an additional 0
® # Get the maximum from the register again
Ý # Create a list in the range [0, max]
° # Raise 10 to the power of each integer
0ª # And also prepend an additional 0 to this list
â # Then create each possible pair of these two lists
O # Sum each pair
+ # Add the second input to each sum
IK # Then remove the second input from this list (if present)
ʒ # And filter this list by:
5¢ # Count the amount of 5s in the integer
¹@ # And check if this count is larger than or equal to the first input
}ß # After the filter: only leave the lowest number
# (which is output implicitly as result)
```
[Answer]
# [Perl 5](https://www.perl.org/) `-pl`, 44 bytes
```
$k=<>;$_++;s/.*?(?=5*$)/1+$&/e while$k>y/5//
```
[Try it online!](https://tio.run/##TYpBCsIwFET3OYWLINrQ/sY4TUNtewLP4CpgabDBCuLl/X5x4ywe85jJ8Z7ArOf@NHT6Yky3UlWMu7FHofdkjd5S3DyvU4p6Hl4EImY4dVCAsqr5IgQBxJ3Q/3oQaZwLHr5F648yye8/yuK95Me03FYuz6hqW3OZ0wc "Perl 5 – Try It Online")
Finds what the number is without its trailing 5s. Increments that portion by 1. Continues until sufficient 5s are in the number. Takes about .012s on TIO to run all test cases.
[Answer]
# [Python 3](https://docs.python.org/3/), ~~144~~ ~~98~~ ~~86~~ 75 bytes
```
f=lambda N,k,d=1:k>str(-~N).count("5")and f(N+-(-~N//d+5)%10*d,k,d*10)or-~N
```
[Try it online!](https://tio.run/##VZDBboMwDIbvPIVVaVLcmpUsMyGV2CPwAtMOrClqxZZUkB122auzpBSk@vb9/29b9vU3nL1T09TVX@33p22hoZ5sLQ/92xgGkf81@Hz0Py6IDW@wdRY60ezyZOz3dsf4JIutTT1bWaAfoj6F0xiO7XgaoX7PhGBF8IIEzEgJmUAmLG9Y3lHPrjEzymJJR18lgdd@fR/A1RIxc4a5nDOlUkazrrjSr3F7FGGVzDLIPFTagMSPhdlH1vkBhKMeycPFwXrcIQO4Dpf4me5m5x6nfw "Python 3 – Try It Online")
This is \$\mathcal{O}(k)\$, (system time .008 on TIO) and has golfed well with some advice from ASCII-only.
The algorithm is to round up each digit (starting from the least-significant one) to the nearest value of 5 until the new number's decimal representation has the desired count.
The original approach used an abortable (D=iter(range(k)) and list(D) at work here) list comprehension, but @ASCII-only has convinced me that will never win code-golf. I dislike recursion, but if the algorithm is written to minimize recursion-depth, then a future compiler/interpreter will be smart enough to re-implement it as a while loop.
[Answer]
# [PHP](https://php.net/), ~~109~~ 97 bytes, (< 0.03s on TIO)
```
function($n,$k){++$n;do if(count_chars($n)[53]>=$k)return$n;while($n+=10**strspn(strrev($n),5));}
```
[Try it online!](https://tio.run/##VZAxb4MwEIVn/CtOEQNOLAVKDUGUdKrUoVKzI4QQcQpNZSPbaYcov50eIaHllpO@9@7d2V3T9U/PXdMRobXSpRad0raVH55PU0JcK4w1kEFOAHLgIYMHKJjjOOs1cD5CziBACDcaXWl0oyOMR2uS/IeBfw9Ab/iH@RQcz5P55u5PxoFJiMaJKAyTmMcbvokf8VR@taBh4sk9O5kVrhm8Y9asSDH8gjzyrD@cZG1bJT1XMvdIz6uVK9O9gvbg1eokbVk3lTao0pyHxTZDjxb2pCXafpr2S6C0ygJ/uTRWm0562LT4HgYYpzS99LjqoLSo6ga8289XBlxL4YxHi7pR8GmULIWs1V54V4XBArItLBgMVw4s9/HV2IICKIPd6658eX9LHXIh/S8 "PHP – Try It Online")
Based on @recursive's [algorithm](https://codegolf.stackexchange.com/a/182433/84624).
[Answer]
# [Retina](https://github.com/m-ender/retina/wiki/The-Language), 63 bytes
```
.+$
*
^.+
$.(*__
/((5)|.)+¶(?<-2>_)+$/^+`^.*?(?=5*¶)
$.(*__
1G`
```
[Try it online!](https://tio.run/##K0otycxLNPyvqhGcoPNfT1uFS4srTk@bS0VPQys@nktfQ8NUs0ZPU/vQNg17G10ju3hNbRX9OO2EOD0tew17W1OtQ9s0YYoN3RP@/zcx1THkMjXWMeIyBbHMQISlJUgMyDcGkuYQtiWQY2ZsbGluam5hamFuYqxjClSHDHQMTQE "Retina – Try It Online") Takes `n` and `k` on separate lines, but link includes header that converts the test suite into the appropriate format. Explanation:
```
.+$
*
```
Convert `k` to unary.
```
^.+
$.(*__
```
Increment `n`. The `*` repeats its right argument (here the first `_` character) the number of times given by its left argument (which, as here, defaults to the match). This results in a string of that length. The `$(` (the `)` is implied) then concatenates that with the second `_` and the `.` causes the resulting length to be taken. (Actually Retina 1 is cleverer than that and just performs the calculation on the underlying lengths in the first place.)
```
/((5)|.)+¶(?<-2>_)+$/
```
Test whether enough `5`s can be found in `n` to match the `_`s of the unary representation of `k`. This test has been golfed and would be three times faster with `^` added after the initial `/` and faster still if `[^5]` was used instead of `.`.
```
^+`
```
Until the test passes...
```
^.*?(?=5*¶)
$.(*__
```
... increment `n` but exclude trailing `5`s.
```
1G`
```
Delete `k`.
[Answer]
# [C (gcc)](https://gcc.gnu.org/), ~~159~~ ~~158~~ ~~152~~ ~~150~~ 149 bytes, ~0.04 s
Outputs the answer to STDOUT, with leading zeroes.
-3 byte thanks to [ceilingcat](https://codegolf.stackexchange.com/users/52904/ceilingcat)
```
m,j;f(n,k)long n;{char*t,s[17];for(t=s+sprintf(s,"%016ld",++n),m=n=0;m<k&--t>s;m<k&&*t-53?n=*t>53,*t=53:0)for(*t+=n,m=j=17;j--;)m-=s[j]!=53;puts(s);}
```
[Try it online!](https://tio.run/##TY3LjsIwDEXX8BUFCZSkidQS0tAxYT4EsUBFBQoxqDErxLd3UkY8vDqy7z2u1L6qus7LBmqG8sTPF9wnCPfqsG0FybDO7QbqS8vIhTRc2yNSzYIcT7K8OO/GMk2RS@/QZeCXp6lStApPmgpSRv@iE7QyWgpyRv9kvFcJSh3GUuNyC41SwL1yYd1sRjED1xsFFjg8uvgr8dsjMj68Dwc1i5pkxuGJRib5PxYfLMs3mj6hX2y/9@X7UGhdWmMXZmHn0W1elu@JzX7/6P4A "C (gcc) – Try It Online")
[Answer]
# [Ruby](https://www.ruby-lang.org/), 41 bytes
```
->n,k{(n+1..).find{_1.to_s.count(?5)>=k}}
```
[Attempt This Online!](https://ato.pxeger.com/run?1=m72kqDSpcsEiN9ulpSVpuhY3NXXt8nSyqzXytA319DT10jLzUqrjDfVK8uOL9ZLzS_NKNOxNNe1ss2troRoUChTcok2NdYxiucAsU1MdYzjTEsiGqFuwAEIDAA)
] |
[Question]
[
In this task you are given an odd number of white balls and the same number of black balls. The task is to count all the ways of putting the balls into bins so that in each bin there is an odd number of each color.
For example, say we have 3 white balls. The different ways are:
```
(wwwbbb)
(wb)(wb)(wb)
```
for the two different possibilities.
If we have 5 white balls the different ways are:
```
(wwwwwbbbbb)
(wwwbbb)(wb)(wb)
(wwwb)(wbbb)(wb)
(wb)(wb)(wb)(wb)(wb)
```
You can take the input, which is a single integer, in any way you like. The output is just a single integer.
Your code must be fast enough so that you have seen it complete for 11 white balls.
You can use any language or library that you like.
[Answer]
# Python 3, 108 bytes
```
C=lambda l,r,o=():((l,r)>=o)*l*r%2+sum(C(l-x,r-y,(x,y))for x in range(1,l,2)for y in range(1,r,2)if(x,y)>=o)
```
Recursively enumerates all sets, making sure to not get duplicates by always generating the sets in order. Reasonably fast when memoized using `C = functoools.lru_cache(None)(C)`, but this is not necessary for `n = 11`.
Call `C(num_white, num_black)` to get your result. First couple of `n`:
```
1: 1
3: 2
5: 4
7: 12
9: 32
11: 85
13: 217
15: 539
17: 1316
19: 3146
21: 7374
```
To generate the results:
```
def odd_parts(l, r, o=()):
if l % 2 == r % 2 == 1 and (l, r) >= o:
yield [(l, r)]
for nl in range(1, l, 2):
for nr in range(1, r, 2):
if (nl, nr) < o: continue
for t in odd_parts(l - nl, r - nr, (nl, nr)):
yield [(nl, nr)] + t
```
E.g. for (7, 7):
```
[(7, 7)]
[(1, 1), (1, 1), (5, 5)]
[(1, 1), (1, 1), (1, 1), (1, 1), (3, 3)]
[(1, 1), (1, 1), (1, 1), (1, 1), (1, 1), (1, 1), (1, 1)]
[(1, 1), (1, 1), (1, 1), (1, 3), (3, 1)]
[(1, 1), (1, 3), (5, 3)]
[(1, 1), (1, 5), (5, 1)]
[(1, 1), (3, 1), (3, 5)]
[(1, 1), (3, 3), (3, 3)]
[(1, 3), (1, 3), (5, 1)]
[(1, 3), (3, 1), (3, 3)]
[(1, 5), (3, 1), (3, 1)]
```
[Answer]
# Pari/GP, 81 bytes
```
p=polcoeff;f(n)=p(p(prod(i=1,n,prod(j=1,n,1+(valuation(i/j,2)==0)*x^i*y^j)),n),n)
```
For more efficiency, replace `1+` with `1+O(x^(n+1))+O(y^(n+1))+` (the first `O` term alone already helps a lot).
[Try it online!](https://tio.run/##lc1BCsIwEAXQvSf500ZsBJc5gzcIBNvYCWUSQpX29DEtiluFv3h/MfOTy3y8p1I8hEyK0y0O3uOLHHuw0UrUzrATusXTTQ83cxTwKagzGdNRs1huVhuISMmWMv759orFQlpNVLl@@NvYIWWWGR663rzLiEst5QU "Pari/GP – Try It Online") (earlier 86 byte version with a pair of unneeded parens and without the `p=` abbreviation)
### Old version, 90 bytes
```
f(n)=polcoeff(polcoeff(taylor(1/prod(i=0,n,prod(j=0,n,1-x^(2*i+1)*y^(2*j+1))),x,n+1),n),n)
```
Computing `f(11)` needs a bigger stack size, the error message will tell you how to increase it. It's more efficient (but less golfy) to replace the two `n` that appear as second arguments to `prod` with `(n-1)/2`.
[Answer]
# [Python 3](https://docs.python.org/3/), ~~180~~ 172 bytes
```
def f(n):
r=range;N=n+1;a=[N*[0]for _ in r(N)];R=r(1,N,2);a[0][0]=1
for i in R:
for j in R:
for k in r(N-i):
for l in r(N-j):a[k+i][l+j]+=a[k][l]
return a[n][n]
```
[Try it online!](https://tio.run/##PU9BCoMwELz7ir01aRS03gzpE3LwGkIJ1LRRWSXYQxHfniahLcxhZ3Z2mF3f23PBNoT7YMESpF0BXniDj4FLgazhRih5VrW2i4cbOARPJNW8F540pSwvlJu4jRBNAcnkkqmPOZmNf5bp9E2oHM1aFuefONLOqIk5rWY2aiYiiaOOlYbt5RGMQh0R0hHmo1Q09mjrFLd6hxuxpx0PqK6wp3@OEw0f "Python 3 – Try It Online")
Straightforward implementation of the generating function. Long but (somewhat) efficient. O(n4) time, O(n2) memory.
The resulting array `a` contains all results of all sizes up to `n`, although only `a[n][n]` is returned.
[Answer]
# [Python 2](https://docs.python.org/2/), ~~168~~ 181 bytes
```
from itertools import*
r,p=range,product
def f(n):
a,R=eval(`[[0]*n]*n`),r(1,n,2);a[0][0]=1
for i,j in p(R,R):
for k,l in p(r(n-i),r(n-j)):a[k+i][l+j]+=a[k][l]
return a[-1][-1]
```
[Try it online!](https://tio.run/##JY7BjsMgDETvfIVvhcZIJXvrKv2IXBFS0ZbskqYGubRqvz6FrDSW7CfNePK7/CXq13XidINYApeUljvEW05c9oIxD@zpN2DmdHn8FHEJE0yS1FGAx3EIT7/Is7UHt6eqs0KWBgl79e0rrBqMgCkxRJwhEmQ54tjcG7zi8g9Zko7NTHpW6ujttYvOLt3suqEedXUCOJQHE3irjWuztghqAa@tpOzxy9TXNT1zpAKkDcJOn3a4dV4/ "Python 2 – Try It Online")
* Based on [user202729's answer](https://codegolf.stackexchange.com/a/162331/58557).
* **Edit:** Made it an independent function.
* Saved 2 bytes thanks to [user202729](https://codegolf.stackexchange.com/users/69850/user202729).
] |
[Question]
[
[<< Prev](https://codegolf.stackexchange.com/questions/149746/advent-challenge-2-the-present-vault-raid) [Next >>](https://codegolf.stackexchange.com/questions/149861/advent-challenge-4-present-assembly-line)
Unfortunately, Santa was not able to catch the elves in time! He has to go back to manufacturing presents now. Since the elves are definitely not Santa's slaves, he has to figure out the expenses for how much to pay them.
# Challenge
Given some information for the presents, determine the cost of manufacturing all of them.
Each present is put in a cardboard box and wrapped with wrapping paper, with a ribbon wrapped around it at the very end. The wrapping paper is magical and requires no overlap, so the amount of wrapping paper used is precisely equivalent to the surface area of the box. All presents are rectangular prisms because that way Santa can store them more compactly. The ribbon goes around in all three directions (so the length of ribbon used for wrapping is equal to the sum of the three different perimeters).
The present itself has a known cost, fortunately. Cardboard costs $1 per square meter, and wrapping paper costs $2 per square meter. (Hint: You can just multiply the surface area by 3 :P). Ribbon costs $1 per meter.
# Format Specifications
The input will be given as a list of presents where each present contains the cost of the actual item and the three dimensions of the present box. Your output should be the total cost required.
To be exact, the formula for the cost of a single present with item cost `c` and dimensions `x`, `y`, and `z` is `c + 6 * (x * y + y * z + z * x) + 4 * (x + y + z)`.
# Test Cases
```
[[7, 8, 6, 7], [7, 7, 5, 5], [8, 9, 6, 7], [6, 5, 10, 10], [5, 9, 6, 7], [9, 9, 10, 6], [8, 10, 10, 6], [6, 5, 7, 9], [7, 10, 8, 8], [5, 9, 9, 10]] -> 11866
[[5, 10, 8, 9], [8, 8, 5, 8], [8, 7, 7, 6], [5, 9, 9, 10], [9, 7, 5, 8], [9, 8, 9, 5], [7, 5, 6, 7], [5, 7, 6, 10]] -> 8854
[[9, 8, 8, 8], [10, 9, 8, 5], [10, 7, 5, 5], [10, 10, 6, 6], [8, 5, 8, 7]] -> 4853
[[7, 7, 8, 10], [8, 10, 7, 8], [9, 7, 7, 8], [8, 5, 10, 5], [6, 6, 6, 8], [8, 9, 7, 5], [8, 5, 6, 5], [7, 9, 8, 5], [10, 10, 10, 8]] -> 9717
[[5, 8, 9, 7], [5, 8, 7, 10], [5, 7, 7, 6], [5, 5, 5, 6], [9, 9, 5, 7], [5, 6, 7, 8], [8, 5, 8, 7], [6, 9, 5, 5], [10, 10, 9, 10]] -> 9418
[[9, 9, 7, 10], [5, 8, 7, 9], [5, 5, 9, 8], [10, 5, 9, 10], [8, 5, 10, 7], [8, 9, 5, 5], [5, 10, 6, 10]] -> 8178
[[5, 9, 5, 8], [7, 8, 10, 6], [7, 10, 7, 10], [8, 9, 7, 5], [5, 7, 8, 6], [9, 9, 6, 10], [6, 5, 9, 9], [7, 9, 9, 9]] -> 9766
[[7, 10, 5, 10], [8, 10, 8, 9], [8, 6, 7, 8], [6, 9, 8, 5], [6, 7, 10, 9], [7, 6, 5, 8]] -> 7118
[[10, 6, 7, 5], [5, 9, 5, 9], [9, 7, 8, 5], [6, 6, 9, 9], [9, 9, 6, 9], [10, 5, 8, 9], [7, 5, 6, 10], [9, 10, 5, 5]] -> 8007
[[8, 10, 7, 8], [9, 10, 5, 8], [6, 7, 5, 6], [10, 10, 9, 8], [7, 5, 8, 9], [10, 10, 6, 7], [10, 8, 9, 10], [5, 10, 5, 5]] -> 9331
```
# Rules
* Standard Loopholes Apply
* The input and output may be given and presented in any reasonable format
* You must take the input as a list of presents, not 4 lists of the attributes.
* This is a [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest answer in bytes wins
* No answers will be accepted
Hopefully this challenge is easier than the previous ones :P
Note: I drew inspiration for this challenge series from [Advent Of Code](http://adventofcode.com/). I have no affiliation with this site
You can see a list of all challenges in the series by looking at the 'Linked' section of the first challenge [here](https://codegolf.stackexchange.com/questions/149660/advent-challenge-1-help-santa-unlock-his-present-vault).
[Answer]
# JavaScript (ES6), 58 bytes
```
a=>a.reduce((p,[c,x,y,z])=>p+c+6*(y*z+x*(y+=z))+4*(x+y),0)
```
### Test cases
```
let f =
a=>a.reduce((p,[c,x,y,z])=>p+c+6*(y*z+x*(y+=z))+4*(x+y),0)
console.log(f([[7, 8, 6, 7], [7, 7, 5, 5], [8, 9, 6, 7], [6, 5, 10, 10], [5, 9, 6, 7], [9, 9, 10, 6], [8, 10, 10, 6], [6, 5, 7, 9], [7, 10, 8, 8], [5, 9, 9, 10]])) // 11866
console.log(f([[5, 10, 8, 9], [8, 8, 5, 8], [8, 7, 7, 6], [5, 9, 9, 10], [9, 7, 5, 8], [9, 8, 9, 5], [7, 5, 6, 7], [5, 7, 6, 10]])) // 8854
console.log(f([[9, 8, 8, 8], [10, 9, 8, 5], [10, 7, 5, 5], [10, 10, 6, 6], [8, 5, 8, 7]])) // 4853
console.log(f([[7, 7, 8, 10], [8, 10, 7, 8], [9, 7, 7, 8], [8, 5, 10, 5], [6, 6, 6, 8], [8, 9, 7, 5], [8, 5, 6, 5], [7, 9, 8, 5], [10, 10, 10, 8]])) // 9717
console.log(f([[5, 8, 9, 7], [5, 8, 7, 10], [5, 7, 7, 6], [5, 5, 5, 6], [9, 9, 5, 7], [5, 6, 7, 8], [8, 5, 8, 7], [6, 9, 5, 5], [10, 10, 9, 10]])) // 9418
console.log(f([[9, 9, 7, 10], [5, 8, 7, 9], [5, 5, 9, 8], [10, 5, 9, 10], [8, 5, 10, 7], [8, 9, 5, 5], [5, 10, 6, 10]])) // 8178
console.log(f([[5, 9, 5, 8], [7, 8, 10, 6], [7, 10, 7, 10], [8, 9, 7, 5], [5, 7, 8, 6], [9, 9, 6, 10], [6, 5, 9, 9], [7, 9, 9, 9]])) // 9766
console.log(f([[7, 10, 5, 10], [8, 10, 8, 9], [8, 6, 7, 8], [6, 9, 8, 5], [6, 7, 10, 9], [7, 6, 5, 8]])) // 7118
console.log(f([[10, 6, 7, 5], [5, 9, 5, 9], [9, 7, 8, 5], [6, 6, 9, 9], [9, 9, 6, 9], [10, 5, 8, 9], [7, 5, 6, 10], [9, 10, 5, 5]])) // 8007
console.log(f([[8, 10, 7, 8], [9, 10, 5, 8], [6, 7, 5, 6], [10, 10, 9, 8], [7, 5, 8, 9], [10, 10, 6, 7], [10, 8, 9, 10], [5, 10, 5, 5]])) // 9331
```
### How?
The only trick used here is to factorize **(xy + xz)** as **x(y + z)** and re-use the sum **(y + z)** in the last part of the formula.
```
a => a.reduce( // for each present in a:
(s, [c, x, y, z]) => // s = sum, [c, x, y, z] = present parameters
s + // add to s:
c + // c
6 * (y * z + x * (y += z)) + // 6(yz + x(y + z))
4 * (x + y), // 4(x + (y + z))
0 // initial sum = 0
) // end of reduce()
```
[Answer]
# Mathematica, 34 bytes
```
Tr[#+6#2(+##3)+6##3+4(+##2)&@@@#]&
```
-10 bytes from @alephalpha
[Try it online!](https://tio.run/##y00syUjNTSzJTE78n2b7P6QoWlnbTNlIQ1tZ2VgTyFI21jYBcYw01RwcHJRj1f4HFGXmlTikRVdXW@pYgGCtTrWhgQ6IYwphmuuYwphAZKZjBmQDJYEKzGtrY/8DAA "Wolfram Language (Mathematica) – Try It Online")
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 25 bytes
```
Ḣɓ;1ị$$ṡ2P€S×6+⁸S×4¤+
Ç€S
```
[Try it online!](https://tio.run/##y0rNyan8///hjkUnJ1sbPtzdraLycOdCo4BHTWuCD083037UuANImxxaos11uB0k@P///2hLHQUgMjTQUTCL1VGINtFRMAIjy1gA "Jelly – Try It Online")
[Answer]
# [Python 3](https://docs.python.org/3/), 56 bytes
```
lambda*a:sum(c+(6*x+4)*(y+z)+6*y*z+4*x for(c,x,y,z)in a)
```
[Try it online!](https://tio.run/##HcJLCoMwFADAq7zl@y1sDQELnsS6iEqtoFHUQpLLx@IwWzy/qy/zWL/z7JZucOxex2/BXtByEEOMURKJ5chJDAf4rDv2GjRqosmDo7ztkz9xxKZS@H8UCrZVaIzC8161RPkC "Python 3 – Try It Online")
* -2 bytes thanks to Mr. Xcoder!
* -15 bytes thanks to notjagan!
* -1 byte thanks to Alix Eisenhardt!
[Answer]
# [C (gcc)](https://gcc.gnu.org/), ~~104~~ ~~100~~ ~~99~~ 93 bytes
* Saved ~~four~~ ~~five~~ eleven bytes thanks to [PrincePolka](https://codegolf.stackexchange.com/users/75884/princepolka).
```
t,x,y,z;f(A,a)int*A;{for(t=0;a--;)t+=*A+++6*((x=*A++)*(y=*A++)+(z=*A++)*(x+=y))+4*(x+z);t=t;}
```
[Try it online!](https://tio.run/##fZHNisMgFIXX8SmkUNBoaG5Mk4g4kOcYuggZUrpoZigu8kOePdUaO50uZnHwcD7Olattcm7bdTV84COfVEdq3tBLb@Jazd33jRidqiZJFDVMxzVjrIgJGR6WxmT0hpEpJAPTI6Usd26iymijlvXaXHpCZxTZwbjXAMrb@vOkZ8kxtoKU44LjwyH5wCCEQFGE/0G5RZmX3BDOZLG1XMNV5FtLbC17VqElBDh0tDFY5a8oe6D0F4mAIC9eBrr7nkhIGVDlF8gCKuHoUOnjv6iSYeXU64kwlCha1M/NvllHdvuvHXf/1FOq0ILQegc "C (gcc) – Try It Online")
Takes a list of present attributes (list length divisible by four) and an integer specifying the number of presents. Returns the cost of manufacturing all presents.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 17 bytes
```
vyćsO4*y¦æ2ùPO6*O
```
[Try it online!](https://tio.run/##MzBNTDJM/f@/rPJIe7G/iVbloWWHlxkd3hngb6bl//9/dLS5joKFjoKZjoJ5rI4CiAdEpkAE4gElLBFyZmAJQwMQBvFNUWQtwTyQrBlUK0QllA/RDDTbEmoNSAaoyAJhElh7bCwA "05AB1E – Try It Online")
**Explanation**
```
v # for each present y
yć # extract the head (cost)
s # swap the dimensions to the top
O4* # sum and multiply by 4
y¦ # push y with the head (cost) removed
æ # compute the powerset
2ù # keep only elements of length 2
PO # product and sum
6* # multiply by 6
O # sum everything
```
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), 39 bytes
```
u+G++hH*6++*@H1@H2*@H1@H3*@H2@H3*4stHQ0
```
[Try it online!](https://tio.run/##LYsrEsAgDAWvEk0QQMvP1RVbzeCRnSkVPX1KALXZeZv7a5XoxROxJuEQxZH0kczE1mEY@9PSpYhy9hK0kmAZRUIO0zviUiehR4Gtn3Fsdtn6HqkfqeW00A8 "Pyth – Try It Online")
Takes input as a string representation of a nested list and sums over the cost formula.
[Answer]
# [Clean](http://clean.cs.ru.nl/Clean), 64 bytes
```
import StdEnv
f l=sum[c+6*(x*y+y*z+z*x)+4*(x+y+z)\\[c,x,y,z]<-l]
```
[Try it online!](https://tio.run/##S85JTcz7/z83P6U0J1UhNzEzj4srM7cgv6hEIbgkxTWvjIsrTSHHtrg0NzpZ20xLo0KrUrtSq0q7SqtCU9sEyNeu1K7SjImJTtap0KnUqYq10c2J5eIKLkkEmmCrkKYQHW2po2ABQbE6CtGGBjoKEBFTGNccyEbigrAZEIH4FmApIGkeG/v/PwA "Clean – Try It Online")
[Answer]
# Excel, 60 bytes
Input taken from Columns `A` to `D`, new row per present. Formula in any other column.
```
=SUMPRODUCT(A:A+6*(B:B*C:C+C:C*D:D+B:B*D:D)+4*(B:B+C:C+D:D))
```
] |
[Question]
[
For this challenge you are going to make a function (your function may be a complete program) that takes a list as input and returns a permutation of that list. Your function must obey the following requirements.
* It must be deterministic.
* Composing your function with itself a variable number of times should be capable of getting a list to any of its permutations.
This is a code-golf question so answers will be scored in bytes, with less bytes being better.
## Further rules
* You may take any type of list, (`[Integer]`,`[String]`,`[[Integer]]`) as long as it
+ Can be non empty
+ Can contain distinct objects with at least 16 possible values. (You can't use a Haskell `[()]` and claim your function is `id`)
+ Can contain duplicate objects (no sets)
* You may write a program or a function, but must obey standard IO.
[Answer]
## CJam (11 bytes)
```
{_e!_@a#(=}
```
[Online demo](http://cjam.aditsu.net/#code=%5B2%201%203%202%5D%7B%0A%0A%7B_e!_%40a%23(%3D%7D%0A%0A~_p%7D12*%3B) showing the full cycle for a four-element list with one duplicate element.
### Dissection
```
{ e# Define a block
_e! e# Find all permutations of the input. Note that if there are duplicate
e# elements in the input then only distinct permutations are produced.
e# Note also that the permutations are always generated in lexicographic
e# order, so the order is independent of the input.
_@a# e# Find the index of the input in the list
(= e# Decrement and get the corresponding element of the list
e# Incrementing would also have worked, but indexing by -1 feels less
e# wrong than indexing by the length, and makes this more portable to
e# GolfScript if it ever adds a "permutations" built-in
}
```
[Answer]
## Mathematica + Combinatorica (Built-in Package) 34 Bytes
19 bytes to load the package and 15 for the function.
```
<<"Combinatorica`";NextPermutation
```
Usage:
```
%@{c, b, a}
```
Without the built-in, 61 Bytes
```
Extract[s=Permutations[Sort@#],Mod[s~Position~#+1,Length@s]]&
```
Combinatorica is supposed to be fully incorporated into Mathematica, but I think the NextPermutation function was overlooked.
[Answer]
# [Python 3](https://docs.python.org/3/), 90 bytes
```
from itertools import*
def f(l):p=[*permutations(sorted(l))];return p[-~p.index(l)%len(p)]
```
[Try it online!](https://tio.run/##HY1BCoMwEADvvmIvhUS0tHqz@BKRIrhpA3F3WdfSXvr1NPQ2zBxGPvZk6nMOyhtEQzXmtEPchNXqasUAwSU/yDjVgrodtlhk2t1eOq4l@fmmaIcSyNR@5RxpxXfxp4TkxM85jfhakoskhznvq8AKd4gEutADXXfxQwWQYPyfCopGsoLZ9U3XXP0P "Python 3 – Try It Online")
[Answer]
# C++, 42 bytes
```
#include <algorithm>
std::next_permutation
```
This exact operation is a builtin in C++.
[Answer]
## JavaScript (ES6), ~~145~~ ~~139~~ ~~137~~ ~~134~~ 108 bytes
*Saved a whopping 25 bytes thanks to @Neil!*
Takes input as an array of alphabetical characters. Returns the next permutation as another array.
```
a=>(t=x=y=-1,a.map((v,i)=>v<a[i+1]?(t=v,x=i):y=i>x&v>t?i:y),a[x]=a[y],a[y]=t,a.concat(a.splice(x+1).sort()))
```
### How?
This is a [generation in lexicographic order](https://en.wikipedia.org/wiki/Permutation#Generation_in_lexicographic_order) that processes the 4 following steps at each iteration:
1. Find the largest index *X* such that *a[X] < a[X+1]*
```
a.map((v, i) => v < a[i + 1] ? (t = v, x = i) : ...)
```
2. Find the largest index *Y* greater than *X* such that *a[Y] > a[X]*
```
a.map((v, i) => v < a[i + 1] ? ... : y = i > x & v > t ? i : y)
```
3. Swap the value of *a[X]* with that of *a[Y]*
```
a[x] = a[y], a[y] = t
```
4. Sort the sequence from *a[X + 1]* up to and including the final element, in ascending lexicographic order
```
a.concat(a.splice(x + 1).sort())
```
Example:
[](https://i.stack.imgur.com/iHmHO.png)
### Demo
```
let f =
a=>(t=x=y=-1,a.map((v,i)=>v<a[i+1]?(t=v,x=i):y=i>x&v>t?i:y),a[x]=a[y],a[y]=t,a.concat(a.splice(x+1).sort()))
for(a = ["A", "B", "C", "D"], n = 0; n < 25; n++) {
console.log(a.join(','));
a = f(a);
}
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 6 bytes
```
Œ¿’œ?Ṣ
```
Cycles through the permutations in descending lexicographical order.
[Try it online!](https://tio.run/##y0rNyan8///opEP7HzXMPDrZ/uHORf8Ptx@ecGS/wtFJD3fOeNS0JlLh4Y7tjxrmKASlFqQmlqSm5FQqJBYUAMnSvJLMHIWSjFSFotTi0pySYoXEolSFvHyFnPy89NQioHxmYWmqnkJAUWpJSaVuQVFmXone///RhjoKRjoKxkAUCwA "Jelly – Try It Online")
### How it works
```
Œ¿’œ?Ṣ Main link. Argument: A (array)
Œ¿ Compute the permutation index n of A, i.e., the index of A in the
lexicographically sorted list of permutations of A.
’ Decrement the index by 1, yielding n-1.
Ṣ Sort A.
œ? Getthe (n-1)-th permutation of sorted A.
```
[Answer]
# C, 161 bytes
Actual O(n) algorithm.
```
#define S(x,y){t=x;x=y;y=t;}
P(a,n,i,j,t)int*a;{for(i=n;--i&&a[i-1]>a[i];);for(j=n;i&&a[--j]<=a[i-1];);if(i)S(a[i-1],a[j])for(j=0;j++<n-i>>1;)S(a[i+j-1],a[n-j])}
```
Example usage:
```
int main(int argc, char** argv) {
int i;
int a[] = {1, 2, 3, 4};
for (i = 0; i < 25; ++i) {
printf("%d %d %d %d\n", a[0], a[1], a[2], a[3]);
P(a, 4);
}
return 0;
}
```
[Answer]
# [Python 2](https://docs.python.org/2/), 154 bytes
```
x=input()
try:exec'%s=max(k for k in range(%s,len(x))if x[%s-1]<x[k]);'*2%tuple('i1kjii');x[i-1],x[j]=x[j],x[i-1];x[i:]=x[:i-1:-1]
except:x.sort()
print x
```
[Try it online!](https://tio.run/##NY7BbsMgEETP5iv2YgEViWS3J1L3R5Cl0HjTEDsYAVE3X@9C2l5Ws08zmgmPfFl9vxEM4Hy4ZyFZLDphVez74haEIx3Br7kYIGrWxL2dJlGgZM0zU/yLvX1OVgOxJkTnM5ACvvvgijVIeALO@UbDf0OOD10xb9NwsyRmOK8R5meB9V8o2qQW9IKkdGcg06ZdN76TmUd54C99m@9hQcFdN1@d4/JAxhWDInMdh3rUL6hcV6LLpwtgSCcMWdM@rbEO@du61XmmU9AreFXwNv4A "Python 2 – Try It Online")
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 10 bytes
```
ṢŒ!Q©i⁸‘ị®
```
[Try it online!](https://tio.run/##ASYA2f9qZWxsef//4bmixZIhUcKpaeKBuOKAmOG7i8Ku////WzEsMywxXQ "Jelly – Try It Online")
Sort > all permutation > find input > add 1 > index into "all permutation
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 7 bytes
```
œêD¹k>è
```
[Try it online!](https://tio.run/##MzBNTDJM/f//6OTDq1wO7cy2O7zi//9oQx0FIDKOBQA "05AB1E – Try It Online")
[Answer]
# [PHP](https://php.net/), 117 bytes
Takes input/output as string list of lower letters
```
$a=str_split($s=$argn);rsort($a);if(join($a)!=$s)for($n=$s;($c=count_chars)(++$n)!=$c($s););else$n=strrev($s);echo$n;
```
[Try it online!](https://tio.run/##NY6xCsIwFEX3/IXhDQndu7wGB@ngootjIcSYthFJwkt0Ef31mhac7uVyONw0p6XbpzkxRxRJk0uRig@T@Pb6dL4cD71EBoamoLi5WnvjyMZIAsE3Tde2KN8LGJUL6ZwevgjIasMlUq4qAUaiH8U9@rD2nYIsVwGE2lCAVTY@Q9F2NpSlaBoIK2SrSKJE98iuotVP7rVtzs4RAi5r8qGAHwL/X6w7@yw/ "PHP – Try It Online")
] |
[Question]
[
The Goldbach conjecture states that:
>
> [every even number that is greater than 2 is the sum of two primes.](http://mathworld.wolfram.com/GoldbachConjecture.html)
>
>
>
We will consider a Goldbach partition of a number **n** to be a pair of two primes adding to **n**. We are concerned with numbers is *of increasing Goldbach partition*. We measure the size of a number's Goldbach partitions by the size of the smallest prime in all of that number's partitions. A number is of increasing partition if this size is greater than the size of all smaller even numbers.
# Task
Given an even integer **n > 2**, determine if **n** is of increasing Goldbach partition, and output two unique values, one if it is and one if it is not.
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so you should aim to minimize the number of bytes in your source code.
[OEIS A025018](http://oeis.org/A025018)
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 12 bytes
```
ÆRðfạṂ
Ç€M⁼W
```
[Try it online!](https://tio.run/##AS0A0v9qZWxsef//w4ZSw7Bm4bqh4bmCCsOH4oKsTeKBvFf/NHI1MDBtMsOHw5BmWf8 "Jelly – Try It Online")
### How it works
```
Ç€M⁼W Main link. Argument: n
Ç€ Map the helper link over [1, ..., n].
M Get all indices of the maximum.
W Wrap; yield [n].
⁼ Test the results to both sides for equality.
ÆRðfạṂ Helper link. Argument: k
ÆR Prime range; get all primes in R := [1, ..., k].
ð Begin a dyadic chain with arguments R and k.
ạ Absolute difference; yield k-p for each p in R.
f Filter; keep the q in R such that q = k-p for some p in R.
Ṃ Take the minimum.
This yields 0 if the array is empty.
```
[Answer]
# [PHP](https://php.net/), 154 bytes
```
for(;$n++<$a=$argn;$i-1?:$p[]=$n)for($i=$n;--$i&&$n%$i;);foreach($p as$x)foreach($p as$y)if(!$r[$z=$x+$y]){$r[$z]=$x;$l[]=$z<$a?$x:0;};echo$r[$a]>max($l);
```
[Try it online!](https://tio.run/##VY3BCoMwGIPve4pNMmkpBefR384HEQ9FdC24WvRSHXv2rnrbLckXEm98rBtv/AV6eTmVlWWRURznhRGcEDW0OgnBykdTwbedguNHATYpkhI2z@HusMQp5YPuDYO/6hWB//uN25HdsLTYFYLA1vHP6dJmIEzH9p4uG4SqoC8NvZkPrrvnWweGiVOMPw "PHP – Try It Online")
Expanded
```
for(;$n++<$a=$argn;$i-1?:$p[]=$n) # loop through all integers till input if is prime add to array
for($i=$n;--$i&&$n%$i;);
foreach($p as$x) #loop through prime array
foreach($p as$y) #loop through prime array
if(!$r[$z=$x+$y]){
$r[$z]=$x; # add only one time lower value for a sum of $x+$y
$l[]=$z<$a?$x:0;}; # add lower value if sum is lower then input
echo$r[$a]>max($l); # Output 1 if lower value for sum of input is greater then all lower values of all numbers under input
```
[Try it online! Check for all numbers till 1000](https://tio.run/##ZY4xa8MwEIX3/IrWvAYJy@CUTr64HkqGLu3SLTFBBMUWuLK4uKAkpH/dlQ0dSrd7d@/e93zrx3XlW78wzD3v2fieB@sa8b3Zv71/vL5sJC2OPRt9aAVr1xjxpFZ5nqtHqU/Q3Dh5/XInMwh4hU6BFZykMf4IgkvTNXQ5@wg2W1UF/LYuo2UywMaJsgx2uYR7gCVJvzD4uwgI8q8@S3sU9@AtLiVCinMtr7OKmYHQTdmXiKwQipxuZA5tP911/fypg0AXq/3fVclumDvuXFIkCd3GHw "PHP – Try It Online")
[Answer]
## JavaScript (ES6), 135 bytes
Uses a similar logic as [Jörg's PHP answer](https://codegolf.stackexchange.com/a/129627/58563).
```
(n,P=[...Array(n).keys()].filter(n=>(p=n=>n%--x?p(n):x==1)(x=n)))=>P.map(p=>P.map(q=>a[q+=p]=a[q]||(m=q<n&&p>m?p:m,p)),a=[m=0])&&a[n]>m
```
### Demo
```
let f =
(n,P=[...Array(n).keys()].filter(n=>(p=n=>n%--x?p(n):x==1)(x=n)))=>P.map(p=>P.map(q=>a[q+=p]=a[q]||(m=q<n&&p>m?p:m,p)),a=[m=0])&&a[n]>m
console.log(
JSON.stringify(
[...Array(310).keys()].filter(n => f(n))
)
)
```
[Answer]
# Python 3: 156 151 142 138 136 128 bytes
```
r=range
m=lambda n:min(x for x in r(2,n+1)if all(o%i for o in[x,n-x]for i in r(2,o)))
f=lambda n:m(n)>max(map(m,r(2,n,2)))or n<5
```
(thanks to OP)
(thanks to @Rod)(again)(and again)
[Answer]
# Python 3: 204 196 bytes
Bytes saved thanks to: Olm Man
```
from itertools import*
m=lambda g:min([x for x in product([n for n in range(2,g)if all(n%i for i in range(2,n))],repeat=2)if sum(x)==g][0])
i=lambda g:1if all(m(g)>m(x)for x in range(4,g,2))else 0
```
[Try it online!](https://tio.run/##TY1BDoIwEEX3nmI2JjOGBaArk3oRwqJKqZO006aUBE9fBY26ff/lv/jI9yDHUsYUPHA2KYfgJmAfQ8qHnVdO@@ugwZ49C3YLjCHBAiwQUxjmW8ZONiYrS1qswbayxCNo51D2vK38vwpRXyUTjc6qXc1p9riQUrbv6p52/Is2nx@Pli6r9M2/z06VrVoi4yYDdYmJJSNj80LlCQ "Python 3 – Try It Online")
] |
[Question]
[
### Background
The [convex hull](https://en.wikipedia.org/wiki/Convex_hull) of a finite number of points is the smallest convex polygon that contains all of the points, either as vertices or on the interior. For more information, see this [question on PGM which defines it very well](https://codegolf.stackexchange.com/questions/11035/find-the-convex-hull-of-a-set-of-2d-points?rq=1).
### Input
`N+1` 2-D coordinates (`N >= 3`) passed through `STDIN` (with other usual golf inputs allowed too) in the following format (the number of decimals can vary but you can assume it remains "reasonable" and each number can be represented as a float):
```
0.00;0.00000
1;0.00
0.000;1.0000
-1.00;1.000000
```
### Output
A truthy value printed to `STDOUT` (or equivalent) if the first point in the list (`(0.00;0.00000)` in the example above) is in the convex hull of the other N points, and a falsy value otherwise.
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest solution in bytes wins.
* *Border cases*: you can return any value (but don't crash) if the point lies on the border of the convex hull (i.e. on a side or on a vertex on the outer frontier of the hull), since it is a zero probability event (under any reasonable probability).
* *Forbidden*: anything (language, operator, data structure, built-in or package) that exists **only** to solve geometric problems (e.g. Mathematica's [ConvexHull](https://reference.wolfram.com/language/ComputationalGeometry/ref/ConvexHull.html)). General purpose mathematical tools (vectors, matrices, complex numbers etc.) are allowed.
### Tests
* Should return `TRUE`: [spiralTest1-TRUE](https://github.com/ahdxb/convex-hull/blob/master/spiralTest1-TRUE), [squareTest1-TRUE](https://github.com/ahdxb/convex-hull/blob/master/squareTest1-TRUE)
* Should return `FALSE`: [spiralTest2-FALSE](https://github.com/ahdxb/convex-hull/blob/master/spiralTest2-FALSE), [squareTest2-FALSE](https://github.com/ahdxb/convex-hull/blob/master/squareTest2-FALSE)
[Answer]
# J, ~~40~~ ~~39~~ 34 bytes
```
3 :'(o.1)<(>./-<./)12 o.y*+{.y'@:-
```
An anonymous dyadic function, taking a point, *p*, as one of its arguments, and a list of points, *P*, as the other argument (it doesn't matter which argument is which), and returning `0` or `1`, if *p* is outside or inside the convex hull of *P*, respectively.
The point *p*, and the points in *P*, are taken as complex numbers.
## Example
```
is_inside =: 3 :'(o.1)<(>./-<./)12 o.y*+{.y'@:-
0.5j0.5 is_inside 0j0 0j1 1j0 1j1
1
1.5j0.5 is_inside 0j0 0j1 1j0 1j1
0
```
---
or...
# Python 2, function, ~~121~~ ~~103~~, full program, ~~162~~
# Python 3, 149 bytes
```
import sys,cmath as C
p,q,*P=[complex(*eval(l.replace(*";,")))for l in sys.stdin]
A=[C.phase((r-p)/(q-p+(q==p)))for r in P]
print(max(A)-min(A)>C.pi)
```
Takes input, in the same format as the original post, through STDIN, and prints a boolean value indicating whether p is in the convex hull of P
---
## Explanation
The program tests whether the difference between the maximum and minimum (signed) angles between any point *r* in *P*, *p*, and a fixed arbitrary point *q* in *P* (we just use the first point in *P*), is less than 180°.
In other words, it tests whether all the points in *P* are contained in an angle of 180° or less, around *p*.
*p* is in the convex hull of *P* if and only if this condition is false.
---
At the cost of a few more bytes, we can use a similar method that doesn't require us to explicitly calculate angles:
Note that the above condition is equivalent to saying that *p* is outside the convex hull of *P* if and only if there exists a line *l* through *p*, such that all the points in *P* are on the same side of *l*.
If such a line exists, then there's also such a line that is incident to one (or more) of the points in *P* (we can rotate *l* until it touches one of the points in *P*.)
To (tentatively) find this line, we start by letting *l* be the line through *p* and the first point in *P*.
We then iterate over the rest of the points in *P*; if one of the points is to the left of *l* (we assume some directionality throughout, left or right doesn't really matter,) we replace *l* with the line passing through *p* and that point, and continue.
After we iterated over all of *P*, if (and only if) *p* is outside the convex hull, then all the points in *P* should be to the right of (or on) *l*.
We check that using a second pass over the points in *P*.
**Python 2, 172 bytes**
```
import sys
P=[eval(l.replace(*";,"))for l in sys.stdin]
x,y=P.pop(0)
C=lambda(a,b),(c,d):(a-x)*(d-y)-(b-y)*(c-x)>0
l=reduce(lambda*x:x[C(*x)],P)
print any(C(l,q)for q in P)
```
Alternatively, to do the same thing in a single pass, let *to-the-left-of* be a realtion between any two points, *q* and *r*, in *P*, such that *q* is to the left of *r* if *q* is to the left of the line passing through *p* and *r*.
Note that to-the-left-of is an order relation on *P* if and only if all the points in *P* are on the same side of some line passing through *p*, that is, if *p* is outside the convex hull of *P*.
The procedure described above finds the minimum point in *P* w.r.t. this order, i.e., the "leftmost" point in *P*.
Instead of performing two passes, we can find the maximum (i.e., the "rightmost" point), as well as the minimum, points in *P* w.r.t. the same order in a single pass, and verify that the minimum is to the left of the maximum, i.e., effectively, that to-the-left-of is transitive.
This would work well if *p* is outside the convex hull of *P*, in which case to-the-left-of is actually an order relation, but may break when *p* is inside the convex hull (for example, try to figure out what will happen if we ran this algorithm where the points in *P* are the vertices of a regular pentagon, running counter-clockwise, and *p* is its center.)
To accommodate, we slightly alter the algorithm:
We select a point *q* in *P*, and bisect *P* along the line passing through *p* and *q* (i.e., we partition *P* around *q* w.r.t. to-the-left-of.)
We now have a "left part" and a "right part" of *P*, each contained in a halfplane, so that to-the-left-of is an order relation on each; we find the minimum of the left part, and the maximum of the right part, and compare them as described above.
Of course, we don't have to physically bisect *P*, we can simply classify each point in *P* as we look for the minimum and maximum, in a single pass.
**Python 2, 194 bytes**
```
import sys
P=[eval(l.replace(*";,"))for l in sys.stdin]
x,y=P.pop(0)
C=lambda(a,b),(c,d):(a-x)*(d-y)-(b-y)*(c-x)>0
l=r=P[0]
for q in P:
if C(P[0],q):l=q*C(l,q)or l
elif C(q,r):r=q
print C(l,r)
```
[Answer]
# Octave, 82 72 bytes
```
d=dlmread(0,";");i=2:rows(d);~isna(glpk(i,[d(i,:)';~~i],[d(1,:)';1]))&&1
```
The idea is to check whether the linear program min { c'x : Ax=b, e'x=1, x >= 0 } has a solution, where e is a vector of all ones, columns of A are the coordinates of the point cloud, and b is the test point, and c is arbitrary. In other words, we try to represent b as a convex combination of columns of A.
To run the script, use `octave -f script.m <input.dat`
[Answer]
## R, 207 bytes
```
d=read.csv(file("stdin"),F,";")
q=function(i,j,k)abs(det(as.matrix(cbind(d[c(i,j,k),],1))))
t=function(i,j,k)q(i,j,k)==q(1,i,j)+q(1,i,k)+q(1,j,k)
any(apply(combn(2:nrow(d),3),2,function(v)t(v[1],v[2],v[3])))
```
The script takes its inputs from STDIN, e.g. `Rscript script.R < inputFile`.
It generates all triangles from the `N` last points (the last line, `apply(combn(...` ) and checks whether the first point is in the triangle using the `t` function.
`t` uses the area method to decide if `U` is in `ABC`: (writing `(ABC)` for the area of `ABC`) `U` is in `ABC` iff `(ABC) == (ABU) + (ACU) + (BCU)`. Also, areas are calculated using the determinant formula (see [here](http://demonstrations.wolfram.com/TheAreaOfATriangleUsingADeterminant/) for a nice demo from Wolfram).
I suspect this solution is more prone to numerical errors than my other one, but it works on my test cases.
[Answer]
## R, 282 bytes
```
d=read.csv(file("stdin"),F,";")
p=function(a,b)a[1]*b[1]+a[2]*b[2]
t=function(a,b,c){A=d[a,];
U=d[1,]-A
B=d[b,]-A
C=d[c,]-A
f=p(C,C)
g=p(B,C)
h=p(U,C)
i=p(B,B)
j=p(U,B)
k=f*i-g*g
u=i*h-g*j
v=f*j-g*h
min(u*k,v*k,k-u-v)>0}
any(apply(combn(2:nrow(d),3),2,function(v)t(v[1],v[2],v[3])))
```
The script takes its inputs from STDIN, e.g. `Rscript script.R < inputFile`.
It generates all triangles from the `N` last points (the last line, `apply(combn(...` ) and checks whether the first point is in the triangle using the `t` function.
`t` uses the barycentric method to decide if `U` is in `ABC`: (writing `XY` for the `X` to `Y` vector) since `(AB,AC)` is a basis for the plane (except for the degenerate cases where A,B,C are aligned), `AU` can be written as `AU = u.AB + v.AC` and `U` is in the triangle iff `u > 0 && v > 0 && u+v < 1`. See for instance [here](http://www.blackpawn.com/texts/pointinpoly/) for a more detailed explanation and a nice interactive chart. *NB: to save a few chars and avoid DIV0 errors, we only compute a shortcut to `u` and `v` and a modified test (`min(u*k,v*k,k-u-v)>0`).*
The only mathematical operators used are `+`, `-`, `*`, `min()>0`.
] |
[Question]
[
A [numeronym](https://en.wikipedia.org/wiki/Numeronym) (also known as a "numerical contraction") is when a word is shortened using numbers. A common contraction method is to use the length of the replaced substring to replace all but the first and last characters. For example, use [`i18n` instead of `internationalization`, or `L10n` instead of `localization`](https://en.wikipedia.org/wiki/Internationalization_and_localization). (The `L` is capitalized since a lowercase one looks too similar to the `1`.)
Of course, several words in the same phrase may have the same abbreviated form, so your job is to convert a group of words to their numeronyms, or in the event that there exists some *different* words with the same numeronym, your program should give a result of `A7s R4t`, short for `Ambiguous Result` (yes, I know that this result is itself an ambiguous result.)
## Rules:
* Use a program or function, and print or return the result.
* Input is taken as a single string.
* The output is a single string of space-delimited words.
* Your program need not convert words with length 3, and should not convert shorter words.
* If an `l` (lowercase ell) would occur before a `1` (one), it should be made uppercase.
* If an `I` (uppercase eye) would occur before a `1` (one), it should be made lowercase.
* Input will be printable ASCII and spaces. Words are separated by spaces.
* Shortest code wins.
## Examples:
```
A7s R4t -> A7s R4t (OR: A1s R1t, etc)
Ambiguous Result -> A7s R4t
Billy goats gruff -> B3y g3s g3f
Thanks for the Memories -> T4s f1r the M6s (one possible answer, NOT: Thnks fr th Mmrs)
Programming Puzzles & Code Golf -> P9g P5s & C2e G2f
globalization -> g11n
localizability -> L12y
Internationalization or antidisestablishmentarianism -> i18n or a26m
Internationalization or InternXXXXXalization -> A7s R4t
what is this fiddle and faddle -> A7s R4t
A be see -> A be s1e (OR: A be see)
see sea -> s1e s1a (OR: see sea)
2B or not 2B -> 2B or not 2B (OR: 2B or n1t 2B. 2 letters, don't change, don't count as ambiguous)
this example is this example -> t2s e5e is t2s e5e (same words aren't ambiguous)
l1 -> l1 (2 letters, don't change.)
I1 -> I1 (2 letters, don't change.)
```
Edit: If anyone didn't get the reference: [Thnks fr th Mmrs](https://en.wikipedia.org/wiki/Thnks_fr_th_Mmrs)
[Answer]
# [Caché ObjectScript](https://en.wikipedia.org/wiki/Cach%C3%A9_ObjectScript), 231 bytes
```
r(a,b) s o=$REPLACE(o,a,b) q
z(s) f i=1:1:$L(s," ") s u=$P(s," ",i),l=$L(u),o=$S(l<4:u,1:$E(u)_(l-2)_$E(u,l)) d:l>3 r("I1","i1"),r("l1","L1") d g:r z+4
. i '(l<4!(v(o)=u!'$D(v(o)))) s r=1 q
. s v(o)=u,t=t_o_" "
q t
q "A7s R4t"
```
This would be good-ol' standards-compliant MUMPS if it weren't for that pesky `$REPLACE` call, which isn't part of the standard. Reimplementing it in pure M takes a good 80ish bytes, so I didn't go down that route.
The entry point is `$$z("your string here")`, which returns `"y2r s4g h2e"`, and so forth.
[Answer]
# C#, ~~280~~ 274 bytes
First time golfer here! Been enjoying reading these lately and so I thought I might try out some myself! Probably not the best solution, but oh well!
```
class B{static void Main(string[] a){string[] n=Console.ReadLine().Split(' ');string o="";int j,i=j=0;for(;j<n.Length;j++){int s=n[j].Length;n[j]=((s<4)?n[j]:""+n[j][0]+(s-2)+n[j][s-1])+" ";o+=n[j];for(;i<j;i++)if(n[j]==n[i]){o="A7s R4t";j=n.Length;}}Console.WriteLine(o);}}
```
Same thing ungolfed:
```
class B
{
static void Main(string[] a)
{
string[] n = Console.ReadLine().Split(' ');
string o = "";
int j, i = j = 0;
for(; j < n.Length;j++)
{
int s = n[j].Length;
n[j] = ((s<4) ? n[j] : "" + n[j][0] + (s - 2) + n[j][s - 1]) + " ";
o += n[j];
for (; i < j; i++)
{
if (n[j] == n[i]) { o = "A7s R4t"; j=n.Length;}
}
}
Console.WriteLine(o);
}
}
```
Thanks guys!
[Answer]
# Perl, 131 120 bytes
I've added a byte for using the `-p` switch:
```
s/\B(\w+)(\w)/length($1)."$2_$1"/ge;$_="A7s R4t\n"if/(\w\d+\w)(\w+)\b.*\1(?!\2)/;s/_\w+//g;s/I1\w/\l$&/g;s/l1\w/\u$&/g;
```
### Explanation
```
# Replace internal letters with count, but keep them around for the next test.
s/\B(\w+)(\w)/length($1)."$2_$1"/ge;
# Detect ambiguous result
$_ = "A7s R4t\n" if
# Use negative look-ahead assertion to find conflicts
/(\w\d+\w)(\w+)\b.*\1(?!\2)/;
# We're done with the internal letters now
s/_\w+//g;
# Transform case of initial 'I' and 'l', but only before '1'
s/I1\w/\l$&/g;
s/l1\w/\u$&/g;
```
[Answer]
# J, 92 bytes
```
(' 'joinstring(<&(]`(rplc&('I1';'i1')&(rplc&('l1';'L1'))&({.,([:":#-2:),{:))@.(#>3:))&>&;:))
```
A looong chain of composed calls.
The first part is just a fork: a literal, `joinstring`, and a function (in J, `1 (10 + +) 2` is `(10 + (1 + 2))`).
The second part is the function. The two `rplc` calls are to replace the I/l when they could be confused.
`&` is composition, and composing an operator with a value curries. (so `3&+` gives a function that expects the 2nd argument to be added).
Finally, the last part is the function that takes the first, the length-2 (composed with stringification), and the last.
the `&>&;:` bit at the end composes this function (which should be applied to every argument) to `>` (unboxing), because `;:` (split words) returns a boxed list (so that every element can have different length).
example:
```
(' 'joinstring(<&(]`(rplc&('I1';'i1')&(rplc&('l1';'L1'))&({.,([:":#-2:),{:))@.(#>3:))&>&;:)) 'hey you baby Iooooooooneey I1'
hey you b2y i11y I1
```
[Answer]
# JavaScript (ES6), 165 bytes
```
s=>(r=s.replace(/\S+/g,w=>(m=w.length-2)<2?w:(i=d.indexOf(n=((m+s)[0]<2&&{I:"i",l:"L"}[w[0]]||w[0])+m+w[m+1]))>=0&d[i+1]!=w?v=0:d.push(n,w)&&n,v=d=[]),v?r:"A7s R4t")
```
## Explanation
```
s=>( // s = input string
r=s.replace( // r = result of s with words replaced by numeronyms
/\S+/g, // match each word
w=> // w = matched word
(m=w.length-2) // m = number of characters in the middle of the word
<2?w: // if the word length is less than 4 leave it as it is
(i=d.indexOf( // check if this numeronym has been used before
n= // n = numeronymified word
((m+s)[0]<2&& // if the number starts with 1 we may need to replace
{I:"i",l:"L"} // the first character with one of these
[w[0]]||w[0])+ // return the replaced or original character
m+w[m+1]
))>=0&d[i+1]!=w? // set result as invalid if the same numeronym has been
v=0: // used before with a different word
d.push(n,w)&&n, // if everything is fine return n and add it to the list
v= // v = true if result is valid
d=[] // d = array of numeronyms used followed by their original word
),
v?r:"A7s R4t" // return the result
)
```
## Test
```
<input type="text" id="input" value="lnternationalization or antidisestablishmentarianism" />
<button onclick='result.textContent=(
s=>(r=s.replace(/\S+/g,w=>(m=w.length-2)<2?w:(i=d.indexOf(n=((m+s)[0]<2&&{I:"i",l:"L"}[w[0]]||w[0])+m+w[m+1]))>=0&d[i+1]!=w?v=0:d.push(n,w)&&n,v=d=[]),v?r:"A7s R4t")
)(input.value)'>Go</button>
<pre id="result"></pre>
```
[Answer]
# JavaScript ES6, 162
```
w=>(v=(w=w.split` `).map(x=>(l=x.length-2+'')>1?((l[0]>1||{I:'i',l:'L'})[x[0]]||x[0])+l+x[-~l]:x)).some((a,i)=>v.some((b,j)=>a==b&w[i]!=w[j]))?'A7s R4t':v.join` `
```
**Less golfed**
```
// Less golfed
f=w=>{
w = w.split` ` // original text splitted in words
v = w.map(x=> { // build modified words in array v
l = x.length - 2 // word length - 2
if (l > 1) // if word length is 4 or more
{
a = x[0] // get first char of word
l = l+'' // convert to string to get the first digit
m = l[0] > 1 || {I:'i', l:'L'} // only if first digit is 1, prepare to remap I to i and l to L
a = m[a] || a // remap
return a + l + x[-~l] // note: -~ convert back to number and add 1
}
else
return x // word unchanged
})
return v.some((a,i)=>v.some((b,j)=>a==b&w[i]!=w[j])) // look for equals Numeronyms on different words
? 'A7s R4t'
: v.join` `
}
```
**Test**
```
F=w=>(v=(w=w.split` `).map(x=>(l=x.length-2+'')>1?((l[0]>1||{I:'i',l:'L'})[x[0]]||x[0])+l+x[-~l]:x)).some((a,i)=>v.some((b,j)=>a==b&w[i]!=w[j]))?'A7s R4t':v.join` `
console.log=x=>O.innerHTML+=x+'\n'
;['A7s R4t','Ambiguous Result','Billy goats gruff','Thanks for the Memories',
'Programming Puzzles & Code Golf','globalization','localizability',
'Internationalization or antidisestablishmentarianism',
'Internationalization or InternXXXXXalization','what is this fiddle and faddle',
'A be see','see sea','2B or not 2B','this example is this example','l1','I1']
.forEach(t=>console.log(t+' -> '+F(t)))
```
```
<pre id=O></pre>
```
[Answer]
# Python 2, 185 bytes
```
d={}
r=''
for w in input().split():
l=len(w);x=(w[0]+`l-2`+w[-1]).replace('l1','L1').replace('I1','i1')
if l<4:x=w
if d.get(x,w)!=w:r='A7s R4t';break
d[x]=w;r+=x+' '
print r.strip()
```
[Answer]
# Python 3, 160
I'd love to find a good way to replace those replace calls.
```
def f(a):y=[(x,(x[0]+str(len(x)-2)+x[-1]).replace('l1','L1').replace('I1','i1'))[len(x)>3]for x in a.split()];return('A7s R4t',' '.join(y))[len(set(y))==len(y)]
```
With some test cases:
```
assert f('Billy goats gruff') == 'B3y g3s g3f'
assert f('Programming Puzzles & Code Golf') == 'P9g P5s & C2e G2f'
assert f('Internationalization or InternXXXXXalization') == 'A7s R4t'
```
[Answer]
# Factor, ~~48~~ 35 bytes, noncompeting
It's a lambda that goes on the stack, that doesn't technically meet the *really annoyingly hard* requirements that I originally managed to overlook.
```
[ " " split [ a10n ] map " " join ]
```
Uses the `english` vocabulary.
Or, if we inline the `a10n` library word, then 131 bytes (with auto-imports):
```
: a ( b -- c ) " " split [ dup length 3 > [ [ 1 head ] [ length 2 - number>string ] [ 1 tail* ] tri 3append ] when ] map " " join ;
```
] |
[Question]
[
This question will feature a mechanic from the game "Path Of Exile" in this game there are things called **MAPS** they are items that you can use to open high level areas, you can also combine 3 of them to get a upgraded one which will be the task of this challenge. The upgrade combinations are as follow:
```
A Crypt Map 68 -> Sewer Map
E Dungeon Map 68 -> Channel Map
I Grotto Map 68 -> Thicket Map
O Dunes Map 68 -> Mountain Ledge Map
U Pit Map 68 -> Cemetery Map
T Tropical Island Map 68 -> Arcade Map
N Desert Map 68 -> Wharf Map
S Sewer Map 69 -> Ghetto Map
H Channel Map 69 -> Spider Lair Map
R Thicket Map 69 -> Vaal Pyramid Map
D Mountain Ledge Map 69 -> Reef Map
L Cemetery Map 69 -> Quarry Map
C Arcade Map 69 -> Mud Geyser Map
M Wharf Map 69 -> Museum Map
W Ghetto Map 70 -> Arena Map
F Spider Lair Map 70 -> Overgrown Shrine Map
G Vaal Pyramid Map 70 -> Tunnel Map
Y Reef Map 70 -> Shore Map
P Quarry Map 70 -> Spider Forest Map
B Mud Geyser Map 70 -> Promenade Map
V Museum Map 70 -> Arena Map
K Arena Map 71 -> Underground Sea Map
J Overgrown Shrine Map 71 -> Pier Map
X Tunnel Map 71 -> Bog Map
Q Shore Map 71 -> Graveyard Map
Z Spider Forest Map 71 -> Coves Map
Ó Promenade Map 71 -> Villa Map
É Underground Sea Map 72 -> Temple Map
Á Pier Map 72 -> Arachnid Nest Map
Í Bog Map 72 -> Strand Map
Ú Graveyard Map 72 -> Dry Woods Map
Ü Coves Map 72 -> Colonnade Map
Ö Villa Map 72 -> Catacomb Map
Ä Temple Map 73 -> Torture Chamber Map
Ë Arachnid Nest Map 73 -> Waste Pool Map
Ï Strand Map 73 -> Mine Map
Æ Dry Woods Map 73 -> Jungle Valley Map
Œ Colonnade Map 73 -> Labyrinth Map
Ñ Catacomb Map 73 -> Torture Chamber Map
Ÿ Torture Chamber Map 74 -> Cells Map
1 Waste Pool Map 74 -> Canyon Map
2 Mine Map 74 -> Dark Forest
3 Jungle Valley Map 74 -> Dry Peninsula Map
4 Labyrinth Map 74 -> Orchard Map
5 Cells Map 75 -> Underground River Map
6 Canyon Map 75 -> Arid Lake Map
7 Dark Forest Map 75 -> Gorge Map
8 Dry Peninsula Map 75 -> Residence Map
9 Orchard Map 75 -> Underground River Map
0 Underground River Map 76 -> Necropolis Map
? Arid Lake Map 76 -> Plateau Map
! Gorge Map 76 -> Bazaar Map
( Residence Map 76 -> Volcano Map
) Necropolis Map 77 -> Crematorium Map
- Plateau Map 77 -> Precinct Map
/ Bazaar Map 77 -> Academy Map
\ Volcano Map 77 -> Springs Map
| Crematorium Map 78 -> Shipyard Map
= Precinct Map 78 -> Overgrown Ruin Map
* Academy Map 78 -> Village Ruin Map
† Springs Map 78 -> Arsenal Map
‡ Shipyard Map 79 -> Wasteland Map
§ Overgrown Ruin Map 79 -> Courtyard Map
[ Village Ruin Map 79 -> Excavation Map
] Arsenal Map 79 -> Waterways Map
_ Wasteland Map 80 -> Palace Map
~ Courtyard Map 80 -> Shrine Map
{ Excavation Map 80 -> Maze Map
} Waterways Map 80 -> Palace Map
© Palace Map 81 -> Abyss Map
€ Shrine Map 81 -> Abyss Map
< Maze Map 81 -> Colosseum Map
> Vaal Temple Map 81 -> Colosseum Map
µ Abyss Map 82
» Colosseum Map 82
```
These lines follow this sheme:
```
Symbol of the map | Name of the map | Level of the map | Map received from combining
```
Note that the abyss and colosseum map dont combine into higher level ones since they are the highest level.
**INPUT:**
Your input will be a a string of Symbols which correspond to the map symbols, example AAAEE which would mean 3 x crypt map and 2 x dungeon map.
**OUTPUT:**
The output will be again a string of symbols which would represent the highest possible combination of the input maps. Any combination of output is allowed as long as it features every map.
**EXAMPLES:**
```
INPUT: A
OUTPUT: A
INPUT: AAA
OUTPUT: S
INPUT: AAAEEEIII
OUTPUT: SHR or HRS or RHS or SRH
INPUT: AAAAAAAAAE
OUTPUT: WE or EW
INPUT: »»»»»
OUTPUT: »»»»»
```
**SCORING:**
Your score will be calculated through this formula, which is also actualy used in the game to calculate damage reduction:
```
POINTS = 1000 - (ByteCount / (ByteCount + 1000) * 1000);
```
**BONUS POINTS:**
1. If you add runlenght encoding to both the input and output then multiply your points by 1.2, example 3A input instead of AAA. You can omit the standard input if your answer will support this.
2. If your program will allow the actual map names as input/output then multiply your points by 1.5, you can ommit the "map" part of the map name so as a example input "**crypt crypt crypt**" and output "**sewer**" is ok. Your script also doesnt need to understand the standard input anymore if you use this method. This method also requires a space between names in both the input and output.
3. If your output string goes from lowest level map to highest then multiply your points by 1.08, maps with the same level dont need to be sorted in any particular way.
You can combine all 3 bonus points.
**ANSWER WITH THE MOST POINTS WINS!**
[Answer]
# ~~Haskell, 306 bytes, points = 766 \* 1.2 \* 1.08 = 992.343~~
```
import Control.Arrow;main=print=<<(\x->unwords.map(\(x,y)->show x++[y]).filter((>0).fst).g=<<(read***head)<$>(lex=<<words x))<$>getLine;g z@(x,y)|x<3=[z]|1<2=maybe[z](\w->(x`mod`3,y):g(x`div`3,w)).lookup y$words"ASWKÉÄŸ50)|‡_©µ EHFJÁË16?-=§~€µ IRGXÍÏ27!/*[{<» ULPZÜŒ490 TCBÓÖÑŸ NMVK >»">>= \x->zip x$tail x
```
I could squeeze out a few more bytes should anyone beat me, but for now I'm going to leave it as is.
# ~~Haskell, 284 bytes, points = 779 \* 1.2 \* 1.08 = 1009.346~~
```
import Control.Arrow;main=interact$show.(\x->unwords[show a++[b]|(a,b)<-g=<<second head<$>(reads=<<words x),a>0]);g z@(x,y)|x<3=[z]|1<2=maybe[z](\w->(x`mod`3,y):g(x`div`3,w)).lookup y$words"ASWKÉÄŸ50)|‡_©µ EHFJÁË16?-=§~€µ IRGXÍÏ27!/*[{<» ULPZÜŒ490 TCBÓÖÑŸ NMVK >»">>=(flip zip=<<tail)
```
I did squeeze out a few more bytes regardless.
# Haskell, 248 bytes, points = 801 \* 1.2 \* 1.08 = 1038.462
```
main=interact$ \x->unwords[show a++b|(a,b)<-(reads=<<words x)>>=g,a>0];g z@(x,y)|x<3=[z]|1<2=maybe[z](\w->(x`mod`3,y):g(x`div`3,w))$pure<$>lookup(head y)(zip<*>tail=<<words"ASWKÉÄŸ50)|‡_©µ EHFJÁË16?-=§~€µ IRGXÍÏ27!/*[{<» ULPZÜŒ490 TCBÓÖÑŸ NMVK >»")
```
I am also going to leave a few tables I made for others to use:
```
68 AS EH IR OD UL TC NM
69 SW HF RG DY LP CB MV
70 WK FJ GX YQ PZ BÓ VK
71 KÉ JÁ XÍ QÚ ZÜ ÓÖ
72 ÉÄ ÁË ÍÏ ÚÆ ÜŒ ÖÑ
73 ÄŸ Ë1 Ï2 Æ3 Œ4 ÑŸ
74 Ÿ5 16 27 38 49
75 50 6? 7! 8( 90
76 0) ?- !/ (\
77 )| -= /* \†
78 |‡ =§ *[ †]
79 ‡_ §~ [{ ]}
80 _© ~€ {< }©
81 ©µ €µ <»
82 µ µ »
>»
```
You read it from top to bottom, two letters at a time (or ignore odd columns). Three A's make a S, Three S-es makes a W and so on. Chains that end simply wrap around to the first column on the next line. No three maps makes a >.
Here are the chains of maps you can make with no repeats:
```
ASWKÉÄŸ50)|‡_©µ
EHFJÁË16?-=§~€µ
IRGXÍÏ27!/*[{<»
ULPZ܌490
TCBÓÖÑŸ
NMVK
>»
```
[Answer]
## **C#, ~~364~~ 361 bytes, points = 734.754 x 1.08 = 793.534**
Might as well get the ball rolling with a big one...
```
string F(string s){var m=@"AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/\|=*†‡§[]_~{}©€<>µ»";var g=new int[75];foreach(int a in s.Select(c=>m.IndexOf(c)))g[a]++;int i=0;for(;i<73;){g[m.IndexOf(@"SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/\|=*†‡§[]_~{}©€<©µµ»»"[i])]+=g[i]/3;g[i++]%=3;}return string.Join("",g.Zip(m,(x,l)=>"".PadLeft(x,l)));}
```
I've yet to think of a clever way of mapping the seemingly random encoded characters to their relative worth, so I've used a brute force method for now.
This implements bonus feature 3 by virtue of the method of grouping, which nets me a cool 58ish points.
*Edit: Rewrote output loop into join/zip*
[Answer]
# SWI-Prolog, 354 bytes, points = 738.552 \* 1.08 = 797.64
```
a(A,Z):-msort(A,S),b(S,[],B),(msort(B,S),string_codes(Z,S);a(B,Z)).
b(X,R,Z):-(X=[A,A,A|T],nth0(I,`AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/\\|=*†‡§[]_~{}©€<>`,A),nth0(I,`SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/\\|=*†‡§[]_~{}©€<©µµ»»`,B),b(T,[B|R],Z);X=[A|T],b(T,[A|R],Z);Z=R).
```
Expects inputs as codes strings, for example `a(`AAAEEEIII`,Z).` will output `Z = "SRH"`.
I'll see what I can do about the other two bonuses...
[Answer]
# ~~Javascript, 432 bytes, points = 698.32 \* 1.08 \* 1.2 = 905.02~~
```
function g(r){for(var n="AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/|=*†‡§[]_~{}©€<>",t="SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/|=*†‡§[]_~{}©€<©µµ»»",a=/([^»µ])\1{2}/,c=/\d+/,e=/\d+(.)/,f=0;0!==(f=r.match(c)-0);)r=r.replace(c,Array(f).join(r.match(e)[1]));for(;null!==(f=r.match(a));)r=r.replace(a,t.charAt(n.search(f[1])));return r.split("").sort(function(r,t){return n.indexOf(r)-n.indexOf(t)}).join("")}
```
# ECMAScript 6, 417 bytes, points = 705.72 \* 1.08 \* 1.2 = 914.61
## No online minifier version: (last version was passed through a [minifier](http://jscompress.com/))
```
let F=s=>{for(var m="AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/\|=*†‡§[]_~{}©€<>",r="SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/\|=*†‡§[]_~{}©€<©µµ»»",x=/([^»µ])\1{2}/,y=/\d+/,z=/\d+(.)/,p=0;(p=s.match(y)-0)!==0;)s=s.replace(y,Array(p).join(s.match(z)[1]));for(;(p=s.match(x))!==null;)s=s.replace(x,r.charAt(m.search(p[1])));return s.split('').sort((a,b)=>m.indexOf(a)-m.indexOf(b)).join('');};
```
Run with [Babel](https://babeljs.io/repl/)
---
Tested with the following inputs:
1. `AAA`
2. `AAAEEEIII`
3. `3A3E3I`
4. `»»»»»`
5. `5»`
## General solution
Basically using regex whenever possible
```
var m = "AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/\|=*†‡§[]_~{}©€<>";
var r = "SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/\|=*†‡§[]_~{}©€<©µµ»»";
var x = /([^»µ])\1{2}/;
while((p=s.match(x))!==null){
s=s.replace(x,r.charAt(m.search(p[1])));
}
```
Nothing fancy here, just replacing a match for the respective output.
### For the 1.2 Bonus
Regexing the numbers and the following letter, readable code goes like this:
```
// variable 's' is the input string
var y = /\d+/;
var z = /\d+(.)/;
var p = 0;
while((p=s.match(y)-0) !== 0) {
s=s.replace(y,Array(p).join(s.match(z)[1]));
}
```
As you can see, `s.match(y) - 0`, the matched string is subtracted by 0, that's to force a parse int without actually calling `parseInt()`.
Also `Array(p).join(s.match(z)[1])` basically joins an array of `p` **empty** elements, with the character found in the match, that's an easy way to print a letter (let's say `E`) `p` amount of times.
### For the 1.08 Bonus
Sorting algorithm:
```
s.split('').sort(function(a,b) {
return m.indexOf(a) - m.indexOf(b);
}).join('');
```
[Answer]
# Javascript (ES6), 389 bytes, points = 719.942 \* 1.08 \* 1.2 = 933.045
In the lead, at least for now...
```
a=>{a=a.replace(/(\d)(.)/g,(m,A,B)=>B.repeat(A)),x='AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/\\|=*†‡§[]_~{}©€<>',y='SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/\\|=*†‡§[]_~{}©€<©µµ»»',s=_=>(a=[...a].sort((a,b)=>x[I='indexOf'](a)-x[I](b)).join``);s();for(i=0;i<x.length;i++){a=a.replace(new RegExp(`[${('\\|'[I](h=x[i])<0?'':'\\')+h}]{3}`,'g'),y[i]);s()}return a}
```
Try it here:
```
F=a=>{a=a.replace(/(\d)(.)/g,(m,A,B)=>B.repeat(A)),x='AEIOUTNSHRDLCMWFGYPBVKJXQZÓÉÁÍÚÜÖÄËÏÆŒÑŸ1234567890?!()-/\\|=*†‡§[]_~{}©€<>',y='SHRDLCMWFGYPBVKJXQZÓKÉÁÍÚÜÖÄËÏÆŒÑŸ1234Ÿ567890?!(0)-/\\|=*†‡§[]_~{}©€<©µµ»»',s=_=>(a=[...a].sort((a,b)=>x[I='indexOf'](a)-x[I](b)).join``);s();for(i=0;i<x.length;i++){a=a.replace(new RegExp(`[${('\\|'[I](h=x[i])<0?'':'\\')+h}]{3}`,'g'),y[i]);s()}return a};
input=document.getElementById("input");
p=document.getElementById("a");
input.addEventListener("keydown", function(){
setTimeout(function(){p.innerHTML = F(input.value);},10);
})
```
```
<form>Type your text here: <input type="text" id="input" value="3A"/></form>
<h3>Output:</h3>
<p id="a">S</p>
```
The 1.2 bonus is somewhat tricky in its formatting. If you want to input a regular number, place a `1` before it.
Basically, this scans through every character that has an upgrade (all except `µ` and `»`), then finds all sets of three of this character and replaces them with the upgraded char. Sorting after each `.replace` was the best way to make sure this always works properly, so that was an automatic bonus. The 1.2 bonus was a little harder, but I got it sorted out in 45 bytes. The 1.5 bonus is just not worth it at all, as it requires a ton more encoding and would at least double the length.
As always, suggestions are very welcome!
] |
[Question]
[
**Closed**. This question needs [details or clarity](/help/closed-questions). It is not currently accepting answers.
---
**Want to improve this question?** Add details and clarify the problem by [editing this post](/posts/37435/edit).
Closed 3 years ago.
[Improve this question](/posts/37435/edit)
I have a program that generates formatted Brainfuck code. I run my program
```
./example "S"
```
and the output is
```
+[>+
<
+++
]
>--.
```
which prints S in Brainfuck.
Your objective is to write a program which accepts a string as input and outputs source code in another language which prints that string.
* The source code your program outputs must be formatted in such a way that it represents the string in ASCII art (printed horizontally, not vertically).
* The source code cannot contain the string (it may, however, contain letters that occur in the string, just not sequentially)
Otherwise,
* [Standard loopholes](http://meta.codegolf.stackexchange.com/questions/1061/standard-loopholes-which-are-no-longer-funny) apply.
* Shortest code wins.
Please title your submission with the language it is written in, the language it outputs, and the total size in bytes. Please include the output of your program when you enter the string UNCOPYRIGHTABLE.
Thanks!
[Answer]
# Perl → Befunge, 868 bytes
OK, I'll get the ball rolling. This could be golfed down a bit more, but my head is starting to hurt...
```
$_=" f,j f,jjj f,lgdlH,b >llb ,l,b lb ,lb , f,j f j f >>l>,lb ,9vb >lb,Hlb,H>vb >999*+,
mg8Hg8Ha8c8g8Hgb8Hab8,8k/ 8Ha8Hi /H8HgH8g8k >H9ghgH9b 'bhbhgH9ghg9+gH9ga//
ma8Hg8Ha8c8ahgbhabhh /bhah VdhibHH9ghb >H9ghgH9abhbhgH*g9+g ii /b>l,^b //
>H^>>Hned*angne ned* eneknabnn<b nangn idH*gned*gneb*>>,b *kngH5g*6 Adb><aha//b
H*g2HgH3a4Hg5Ha6c7gHHgb1Hab2+3H ib4Ha5Hg6kiHH7g8c, id1H iabHk3k4+g >+ ,^>^dd 7/ ib *k //b
+1g+HgH+g+Hg+Ha+c+g,Hgb+kk >^+ki +Ha+Hg+HgH+g+cki'+ki ,gk+k>^gbHc^H 9*gb8+b//a
^<b ^>^ebe^'>^e >^e>>^a >^>> >^gd>^ke> >^b '>^e>>^g>^g e^ >^a >^~'i>^b i >2+^b >^b e>gHaV V >^gb>^bHHHHHH";
s/n/*H/g;s/m/H8g8HgH8/g;s/l/v>/g;s/k/Hb/g;s/j/f>,/g;s/i/\\/g;s/h/9H/g;s/g/bd/g;s/f/ve/g;s/e/>>>/g;s/d/ H/g;s/c/HaH/g;s/b/ /g;s/a/ /g;@f=split$/;
@s=split('',$ARGV[0]);foreach$r(0..6){for($i=0;$i<@s;$i++){print substr($f[$r],(ord($s[$i])-65)*6,6).$"}print$r?'':' @',$/}
```
## Examples:
The shorter examples can be copy-pasted into online interpreters like [this one](http://www.compileonline.com/compile_befunge_online.php), but **UNCOPYRIGHTABLE** appears to result in a program that is too long for all the online interpreters to handle.
```
$ perl bf.pl ABCDEFGHI
v>>>, v>>>>, v>>>, v>>>>, v>>>>, v>>>>, v>>>, v> H Hv>H, @
H8 H 8H H H8 H 8H H 8H 8H H8 H 8H H 8H
H8 H 8H H H8 8H H 8H 8H H8 9H H 9H
>H^>>H *H>>> H* *H H *H>>> *H>>> H* >>> *H>>>H *H
H* H 2H H H3 4H H 5H 6H H7 H HH H 1H
+1 H +H H H+ H +H H +H +H H+ H ,H H +H
^< ^ >^>>> >>>^' >^>>> >^>>>> >^ >^>> >^ H H>^H
$ perl bf.pl JKLMNOPQR
>v> v> , v>, v> , v> , v>>>, v>>>>, v>>> v>>>>, @
8, 8H / 8H 8H\ /H 8H H H8 H 8H > H9 H 9H H
9H 9H / 9H 9H V H 9H\ H H9 H 9H > H9 H 9H H
*H *H< *H *H H *H \ H H* H *H>>> H* H *H>>>
2+ 3H \ 4H 5H H 6H \H H7 H 8H H, \ H 1H \
H >^ +H \ +H +H H +H H H+ H +H HH \' +H \
>>>> >^ ' >^>>>> >^ H >^ H >>>^ >^ >^~'\ >^ \
$ perl bf.pl STUVWXYZ
v>>> >>v>>, v> , 9v > v> ,H v> ,H >v > 999*+, @
H9 ' 9H 9H H H9 H 9H H 9+ H H9 H //
H9 9H 9H H H* H 9+ H \\ / >v>,^ //
*>>, *H *H H H5 H *6 A H >< 9H //
HH 3H 4+ H >+ ,^ >^ H H 7/ \ *H //
, HH +H >^ H HH H^H 9* H 8+ //
>2+^ >^ >>>> HH V V >^ H >^ HHHHHH
$ perl bf.pl UNCOPYRIGHTABLE
v> , v> , v>>>, v>>>, v>>>>, >v > v>>>>, Hv>H, v>>>, v> H >>v>>, v>>>, v>>>>, v>, v>>>>, @
9H H 8H H H8 H H8 H 8H > H9 H 9H H 8H H8 H 8H H 9H H8 H 8H H 8H 8H
9H H 9H\ H H8 H9 H 9H > >v>,^ 9H H 9H H8 9H H 9H H8 H 8H H 9H 8H
*H H *H \ H H* H* H *H>>> 9H *H>>> *H H* >>> *H>>>H *H >H^>>H *H>>> *H *H>>>
4+ H 6H \H H3 H7 H 8H *H 1H \ 1H H7 H HH H 3H H* H 2H H 4H 5H
>^ H +H H H+ H H+ H +H 8+ +H \ +H H+ H ,H H +H +1 H +H H +H +H
>>>> >^ H >>>^' >>>^ >^ >^ >^ \ H>^H >^>> >^ H >^ ^< ^ >^>>> >^>>>> >^>>>>
```
---
### Note:
The `@` character at the end of the first line of output tells Befunge to stop running. Without it, the program would keep repeating the same word forever.
[Answer]
# C --> Brainfuck 556 Bytes
Excluding unnecessary whitespace. I could easily save another hundred by changing the font data in `d[]`from hex to a string in quotemarks.
```
i,j,s,t,u,v,w,h;
char a[99],b[9999],k,d[]={0x6F,0x3B,0x5A,0xD5,0x7A,0x6A,0x5B,0x2F,0xD0,0x57,0xA1,0x1B,0xCF,0x4F,0x5F,0x6E,0x6D,0x4E,0x79,0x3A,0x1F,0x95,0x9F,0xA6,0x3D,0x76};
f(int z){
return d[a[j-1-t%(2*w*j)/w/2]-65]>>z&1?z=b[i*v/u],b[i++*v/u]=' ',z:' ';
}
main(){
for(scanf("%s",a);a[j];i++)a[j]-k?k++,b[i]='+':(b[i]='.',t+=(0xE7572B70967DB>>(a[j]*2-130)&3)+5,j++);
s=i/t+2;
u=t*(s-1);
v=i;
i=0;
w=2*s;h=2*s+1;
for(t=2*w*h*j;t--;)putchar(
t%(2*w*j)?
t/2/w/j%s?
t%s||!(t/4%s)?' ':f(t/s%4/2+t/2/w/j/s*2|7*(t/s%4==2))
:(
(t%s)&&(t/s+1&2)?f(4+t/2/w/j/s):' '
)
:10 //newline
);
}
```
This uses a calculator font (for low entropy, only one byte per letter) and a very naive Brainfuck compiler inspired by <https://codegolf.stackexchange.com/a/35801/15599> (except I use plus instead of minus.) The first `for` loop compiles the text in `a` to the string `b`, and also calculates the number of strokes required to draw the formatted code, using the 13-digit hex magic number (all characters are 5-8 strokes.)
Given the total program length and the stroke count, the number of characters per stroke is calculated (this can be very small if the characters are the same or in ascending order, and very large if the characters are in descending order.)
Most of the rest of the program is dedicated to deciding whether whitespace or one of the strokes needs to be printed. If the cursor is over a stroke square, the function `f`is called with the number of that stroke as an argument. It returns a space if that stroke is not required for the current letter, or a character from the program if it is. Because the number of characters required to complete the ASCII art may be more than the characters in the program, occasionally a space is inserted, hence the calculation `b[i * v/u]`.
There are four single strokes and four double strokes in the font, numbered as follows, which are either present or absent, depending on the letter.
```
6666 6666
3 7 2
3 7 2
3 7 2
3 7 2
5555 5555
1 7 0
1 7 0
1 7 0
1 7 0
4444 4444
```
**Output**
Test at <http://copy.sh/brainfuck/>
ABC
```
+ ++ +++ ++++ + ++
+ + +
+ + + +
+ + +
+ + +
++++ + ++ +++ ++++
+ + + +
+ + + +
+ + + +
+ + + +
++++ + ++ ++. +.+.
```
DEF
```
+ ++ ++ + ++++ +++ ++ + ++++
+ + +
+ + +
+ + + +
+ + +
++ + +++ ++++ + ++
+ + +
+ + + +
+ + +
+ + +
++++ + ++ ++. +.+.
```
GHIJK
```
+ + +++ ++ +++ +++ ++
+ + + + +
+ + + + +
+ + + + + +
++ +++ + + +++
+ + + + + + + +
+ + + + + + +
+ + + + + + + +
+++ + + ++. +. +.+ .+.
```
LMNOP
```
+ + +++ + + +++ + + +++ + + +++
+ + + + + + + +
+ + + + + + + +
+ + + + + + + + +
+ + +++
+ + + + + + + +
+ + + + + + + +
+ + + + + + + + +
+ . +.+ . + .+.
```
QRSTU
```
+ + +++ +++ +++ +++ ++
+ + + + + + + +
+ + + + + + +
+ + + + + + + +
+++ +++ + + +++ +++ +++
+ + + + +
+ + + + + +
+ + + + + +
+++ ++ +++ .+. +.+ .+.
```
VWXYZ
```
+ + +++
+ + + + + + + + +
+ + + + + + + + +
+ + + + + + + + +
+++ +++ + + +++ +++ ++
+ + + + + + + + +
+ + + + + + + +
+ + + + + + + +
+++ + + +++ +++ ++ .+. +.+ .+.
```
**COPYABLE**
with most strings with letters in random order (not ascending) the letter size is much larger, and the letters look much better. Unfortunately the file sizes get quite large. I cannot upload the full word UCOPYRIGHTABLE here, COPYABLE is about the longest word I am allowed.
```
+ +++++++++ +++++++++++ + +++++++++ +++++++++++ ++ ++++++++ +++++++++++ +++ +.+++++ +++++++.+.+ ++++ ++++.+ +++++++++++
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+++++++++ + +++++++++++ ++++++++++ +++++++++++ +++++++++++ ++++++++++ +++++++++++ + +++++++++ ++++++++++. +. ++++++++
+ + . + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+ + + + + + + + + + + +
+ + + + + + + + + + +
+++++++++++ +++++++ +++ +++++++++++ ++++++++ ++ +++++++++++ +++++++++ + +++++++++++ ++++++++++ +++++++++++ +++++++++++ ++++++++++ ++++++++++.
```
[Answer]
## C → Brainfuck, 855 bytes
Some newlines added to improve readability. Notice it segfaults on lowercase letters and symbols. Test the output [here](http://copy.sh/brainfuck/).
```
#define p putchar
#define V(x) c=v[1][x]-65;
l[]={96,48,24,12,66,98,60,90,6,70,102,54,118,14,62,126},e[]={2863659686,
3937331886,1787332774,3937053358,4170115215,2291067023,1789692070,2863659690,
1646404134,1778384896,2864569258,4169697416,1145534458,1165457300,1789569702,
2291051182,1823124134,2863573678,1778804902,572662319,1789569706,648719018,
2943841348,2863033002,572680874,4164034831},a[]={36,36,24,34,30,26,29,36,20,20,
30,20,28,26,32,28,33,34,28,20,32,30,28,32,24,24},r,o,j,k,c,z;char*b[]={
"-[+>+<[+<]>]>+","-[+[>---<<]>+]>-","+[>+<+++++++]>",">+++[[-<]>>--]<",
"+[>+<+++]>----","+[>+<+++]>","-[+[+<]>>+]<+"};main(i,v)char**v;{for(;r<8;r++){
for(i=0;v[1][i];i++)for(o=0;o<8;o++){V(i)if((l[(e[c]>>(4*r))&15]>>o)&1){V(j)
if(k==a[c]){j++;k=0;}V(j)z=k-strlen(b[c/4]);if(z<0)p(b[c/4][k]);else{c=(c%4)-z;
!c?p(46):(c>0?p(43):p(62));}k++;}else p(32);}p(10);}}
```
## Examples
It looks a lot nicer on a terminal :(
```
$ ./art ABCDEFGHI
-[+> +<[+< ]>]> +.>>> >>>>>> >>>>>> >>>> >> -[ +>+<
[+ <] >] >+ +. >> >> >> >> >> >> >> >> >> >>
-[ +> +< [+ <] >] >+ ++ .> >> >> >> -[
+>+<[+ <]>]> ++ ++ .> >>>>> >>>>> >> >>>-[+ [>
---<<] >+]>- .> >> >> >>>>> >>>-[ +[ >-- -<<]>+ ]>
-+ .> >> >> >> >- [+ [> -- -< <] >+ ]> -+
+. >> >> >> >> >> -[ +[ >- -- << ]> +] >- ++
+. >> >>>>> >>>> >>>>> +[>+<+ ++ ++++ ]> .> >>>>
$ ./art JKLMNOPQR
+[ >+ <+ ++ ++ ++ ] > +.>> >>+[> +<++ +++++
]> ++ .> >> >>>>>> >> > >+ [> +< ++ ++ ++ +] >+
++ .> >> ++ + [[ - < ]> > -- ]< .> >> >> >> >> >>
>> +++ [[ - <] > > -- ] <+ .> >> >> >> >> >+ ++
[[ -<] >> - -] < + +. > >> >> >>>>> >> >> >+++[
[- <] >> -- ] < + ++ . >> >> >> >> >+ [> +<
++ +] >- -- -. > > > >> >> >> >> >> >>> >> +[
>+<+ ++ ]> ----+. > > > > >>>> >> >>>> >> >>
$ ./art STUVWXYZ
+[>+ <+++]> -- -- ++ .> > > >> >> >> >> +[>+<+
++ ]> -- -- ++ +. >> + [ >+ <+ ++ ]> .>
>> >> >> >> >> >> > > >> >> >> +[ >+
<+++ ]> +. >> >> >> > >> > >>>> >>>> +[
>+<+ ++ ]> ++ .> >> > >> > >>>> >> >>
+[ >+ <+ ++ ]> ++ + .> > >> >> >> >>
>> >> >> >> -[ +[+< ]>>+]< +. >> >> >>
>>>> -[ +[+< ]> >+ ]< ++ .> >> >>>>>>
```
And finally,
```
$ ./art UNCOPYRIGHTABLE
+[ >+ < + ++]> .>>> >>>>> >> >> >>>>> >>>> >+++ [[ -< ]>>--] <+.> >>>>> >> >-[+>+
<[ +< ]> ] >+ ++ .> >> >> >> >+ ++ [[ -< ]> >- -] <+ +. >> >> >> >> >> >> >>
>+ ++ [ [- < ]> >- -] <+ ++ .> >> >> >> >> -[ +[ +< ]> >+ ]< +. >> >> >>
>> >> + [> + <+ ++ ]> -- -- +.>> >> >> >> >> >>>>>> >> +[>+<+ +++++ +] >.>>>
>> -[ + [> - -- << ]> +]>-+ +. >>>>> >> >> >-[ +[>--- << ]>+]>- +++.> >> >>>>>
>> >> > >> > +[ >+ <+ ++ ]> -- -- ++ +. >> -[ +> +< [+ <] >] >+ .> >>
>> >> > >> >> >> >> >> >> >- [+ >+ <[ +< ]> ]> ++ .> >> >> >> >> >> >>
>>>> > > >+[> +<++ ++ ++ +] >+ ++.> >-[+ [> -- -< <] >+ ]>-.> >>>>>> >>>>>>
```
] |
[Question]
[
A certain children's game, often called "Huckle Buckle Beanstalk", is played with two players. Here is a brief description of how the game is played:
1. One player is designated the "hider", and the other the "seeker".
2. The seeker goes out of the room while the hider hides a small, pre-selected object, the "treasure".
3. The hider then attempts to look for the object while the seeker gives them helpful hints:
* If the seeker is approaching the treasure, the hider will call out "warmer!"
* If the seeker is moving away from the treasure, the hider will call out "cooler!"
4. Once the seeker finds the treasure, they announce that they have found it.
Your children want you to play this game with them, however, you are very busy answering questions on codegolf.SE instead. So, you decide to write a program to play the game with them. However, you want to use as little time as possible typing, so you try to make the program as little characters as possible.
We can define the room in which the game is played as a two dimensional toroidal square field. The coordinate `0,0` is the bottom left corner, and the coordinate `99,99` is the top right corner. The treasure is placed at some position `n,m` where `n` and `m` are both positive integers between 0 and 99 inclusive.
Your program will obtain input from the player using its inbuilt user input function (e.g. `prompt()`, `raw_input()`, etc.) If your chosen language *does not* have a user input function, take input from STDIN instead. The game will work as follows:
1. The program "hides" the treasure at a position `n,m`.
2. The program prompts the seeker to input an initial searching position. The input will come in the form `x y` where `x` and `y` are positive integers.
3. The program outputs "correct" if the initial searching position `x,y` is equal to the treasure's position `n,m` and terminates. Otherwise:
4. The program will prompt the seeker to move. The input comes in the form `a b` where `a` and `b` are *integers* that *may be negative*. This represents the *direction vector* that the seeker is moving in (`a` is the x direction and `b` is the y direction).
5. If the resultant position of the seeker is at the treasure, the program outputs "correct" and terminates. Otherwise:
6. The program outputs "cooler" if the seeker is moving away from the treasure, or "hotter" if they are moving towards the treasure.
7. Go to step 4.
The words "moving away" and "moving towards" may be ambigious. For this challenge, if the resultant position of the seeker after moving is closer to the treasure than their position before they were moving, they are moving towards the treasure. Otherwise, they are moving away. (Yes, this does mean that if the resultant and previous position are the same distance away, the program should output "cooler").
This is code golf, so shortest code wins. Ask questions if the specification is not clear.
[Answer]
## Javascript, 275 279
Not a winner by any means, but this should get things started. Uses a trick with `eval()` and defining `100` as a "constant" to shave off a few bytes. Ungolfed version below.
```
function D(){return Math.sqrt((x-n)*(x-n)+(y-m)*(y-m))}
H=100;
n=~~(Math.random()*H);m=~~(Math.random()*H);
P="s=prompt().split(' ')";
eval(P);
x=~~s[0];y=~~s[1];i=0;
while(x!=n||y!=m)
{
if(i)alert(i>j?"hotter":"colder");
i=D();
eval(P);
x=(x+~~s[0])%H;
y=(y+~~s[1])%H;
j=D()
}
alert("correct")
```
Edit: I fell victim to Javascript's string + number operations, hence why `D()` wasn't working properly. I also fixed a bug where "hotter" was displayed before "correct". This adds 4 bytes.
[Answer]
# Python 3 - 238 bytes
---
Code:
```
from random import*
r=randint;a=100;X=r(0,a);Y=r(0,a);d=0;F=lambda:((X-x%a)**2+(Y-y%a)**2)**0.5;i=lambda:map(int,input().split());x,y=i()
while F():
if d:print(["cooler","hotter"][d<D])
D=F();Z,K=i();x+=Z+a;y+=K+a;d=F()
print("correct")
```
Ungolfed:
```
from random import*
treasure_x = random.randint(0,100)
treasure_y = random.randint(0,100)
distance = lambda:((treasure_x - x % 100) ** 2 + (treasure_y - y % 100) ** 2) ** 0.5
x, y = map(int, input("Coordinates in the form x y: ").split())
new_distance = 0
while distance():
if new_distance:
if new_distance < prev_distance:
print("hotter")
else:
print("cooler")
prev_distance = distance()
dx, dy = map(int, input("Move in the form dx dy: ").split())
x = (dx + x) % 100
y = (dy + y) % 100
new_distance = distance()
print("correct")
```
Sample run:
```
$ python hotter_colder.py
50 50
10 0
cooler
-10 0
hotter
-10 0
hotter
-10 0
hotter
-10 0
hotter
-10 0
cooler
5 0
hotter
1 0
hotter
1 0
hotter
1 0
hotter
1 0
hotter
1 0
cooler
-1 0
hotter
0 10
cooler
0 -10
hotter
0 -10
hotter
0 -10
cooler
0 5
hotter
0 1
hotter
0 1
correct
```
I won't say that my strategy in finding the treasure is particularity fast...
[Answer]
# Groovy - 278 266 262
**Golfed:**
```
def x,y,n,m,d,D=999,S=100,r=newScanner(System.in);n=Math.floor(Math.random()*S);m=Math.floor(Math.random()*S);while(true){x=r.nextInt();y=r.nextInt();d=Math.sqrt((x-n)**2+(y-m)**2);if(d==0){print"Correct";break;}else if(d<D){print"Cooler"}else{print"Hotter"}D=d}
```
**Ungolfed:**
```
def x,y,n,m,d
def dist = 99999
def r = new Scanner(System.in)
def S = 100
n = Math.floor(Math.random()*S)
m = Math.floor(Math.random()*S)
println "Treasure is at: $n $m"
while(true){
x = r.nextInt()
y = r.nextInt()
d = Math.sqrt((x-n)**2+(y-m)**2)
if(d == 0){print "Correct"; break;}
else if(d > dist){print "Hotter" }
else{print "Cooler"}
dist = d
}
```
**Trial:**
```
-1 -1
Cooler 12 12
Cooler 14 14
Cooler 13 13
Hotter 15 15
Cooler 90 55
Cooler 95 -100
Hotter 95 83
Correct
```
[Answer]
## Groovy - 343 chars
Derived somewhat from [LittleChild](https://codegolf.stackexchange.com/users/31307/little-child)'s answer.
Golfed:
```
z=100
f={Math.floor(Math.random()*z)}
h={println it}
r=new Scanner(System.in)
i={r.nextInt()}
n=f();m=f();x=i();y=i();p=z;a=0;b=0
g={(Math.abs(it))**2};o={i,j->(j<0)?(((i+j)<0)?(((i+j)+z)%z):(i+j)):(i+j)%z};u={Math.sqrt g(n-x)+g(m-y)};d=u()
while(d>0.1){if(d<p){h "Hotter"}else{h "Cooler"};a=i();b=i();x=o(x,a);y=o(y,b);p=d;d=u()}
h "Correct"
```
Ungolfed:
```
z=100
f={Math.floor(Math.random()*z)}
h={println it}
r=new Scanner(System.in)
i={r.nextInt()}
n=f();m=f()
x=i();y=i()
p=z;a=0;b=0
g = {(Math.abs(it))**2}
o = {i,j->(j<0)?(((i+j)<0)?(((i+j)+z)%z):(i+j)):(i+j)%z}
u = {Math.sqrt g(n-x)+g(m-y)};d=u()
while (d>0.1) {
if (d<p) { h "Hotter" } else { h "Cooler" }
a=i();b=i()
x=o(x,a);y=o(y,b)
p=d;d=u()
}
h "Correct"
```
Sample run, where program emits the target for illustration. From my understanding of OP, the initial input is absolute, and subsequent inputs are relative. Also, the grid wraps around.
run A:
```
bash$ groovy X.groovy
goal 98.0 19.0
1 19
Hotter
-1 0
Cooler
-1 0
Hotter
-1 0
Correct
```
run B:
```
bash$ groovy X.groovy
goal 93.0 20.0
90 16
Hotter
2 2
Hotter
1 0
Hotter
0 -18
Cooler
0 -1
Cooler
0 -1
Hotter
0 -79
Hotter
0 1
Correct
```
[Answer]
## APL, 86 chars
```
h←?2⍴s←100⋄1{h≡n←s|s+⍵+⎕:⎕←"correct"⋄⍺:0∇n⋄⎕←(</+/⊃×⍨n⍵-¨⊂h)⌷"cooler" "hotter"⋄0∇n}0 0
```
Distance computation doesn't wrap around, but moves do.
**Ungolfed:**
```
h←?2⍴s←100 ⍝ generate random starting point
1{ ⍝ loop starting with ⍺←1 (1 if first loop) and ⍵←0 0 (position)
n←s|s+⍵+⎕ ⍝ n←new position, ⍵ plus the move read from input, modulo 100
n≡h: ⎕←"correct" ⍝ check for end condition
⍺: 0∇n ⍝ if first loop, skip the rest and ask for a move again
t←</+/⊃×⍨n⍵-¨⊂h ⍝ t←1 if n is closer to h than ⍵ (squared distance)
⎕←t⌷"cooler" "hotter" ⍝ output thermal gradient label
0∇n ⍝ loop with new position
}0 0
```
**Example:**
```
⎕:
22 33
⎕:
2 6
hotter
⎕:
0 1
cooler
⎕:
0 ¯3
correct
```
[Answer]
# Python 2.7, 227
```
from random import*
r=randint
h=100
n=r(0,h)
m=r(0,h)
i=lambda:map(int,raw_input().split())
x,y=i()
d=lambda:(x%h-n)**2+(y%h-m)**2
e=d()
while e:
p=e;a,b=i();x+=a;y+=b;e=d()
if e:print e<p and'hotter'or'cooler'
print'correct'
```
I got the input function and the idea of applying the modulo in the distance calculation rather than the location update from matsjoyce's answer.
We only need distances for comparisions: Are we at the exact location? Are we closer than before? For both of these, we get the same result comparing the **squares** of the distances as we would comparing the distances. The square-root calculation required to get the actual distance is unnecessary.
Ungolfed:
```
import random
h = 100 # height (and width) of the square grid
# location of item
n = random.randint(0, h)
m = random.randint(0, h)
def input_pair():
return map(int, raw_input().split())
x,y = input_pair()
def distance_squared():
return (x % h - n)**2 + (y % h - m)**2
er = distance_squared()
while er:
previous_er = er
a,b = input_pair()
x += a
y += b
er = distance_squared()
if er:
print 'hotter' if er < previous_er else 'cooler'
print 'correct'
```
Sample run:
```
50 50
20 0
hotter
20 0
cooler
-20 0
hotter
10 0
cooler
-10 0
hotter
-1 0
hotter
-1 0
hotter
-5 0
cooler
5 0
hotter
-1 0
cooler
1 0
hotter
1 0
cooler
-1 0
hotter
0 10
hotter
0 10
hotter
0 10
cooler
0 -5
hotter
0 -1
hotter
0 -1
hotter
0 -1
correct
```
[Answer]
# ECMAScript 6, 262
```
Z=100;A=Math.abs;P=(a,b)=>(q=Math.min(A(a-b),Z-A(a-b)),q*q);G=_=>prompt().split(' ');R=_=>new Date%Z;V=_=>P(X,I)+P(Y,J);I=R();L=G();X=+L[0];Y=+L[1];J=R();for(D=V();D;D=N)T=G(),X=(+T[0]+Z+X)%Z,Y=(+T[1]+Z+Y)%Z,N=V(),N&&alert(N<D?"hotter":"cooler");alert("correct")
```
Ungolfed:
```
Z=100;
M=Math.min;
A=Math.abs;
S=a=>a*a;
P=(a,b)=>S(M(A(a-b),Z-A(a-b)));
G=_=>prompt().split(' ');
R=_=>new Date%Z;
V=_=>P(X,I)+P(Y,J);
I=R();
L=G();
X=+L[0],Y=+L[1];
J=R();
for(D=V();D;D=N)
T=G(),
X=(+T[0]+Z+X)%Z,Y=(+T[1]+Z+Y)%Z,
N=V(),
N&&alert(N<D?"hotter":"cooler");
alert("correct")
```
[Answer]
**C 193 176 171**
```
#define F x*x+y*y
x,y,a,b,d;main(){srand(time(0));x=rand();y=rand();while(scanf("%d %d",&a,&b),x-=a,x%=100,y-=b,y%=100,puts(F?F<d?"hotter":d?"cooler":"":"correct"),d=F);}
```
I'm sure there must be savings on the random number generation. Apart from that the key point is that reading in x & y is just treated as an offset from 0, so I only need one scanf. It does mean that I have to suppress printing hotter or cooler on the first iteration though.
Changes:
Put the location into x & y directly and then shift this back to (0,0) rather than put it in m & n and use x & y to search for it.
I realised that I was printing "hotter" and "correct" so I had to add an extra three characters here.
Rewritten the printing to put all conditions in it, saving an extra call to puts().
[Answer]
## JavaScript ES6, Latest Firefox, ~~177~~ ~~173~~ 164 characters
Obviously, this cannot beat the APL one. That language is crazy! Maybe developed solely for code-golf questions :D :P
But here goes my solution in ES6 JavaScript. Run it in latest Firefox Nightly (or may be release version too) in the Web Console or Scratchpad.
```
A=a=>a*a;a=alert;g=v=>[x,y]=prompt().split(" ");r=v=>Math.random()*100|0;n=r(m=r(d=0));D=v=>A(n-x)+A(m-y);while(d=D(g(l=d)))l&&a(l<d?"hotter":"cooler");a("correct")
```
I'd like to skip the ungolfed version for now. Comment if you want to see the ungolfed version :)
**EDIT** : Golfed a lot! reduced 9 characters. Still seeing if further scope of golfing.
[Answer]
# Python 226
```
from random import randint as r
x=r(0,100)
y=r(0,100)
l=9**9
while True:
i,j=map(int,raw_input().split())
if x==i and y==j:
print 'correct'
break
c=(x-i)**2+(y-j)**2
if c<l:print 'warmer'
elif c>l:print 'colder'
l=c
```
That `import` looks really long and stupid, but it actually saves me 8 chars. `:D`
Example game:
```
50 50
warmer
50 75
colder
50 25
warmer
50 13
colder
50 37
colder
50 20
warmer
50 21
warmer
50 22
warmer
50 23
warmer
50 24
warmer
50 26
colder
50 25
warmer
25 25
colder
75 25
warmer
74 25
warmer
62 25
warmer
61 25
warmer
55 25
colder
56 25
warmer
57 25
warmer
58 25
warmer
59 25
warmer
60 25
warmer
61 25
warmer
62 25
colder
61 25
warmer
61 24
correct
```
[Answer]
# Sinclair /ZX Spectrum BASIC - 305 bytes
```
10 RANDOMIZE:LET o=99:LET a=INT(RND*99)+1:LET b=INT(RND*99)+1:PRINT a,b
20 INPUT "sx,sy:";c,d
30 LET g=SQR(ABS(a-c)^2+ABS(b-d)^2)
40 PRINT g'c,d
60 IF g=0 THEN PRINT "Found!":STOP
70 INPUT "mx,my:";x,y:LET c=c+x:let d=d+y
80 PRINT ("hotter" AND g<o)+("colder" AND g>o)
90 LET o=g:GOTO 30
```
As the Spectrum stores each keyword as one byte, it helps keep the size down.
After it's been entered, found out the size with
```
print "bytes:";peek 23641+256*peek 23642-(peek 23635+256*peek 23636)+1
```
] |
[Question]
[
The Haskell function [`biSp`](http://haddocks.fpcomplete.com/fp/7.4.2/20130829-168/concatenative/Control-Concatenative.html#v%3abiSp) has type signature
```
biSp :: (a -> c) -> (b -> d) -> (c -> d -> e) -> a -> b -> e
```
and (for those who prefer [combinator calculus](http://en.wikipedia.org/wiki/Combinatory_logic)) can be defined as
```
biSp g h f x y = f (g x) (h y)
```
Your task is to implement `biSp` in point-free form (equivalently: as a combinator without any lambdas) using only two primitives:
```
(.) :: (b -> c) -> (a -> b) -> a -> c
flip :: (a -> b -> c) -> b -> a -> c
```
or
```
(.) f g x = f (g x)
flip f x y = f y x
```
For those with a background in combinator calculus, these are respectively the [B and C combinators](http://en.wikipedia.org/wiki/Combinatory_logic#Combinators_B.2C_C).
You may define helper functions so long as they are point-free. Your score is the total number of terms in all right-hand-side expressions.
### Testing
You can test a Haskell solution without installing any software using Ideone. By providing an explicit type alongside the definition you ensure a compile-time error if the function is incorrect. E.g. using the `:pl` reference implementation ([online demo](http://ideone.com/QF379D)):
```
biSp :: (a -> c) -> (b -> d) -> (c -> d -> e) -> a -> b -> e
biSp = flip . ((flip . ((.) .)) .) . flip (.)
main = putStrLn "Compiled ok"
```
[Answer]
# 7 terms
We again define a helper combinator `BBQ = B B (C B)`, which has reduction rule
```
BBQ w x y z = x y (w z)
```
Then `biSp = BBQ BBQ BBQ`
```
BBQ BBQ BBQ g h f x y
= BBQ g (BBQ h) f x y
= BBQ h f (g x) y
= f (g x) (h y)
```
[Online demo](http://ideone.com/O9JzKU)
By brute force, this is the only 7-term solution and there is no smaller solution.
### 8 terms
There are a handful of 8-term solutions. Firstly, the obvious
```
C BBQ BBQ BBQ
```
which reduces in one step to `BBQ BBQ BBQ`.
Then there are three solutions of the form `X X X` with a five-term `X`:
* `X = B (B B) C B` which reduces in one step to `BBQ`
* `X = C B (C B) B` which reduces in one step to `BBQ` and allows the further extraction, for no net gain or loss, of a helper combinator `Q = C B`
* `X = C (B C (B B))`
There is one solution of the form `X X` with a six-term `X`:
* `X = C B (B B (C B))` (again, with an equivalent version which extracts `Q = C B`)
And there is one solution which can only be written in 8 terms with two helper combinators:
```
Q = C B
X = Q (Q Q B)
biSp = X X
```
[Answer]
## 9 terms
Define a helper combinator `BBQ = B B (C B)`, which has reduction rule
```
BBQ w x y z = x y (w z)
```
Then we have three options:
1. `C (B B BBQ) BBQ`
2. `B (C B BBQ) BBQ`
3. `C (B (C BBQ) BBQ)`
To show the equivalence of the first two:
```
C (B B BBQ) BBQ g h f x y
= B B BBQ g BBQ h f x y
= B (BBQ g) BBQ h f x y
B (C B BBQ) BBQ g h f x y
= C B BBQ (BBQ g) h f x y
= B (BBQ g) BBQ h f x y
```
We can then continue:
```
= BBQ g (BBQ h) f x y
```
That then gives the equivalence with the third:
```
C (B (C BBQ) BBQ) g h f x y
= B (C BBQ) BBQ h g f x y
= C BBQ (BBQ h) g f x y
= BBQ g (BBQ h) f x y
```
Finally
```
= BBQ h f (g x) y
= f (g x) (h y)
```
In Haskell this is (picking one of the options):
```
bbq = (.) (.) (flip (.))
biSp = flip ((.) (.) bbq) bbq
```
[Online demo](http://ideone.com/MRxl5V)
[Answer]
## 9 terms
This uses an intermediate combinator which I shall call `Par` for *parity*, because of the way it groups its arguments. `Par = B C (B B)` has reduction rule
```
Par w x y z = (w y) (x z)
```
Then `biSp = C (B Par (C Par))`. To demonstrate:
```
C (B Par (C Par)) g h f x y
= B Par (C Par) h g f x y
= Par (C Par h) g f x y
= C Par h f (g x) y
= Par f h (g x) y
= f (g x) (h y)
```
In Haskell this is
```
par = (.) flip ((.) (.))
biSp = flip ((.) par (flip par))
```
[Online demo](http://ideone.com/nVfNcx)
[Answer]
## 10 terms
```
1 2 3 4 5 6 7 8 9 10
biSp = flip . ((flip . ((.) .)) .) . flip (.)
```
Another reference solution, that from ghci-on-acid's `:pl` command.
[Answer]
**10 terms**
```
1 2 3 4 5 6 7 8
biSp = cf ((.) (cf ((.) (.))) . flip (.))
9 10
cf = (.) flip
```
***Another 10 term solution***
```
1 2 3 4 5 6 7 8
biSp = fc ((.) . fc) . fc . fc
9 10
fc = flip (.)
```
] |
[Question]
[
Your objective is to take multiline ASCII like
```
| v |
* * * *
* * *
```
and have an array that includes everything that isn't a star changed to a star (except for [any-width] spaces) and the number of stars it included and the number of stars it now includes. So the output of my example would be:
```
['* * *
* * * *
* * *',7,10]
```
or
```
["* * *\n* * * *\n * * *", 7, 10]
```
depending on what your code language does.
This is a [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") challenge, so the shortest bytes wins!
[Answer]
### GolfScript, 30 characters
```
.{.'
'?)\42if}%.{@'*'/,(}2*]`
```
Takes the input from stdin. *Example ([test online](http://golfscript.apphb.com/?c=OyJ8ICB2ICB8CiogKiAqICoKICogKiAqCiIKCi57LicKICc%2FKVw0MmlmfSUue0AnKicvLCh9MipdYA%3D%3D&run=true)):*
```
> | v |
> * * * *
> * * *
["* * *\n* * * *\n * * *\n" 7 10]
```
[Answer]
# Python - 58 66 characters
Sooo... my first Code Golf attempt...
**Code:**
```
import re;p=re.sub(r'\S','*',i);print[p,i.count('*'),p.count('*')]
```
**Output:**
```
['* * *\n* * * *\n * * *', 7, 10]
```
**Variables:**
* `i` - input string
* `p` - pattern
* `o` - output - *removed*
**Dependencies:**
Python [`re`](https://docs.python.org/2/library/re.html) module
**Full code:**
```
import re
i = '| v |\n* * * *\n * * *'
p = re.sub(r'\S','*', i)
print [p, i.count('*'), p.count('*')]
```
**Edits:**
* Added `import re` to solution
* Replaced `o=` with print
* `r'[/\S/g]'` was changed to `r'\S'` *(thanks @14mRh4X0r)*
[Answer]
## Ruby 2.0, 53 characters
```
p [r=gets($n).gsub(/\S/,?*),$_.count(?*),r.count(?*)]
```
Not sure on the exact input/output formats required. This takes input on STDIN and formats the output like so:
Input:
```
| v |
* * * *
* * *
```
Output:
```
["* * *\n* * * *\n * * *", 7, 10]
```
[Answer]
# JavaScript (ECMASCript 6) - 51 Characters
```
i=j=0,[A.replace(/\S/g,x=>(j++,i+=x=='*','*')),i,j]
```
Assumes the variable `A` contains the multiline ASCII input. To take it from the user then replace the `A` with `prompt()` (+7 characters) or as a function (again +7 characters):
```
f=A=>(i=j=0,[A.replace(/\S/g,y=>(j++,i+=y=='*','*')),i,j])
```
Output is to the console.
**Test:**
```
A='| v |\n* * * *\n * * *'
i=j=0,[A.replace(/\S/g,x=>(j++,i+=x=='*','*')),i,j]
```
Outputs:
```
["* * *
* * * *
* * *", 7, 10]
```
[Answer]
## PHP ≥ 5.5, ~~84~~ ~~69~~ 63 bytes
```
$a=[preg_replace('/\S/','*',$s,-1,$n),substr_count($s,'*'),$n];
```
Not a lot to say about this. As there is no specification for how to handle input/output, I'm assuming variable storage. Expects the input in variable `$s` and stores the array in variable `$a`. Too bad those function names are s o long.
[Answer]
# Rebol, 84
```
c: s: 0 parse t[any["*"(++ s)|" "|"^/"| m: skip(change m"*" ++ c)]]reduce[t s s + c]
```
Set `t` to the text like so....
```
t: {| v |
* * * *
* * *}
```
and this would return...
```
["* * *^/* * * *^/ * * *" 7 10]
```
Ungolfed version with some notes:
```
c: s: 0 ;; "s" is star count before change, "c" is count of chars changed to stars
; so using single-char ANY rule to parse each character in "t"
parse t [
any [ ;; so "t" is made up of ANY...
"*" (++ s) | ;; "*" (if so then increment s)
" " | ;; or a space
"^/" | ;; or a newline
m: skip (change m "*" ++ c) ;; or anything else (skip)
;; (and so change to "*" & increment c)
]
]
reduce [t s s + c] ;; return array with amended text (t) and counts
```
[Answer]
## Groovy : 96 92 chars
```
s=System.in.text
t=s.replaceAll(/[^\*\s]/,/\*/)
println "['$t',${s.count"*"},${t.count"*"}]"
```
Uses [Groovy](http://groovy.codehaus.org/) 2.2.1
Reads from STDIN. IMHO, not especially clever, but fairly easy to read (given its brevity)
[Answer]
# [Stax](https://github.com/tomtheisen/stax), 12 [bytes](https://github.com/tomtheisen/stax/blob/master/docs/packed.md#packed-stax)
```
ç≈°▼╔╔²AGΓM4
```
[Run and debug it](https://staxlang.xyz/#p=87f7f81fc9c9fd4147e24d34&i=%22%7C++v++%7C%5Cn*+*+*+*%5Cn+*+*+*%22)
## Explanation
```
.\S'*YRQx2Dy#P
.\S push regex \S
'* push '*'
Y store star in Y
R perform regex replacement on the input
Q peek and print with newline
x push input again
2D execute the following twice:
y push '*'
# number of stars
P pop and print with newline
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 17 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
…
м©S'*:I'*¢®g)
```
Assumes the mentioned "[any-width] spaces" only include spaces, tabs, and newlines (with codepoints 32, 9, and 10 respectively).
[Try it online.](https://tio.run/##yy9OTMpM/f//UcMyLk6FC3sOrQxW17LyVNc6tOjQunTN//@VlJRqFBTKFBRquLQUwJALRHBqASUA)
**Explanation:**
```
…\n\t м # Remove all newlines, tabs, and spaces of the (implicit) input-string
© # Store this string in variable `®` (without popping)
S # Convert it to a list of characters
'*: '# Replace each non-whitespace character in the (implicit) input with a "*"
I # Push the input again
'*¢ '# Pop and count the amount of "*" in this string
® # Push the non-whitespace string from variable `®`
g # Pop and push its length
) # Wrap everything on the stack into a list
# (after which it is output implicitly as result)
```
[Answer]
# In JavaScript/CoffeeScript - 66 Characters
Like the PHP Example, the length is due to the length of the function names
```
[x.replace(/\S/g,"*"),x.split("*").length-1,x.match(/\S/g).length]
```
Example Usage (CoffeeScript):
```
((x="| v |\n* * * *\n * * *")->[x.replace(/\S/g,'*'),x.split('*').length-1,x.match(/\S/g).length])()
```
[Answer]
## C# - 116
Shortest way i can think of that returns an array..
```
object[]R(string a){var o=Regex.Replace(a,"\\S", "*");return new object[]{o,a.Count(x=>x=='*'),o.Count(x=>x=='*')};}
```
[Answer]
# Perl, 52 bytes
```
$_=join'',<>;printf'["%s",%s,%s]',$_,tr/*//,s/\S/*/g
```
Takes input from standard input, prints to standard output.
Assuming the output format like you described in your question, could be made quite a bit shorter if a different output format would be allowed.
[Answer]
# Javascript - 50 characters
```
i.replace(/\S/g,'*').replace(/\n/g,':').split(':')
```
## Test
### Input
```
var i = 'Lately I been, I been losing sleep\nDreaming about the things that we could be\nBut baby, I been, I been prayin\' hard';
i.replace(/\S/g,'*').replace(/\n/g,':').split(':')
```
### Output
```
["****** * ***** * **** ****** *****", "******** ***** *** ****** **** ** ***** **", "*** ***** * ***** * **** ******* ****"]
```
[Answer]
## AWK, (too long)
```
awk '{y+=gsub(/[^* ]/, "*"); x+=NF}NR>1{z=z "\n" $0} NR==1{z=z $0} END{print "[\x27"z (x-y) "," x "\x27]"}'
```
I'm no `awk` master so I'm sure it can be improved. The takeaway is I had fun writing it! The struggle came with how to preserve the `newlines` from the input but not put the `, 7,10]` on a new line. That bit of logic (`NR>1{z=z "\n" $0} NR==1{z=z $0}`) cost me a lot of characters. I'd be interested to see any other `awk` approaches on that front.
I didn't provide the file at the end of the script, but obviously the usage would be `awk '{<code>}' ascii.txt`, where `ascii.txt` contains the mult-line "input".
## Output
```
['* * *
* * * *
* * *',7,10]
```
[Answer]
## Java, 199 bytes
Golfed:
```
class C{public static void main(String[]a){String i=a[0],o=i.replaceAll("\\S","*");System.out.println("["+o+","+g(i)+","+g(o)+"]");}static int g(String x){return x.replaceAll("[^\\*]","").length();}}
```
Un-golfed:
```
public class CountingStars {
public static void main(String[] args) {
String input = args[0];
//replace all non-white-space char with *
String output = input.replaceAll("\\S", "*");
System.out.println("[" + output + "," + getStars(input) + "," + getStars(output) +"]");
}
static int getStars(String x) {
//replace all non-* characters with empty-string and return length
return x.replaceAll("[^\\*]", "").length();
}
}
```
[Run online](http://ideone.com/TNSHit).
[Answer]
# [Zsh](https://www.zsh.org/) `-F`, 44 bytes
```
T(){tr -dc *|wc -c}
T<f
tr<f -c '
' *>g
T<g
```
[Try it online!](https://tio.run/##qyrO@F@cWqKg68Zll/Y/REOzuqRIQTclWUGrpjxZQTe5livEJo2rpMgmDchRUOdSUFfQsksHCqb/B6IaBYUyBYUaLi0FMOSCUAA "Zsh – Try It Online")
Input from a file `f`, output to stdout and a file `g`
Ungolfed and commented:
```
T () { # define a function T
tr -dc * \ # keep only the asterisks in the input
| wc -c # count characters
}
T < f # apply T to the file f
tr \ # replace
-c \ # everything except
'\n ' \ # spaces or newlines
* \ # with asterisks
< f \ # input from the file f
> g # output to the file g
T < g # apply T to the file g
```
`-F` prevents the `*` from being interpreted specially
] |
[Question]
[
The challenge is rather simple:
1. Take a positive whole number \$n\$ as input.
2. Output the \$n\$th Fibonacci prime number, i.e. the \$n\$th Fibonacci number that is also prime.
Input can be as an parameter to a function (and the output will be the return value), or can be taken from the command line (and outputted there).
*Note: Using built in prime checking functions or Fibonacci series generators is not allowed.*
The first 10 Fibonacci primes are
```
[2, 3, 5, 13, 89, 233, 1597, 28657, 514229, 433494437]
```
Shortest code wins. Good luck!
[Answer]
# C, 66
`f(n,a,b){int i=2;while(a%i&&i++<a);return(n-=i==a)?f(n,b,a+b):a;}`
[Answer]
## C, 85, 81, 76
```
f(n){int i=1,j=0,k;for(;n;n-=k==i)for(j=i-j,i+=j,k=2;i%k&&k++<i;);return i;}
```
* borrowed code style of simplified prime number check from @Gautam
* self contained C function (no globals)
Testing:
```
main(int n,char**v){printf("%d\n",f(atoi(v[1])));}
./a.out 10
433494437
./a.out 4
13
```
[Answer]
# Ruby, 55
```
f=->n,a=1,b=2{n<1?a:f[n-(2..b).find{|f|b%f<1}/b,b,a+b]}
```
Calls itself recursively, keeping track of the last two numbers in the Fibonacci sequence in `a` and `b`, and how many primes it's seen so far with `n`. `n` gets decremented when the smallest factor greater than 1 of `b`, divided by `b` and rounded down to the nearest integer, is 1 rather than 0, which happens only for prime `b`. When it's seen all the primes it's supposed to, it prints `a`, which is the most recent `b` tested for primality.
[Answer]
# Mathematica, 59 or 63 bytes
```
(a=b=1;Do[While[{a,b}={b,a+b};Length@Divisors@b>2],{#}];b)&
(a=b=1;Do[While[{a,b}={b,a+b};b~Mod~Range@b~Count~0>2],{#}];b)&
```
These are unnamed functions which take `n` as their input and return the correct Fibonacci prime. The shorter version uses `Divisors`. I'm not entirely sure whether this is allowed, but the other Mathematica answer even uses `FactorInteger`.
The second one doesn't use any factorisation related functions at all, but instead counts the number of integers smaller than `n` which produce `0` in a modulo operation. Even this version beats all valid submissions, but I'm sure just posting this answer will cause some people to provide competitive answers in GolfScript, APL or J. ;)
[Answer]
# Mathematica 147 143 141 chars
```
f@0 = 0; f@1 = 1; f@n_ := f[n - 1] + f[n - 2]
q@1 = False; q@n_ := FactorInteger@n~MatchQ~{{_, 1}}
p = {}; k = 1; While[Length@p < n, If[q@f@k, p~AppendTo~f[k]]; k++];p[[-1]]
```
`f` is the recursive definition of Fibonacci number.
`q` detects primes.
`k` is a Fibonacci prime iff `q@f@k` is True.
For `n`=10, output is `433494437`.
[Answer]
# Ruby, ~~94 68~~ 67
```
n=->j{a=b=1
while j>0
a,b=b,a+b
(2...b).all?{|m|b%m>0}&&j-=1
end
b}
```
# Clojure, 112
Ungolfed:
```
(defn nk [n]
(nth
(filter
(fn[x] (every? #(> (rem x %) 0) (range 2 x))) ; checks if number is prime
((fn z[a b] (lazy-seq (cons a (z b (+ a b))))) 1 2)) ; Fib seq starting from [1, 2]
n)) ; get nth number
```
Golf: `(defn q[n](nth(filter(fn[x](every? #(>(rem x %)0)(range 2 x)))((fn z[a b](lazy-seq(cons a(z b(+ a b)))))2 3))n))`
[Answer]
# Haskell 108
```
p=2 : s [3,5..] where
s (p:xs) = p : s [x|x<-xs,rem x p /= 0]
f=0:1:(zipWith (+) f$tail f)
fp=intersect p f
```
To get `n`th number call it `fp !! n`.
EDIT:
Sic. Wrong answer, I fix it.
[Answer]
# [Husk](https://github.com/barbuz/Husk), 15 bytes
```
!fȯ=2LḊ¡oΣ↑_2ḋ3
```
[Try it online!](https://tio.run/##ASAA3/9odXNr//8hZsivPTJM4biKwqFvzqPihpFfMuG4izP//w "Husk – Try It Online")
[Answer]
## Groovy: 105 (134 with whitespaces)
`b` is the fibonacci function.
the closure inside the if is the prime check function. **Update: a small fix on it**
`r` is the prime fibonacci number.
```
r={ n->
c=k=0
while(1) {
b={a->a<2?a:b(a-1)+b(a-2)}
f=b k++
if({z->z<3?:(2..<z).every{z%it}}(f)&&c++==n)return f
}
}
```
Test cases:
```
assert r(0) == 0
assert r(1) == 1
assert r(2) == 1
assert r(3) == 2
assert r(4) == 3
assert r(5) == 5
assert r(6) == 13
assert r(7) == 89
assert r(8) == 233
assert r(9) == 1597
```
A readable version:
```
def fib(n) {
n < 2 ? n : fib(n-1) + fib(n-2)
}
def prime(n) {
n < 2 ?: (2..<n).every { n % it }
}
def primeFib(n) {
primes = inc = 0
while( 1 ) {
f = fib inc++
if (prime( f ) && primes++ == n) return f
}
}
```
[Answer]
# C, 105 (with spaces)
### fibonacci implementation using dynamic programming:
```
long f(int n){int i;long b2=0,b1=1,n;if(n)return 0;for(i=2;i<n;i++){n=b1+b2;b2=b1;b1=n;}return b1+b2;}
```
Readable code:
```
long f(int n)
{
int i;
long back2 = 0, back1 = 1;
long next;
if ( n == 0 ) return 0;
for ( i=2; i<n; i++ )
{
next = back1 + back2;
back2 = back1;
back1 = next;
}
return back1 + back2;
}
```
[Answer]
# [Pyth](http://pyth.herokuapp.com) - 29 bytes
Loops Fibonacci until array is length n but only adds to array if prime.
```
J2K1W<lYQAJK,+KJJI!tPK~Y]K;eY
```
Kind of slow, but reached n=10 in ~15 seconds. Can probably be golfed more.
```
J2 J=2
K1 K=1
W <lYQ While length of array<input
AJK,+KJJ J,K=K+J,J
I!tPK If K prime(not builtin prime function, uses prime factorization)
~Y]K append K to Y
; End loop so next is printed
eY last element of Y
```
Disclaimer: Pyth is newer than this challenge, so not competing.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 15 bytes
```
0+⁸¡1
ÇÆḍ=1µ#ṪÇ
```
[Try it online!](https://tio.run/##ASUA2v9qZWxsef//MCvigbjCoTEKw4fDhuG4jT0xwrUj4bmqw4f//zEw "Jelly – Try It Online")
The version that uses builtins is [8 bytes](https://tio.run/##y0rNyan8//9w28Md8x7umnRoq/LDnavAvP//DQ0A). This is a direct translation of that answer, but with the builtins replaced. This takes input
## How it works
```
0+⁸¡1 - Helper link. Takes k on the left
0 - Set 0 as the left argument
1 - Set 1 as the right argument
⁸¡ - Repeat k times, updating the left and right arguments each time:
+ - Add
This yields the kth Fibonacci number
ÇÆḍ=1µ#ṪÇ - Main link. Takes no input
µ#Ṫ - Read an integer n from STDIN and find the nth integer, k, in
i = 0, 1, 2, ... for which the following is True:
Ç - The ith Fibonacci number
Æḍ - Proper divisor count
=1 - Equals 1?
Ç - Yield the kth Fibonacci number
```
[Answer]
# [CJam](https://sourceforge.net/p/cjam), 31 bytes
```
1_qi{{_@+_:T,{)T\%!}%:+2>}g}*\;
```
[Try it online!](https://tio.run/##S85KzP3/3zC@MLO6Ot5BO94qRKdaMyRGVbFW1UrbyK42vVYrxvr/f0sA "CJam – Try It Online")
This is slow.
There is a builtin for primality checking. With that included, it runs much faster, and the size drops to [19 bytes](https://tio.run/##S85KzP3/3zC@MLO6Ot5BOz63QLE2vVYrxhooaAQA) (with the restriction that the supported maximum is 12, because CJam refuses to do a primality check on a BigInt).
] |
[Question]
[
It can be proven that there's exactly one string of infinite length that remain same after `base64` encoding [`Vm0wd2QyUXlVWGxWV0d4V1YwZ...`](https://tio.run/##Ncy/DsIgEMfx3ae4DUixafzTBVl8BUfjcFZoDppioLoYnx1tQ9fv537n8I2pi/SctmN4mJxtiMBJNwrotDu2CqqKxAZg6W7ubu1u7kX8LH4VL@CzGACChvPLWhP5laST/iZUIbLAsZ7CZYo09pzdMZn2wESdBuoMb@ReaI2iXAN0YUxhMPUQ@v9QAlaMlWffnH8)
Given a position, output the character on that position.
Your program would be run on AMD Ryzen 5 5500U@4GHz given 4GB memory and 1 minute (may decrease if RAM turns out to be hard limit). You can take input in any base, but not one number in two different bases. No multithread allowed. Largest handled range wins.
Test cases: (Position \$3^k+b\$, 0-base. Notice that \$3^0=1\$ so \$b\$ starts at -1)
```
\b - 111111111122222222223333333333444444444455555555556666666666777777777788888888889999999999
k\ 10123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
0 Vm0wd2QyUXlVWGxWV0d4V1YwZDRWMVl3WkRSV01WbDNXa1JTVjAxV2JETlhhMUpUVmpBeFYySkVUbGhoTVVwVVZtcEJlRll5U2tWV
1 0wd2QyUXlVWGxWV0d4V1YwZDRWMVl3WkRSV01WbDNXa1JTVjAxV2JETlhhMUpUVmpBeFYySkVUbGhoTVVwVVZtcEJlRll5U2tWVWJ
2 UXlVWGxWV0d4V1YwZDRWMVl3WkRSV01WbDNXa1JTVjAxV2JETlhhMUpUVmpBeFYySkVUbGhoTVVwVVZtcEJlRll5U2tWVWJHaG9UV
3 RWMVl3WkRSV01WbDNXa1JTVjAxV2JETlhhMUpUVmpBeFYySkVUbGhoTVVwVVZtcEJlRll5U2tWVWJHaG9UVlZ3VlZadGNFSmxSbGw
4 TVVwVVZtcEJlRll5U2tWVWJHaG9UVlZ3VlZadGNFSmxSbGw1VTJ0V1ZXSkhhRzlVVmxaM1ZsWmFkR05GU214U2JHdzFWVEowVjFaW
5 ZOcmFHaFNlbXhXVm0xNFlVMHhXbk5YYlVaclVqQTFSMVV5TVRSVk1rcElaSHBHVjFaRmIzZFdha1poVjBaT2NtRkhhRk5sYlhoWFZ
6 MUdVMkpWYkRaWGExcHJZVWRGZUdOSE9WZGhhMHBvVmtSS1QyUkdTbkpoUjJoVFlYcFdlbGRYZUc5aU1XUkhWMjVTVGxOSGFGQlZiV
7 djSE5WYlRGVFRWWlZlV042UmxoU2EzQmFWVmMxYjFZeFdYcGhTRXBWWVRKU1NGVnFSbUZYVm5CSVlVWk9WMVpHV2xkV2JHTjRUa2R
8 YUZwaE1YQXpWRlphY21ReFpIUmtSMmhPWVROQ1NWZFhkRk5VTVZsM1RWaEdWMkV6YUdGWlZFWjNWRVp3Umxkc1pHdFdNSEJJV1ZWa
9 V4V1JsWmhXVmROZUdFemNHaFNiVkpQVm14a00wMUdaRlZSYkdScVRWWnNOVlV5ZEd0aGJFNUdVMnhvVlZaV2NHaFdSVnBoWXpGa2R
10 aDNWbGQ0YjFFd05WZFhiazVXWVRBMWIxUldXbGRPUm1SeVZtMTBhRlpyTlVkWk1GcHpWMjFLV1ZSWWFGZFdWbkJZV2tWVmVGWXhVb
11 lhelF3Vm0xNFlWbFhUWGhqUldSVllYcFdUMVpzWXpWT1ZscHhVbTFHVjAxWGVGaFdSelZUVmpKS1NHRkdVbHBXUlZvelZsWmFZV1J
12 Y21GSGNHeGlSbkIyVm0weE1HTXdOWE5pUmxwWVlsUnNXVlZ0ZUhkbGJGbDVUbFYwVjJKVldubFdNalZMVm1zeFIyTkdRbHBsYTFwe
13 pGWVZXNXdXR0V4V25wV1Z6RkxVMGRHUjJKR1pHbFhSMmQ2VjFSS05GbFhUbGRUYmxKVFlsaFNWRlJXVm5kVFZscHlXa2h3VGxac2J
14 TldWa3AwVW14a1RsWnJjRmxXYWtsNFRVWlZkMDFXV2s5V1JWcFlWV3BPYjJOc2JGZFhiSEJzWWxWYVNGbHJXbXRoUjBWM1kwWnNWM
15 9WbXRzTkZrd1ZtRlpWa3AwVld4c1ZtRnJjSFphUjNoaFZsWkdkR1JHV2s1V01VcEpWMWQwYjFReFdYbFRibEpXWWtaYVYxbHNhRzl
16 VjBaV2RFMVVVbXhXYlhoWFZtMXpOVlpWTVhKalJXaGFUVWRvZGxadGMzaFhSMFpKVjJ4a1YxSlZXVEJYVkVvMFlUSlNXRk5yWkZka
17 tWYU1sZHNXbUZaVjA1WFVtNVNhMUpzY0U5V2JGSlhVMVphVlZOVVJsWk5hMVkwVlRKNFYxWXlTbFZpUmxwWFlsUkdkbFZyV2xabFY
18 RkdUbWxTYTNCVlZrWmFWMlF4V1hoWGJrcFlZbFZhV0ZsWWNFZFdNVkpYVm0xMFdGSXdjSHBWTWpWTFZtMUdjazVXVWxwaGExcDZXV
19 NXbFpYYUROV2FrcExVMFpXY2xwSFJsZGlTRUpaVjFod1MxSXhTWGxVYTJocFVtMW9WRlJYTVc5VU1WcHhVbXhPVTAxWGVGbFdWbWh
20 VmxaclRrWlZlVk5zYkdoU2VteFlXV3hvYjJOc1dsVlNhemxUVFZkU01WWkhlRzloVmxwWFkwaG9WMUp0VWpaVVZscExZekZhYzJGS
21 FFeFduUlRiR3hvVW0xb1dGVnVjRWRVUmxaMFRWVTVVMDFyY0VoWGEyUnZWRzFHTmxKVVFsZGlXR2hVVlhwR1NtVldVbGxoUmxacFl
22 Sm9XVlpyVmt0aFJteHhVbTEwYTFKck5YbFpWV1J2VlRKS1JtTkdiRmhXYlZGM1YxWmFZVkl4WkZsYVIwWlRZWHBXVlZaR1pIcE5Wa
23 JiRmROVm5CWVYxWmtSbVZHV2xsYVJUVlVVakpvVmxkV1pEQmtNV1JIWWtoT1ZtRXdOVkJWYlhoYVRXeFZlV042Vm1oaGVrWllWVEp
24 V1RCV2JYaGhZVEExU0ZWWWFGaFhSMmhWV1cxek1XTldWblJOVnpsWVZteHdNRlJXV2s5V1ZrcHpWMjVvVm1KVVJYZFdNRnBoWkZaR
25 xOV1dFSk1WbXBLTUZZeFduSk5WbVJZVjBkNFZWbHRkSGRXVm14VlZHdE9XRkpzU2xoWGExcExZVEF4V0ZWc2FGaGhNVnBvV1d0YVN
26 WlRZekpHU0dKR1pGZGlSM1F6Vm0weGQxTXlVWGhWV0doWVYwZFNUMVpzWkZOalZsWjBUVmM1V2xadVFsbGFSV1JIWVcxS1NWRnJhR
27 xSemxZWWtac05sWlhjRTlXVjBwWllVUk9WMkpZYUhKWk1qRlBVMGRXUjFwSGJGTlhSVVY0Vm0weGQxTnRWa1pPVldSWFYwZDRWVmx
28 VkZkSVFsaFpWRVpMVkVaVmVVMVdaRk5OYXpWSFZqSXhSMVV3TVhWaFJsWllWak5TYUZwRVJtRldNWEJIWVVkNFUyVnRlRmhXUm1SN
29 JSdlZHMUtSbU5IUmxkTlYxRjNXVlJCTVZOR1RsbGhSbVJwWWtWd1VGWnROWGRqTWs1SFZXeGtXR0V6VWxsVmJURTBWakZhZEdONlZ
30 SmpSWGhXWVd0YWNsa3hXa2RqTVZwMFlrWk9UbFpXYkRaV2FrWmhXVlpzVjFSdVVsWlhSM2hXV1ZSR2QySXhWblJsU0dSVlRWZDRNR
31 pWMnhvYVZkR1NsbFdiVEV3V1ZkV2MxcElTbUZTZW14V1dXeFdWMDVHYTNkV2JrNVhUVlp3UjFZeU5XRlpWa3BHVjIxb1lWSldjRkJ
32 WlVab1YwMVhhSHBaVkVaTFpFWldjMXBHVmxkaVJuQlpWa2QwWVZkdFZsaFdhMmhUWWtaYWNGVnROVU5PYkdSVlVXMDVVMDFXY0RCV
33 Fad1YySklRWGRXUmxwVFVUSkdSazFWVmxOaE1taGhXVlJHZDJOc1duUmxSM1JVVWpCYVNGbHJXbXRVYkVsNFVsaGtXRll6UWtoV2F
34 WlhhRVJXUmxwaFpFVXhWVkZzY0ZkaVdHaFpWbXBHYjJFeFVuTlhiR2hXWWtkb1dGUlZaRk5XUmxwRlVteHdhMDFXY0RGWGExcGhWV
35 9TRk5yWkZWaVIyaFVWbXhvUTFSV1duUk5XR1JUVFZaV05GVnNhRzlYUm1SSVpVWldWMDFIVVRCV2JGcHpWbFpPYzFSc1pGZGlSM2Q
36 Vm14V1lVVjBXbFpyY0ZoWk1GWTBWMjFXY21ORmFGWmhhMW96VlRCa1MxSXhWbk5VYkdSWFRURkdObFp0TUhkbFJUVkhZa1pvVTFkS
37 xkV1ZsWk9WbGw0VjJ0b2JGSnVRbGhXYWs1RFVrWndSVkp0ZEZkTmF6VklWako0YjJGWFJqWldiR3hZVmpOb1dGcEVSazlTTVZwWll
38 ZDBVMVF4V2xkWGJrNXFVakpvWVZacVRtOVZSbFY0VjJ0a2FrMXJXa2hXYlhocllrZEtSMkl6YkZkaVZFVjNWMVphYzFkR1ZuSlhhe
39 hSbGRUYmxKclRUTkNXRmxYZEhOT1JsSldWMnh3YTAxRVJsaFpWVnBoWVZkS2NsTnRhRmRTYkZweVZsZHplRkl4WkhWU2JGSm9UVEZ
40 VG05aFJsWnhVbTVrVTFac1ducFdWM014VmpBeFZtSjZTbGRoYTI5M1YxWmtTbVZXU2xsaFJsSllVakZLV2xkWGVGZFpWbVJIWWtoT
41 ZsaFIyaFVVakZLVmxaR1dtRlNNRFZIVmxoc2JGSXpVbGRVVjNSM1pXeFZlV1ZHVGxoaVZWWTFWbGQ0VTFZd01VZGpTSEJoVWxkU1Z
42 cHpWbXBTVmsxWGFIWldiR1JMWTJzMVdHRkdXazVTYkc5NlYxWldZVll5VG5OYVNFcHJVbTFTVDFadGRIZFhWbHB4VTFSR2FFMVdjR
43 tSMVpKV2tkd2FWSnNiM2RYYkZaclVqSkdjMU51VGxoaGEwcFdXV3RhWVZSR2JGVlJXR2hYVFdzMVNsa3dXbTloUlRGV1kwWldWMkp
44 TUZaSGRHRlpWa3B6WTBVNVdsWXpVbWhVVjNoaFpFVXhTV0ZHVWs1V1ZGWkpWbTB3TVZZeFpFaFRhMnhTWVhwc1lWbHNVa2RrYkZKM
45 FKNVZteFNWMkZHV25KalJFWldWak5DVkZacVNrdFdWa3BWVVd4d1YxSldjRmhYYTFKQ1pVWk9XRk5yYUdoU2F6VnpXV3hvYjFsV1d
46 ZE5WbkF3VlRKNGMxWnRSbkpPVmxwWFlrWndNMVJVUm1Ga1IxWkpXa1pTVjJKRmNEWldha3A2VFZkR1JrMUlaRlJXUlZwWVdXdGFTM
47 RWMFphY2xacmRHaFNiWFExVkZaYVMySkdTblJWYm5CWFlsaG9jbGxXV2twbFYwWkpXa1prYVZkSGFHOVdha3A2WlVaSmVHTkZaRmR
48 VmtWVmQxWnNVa2RYYlZaSFZXNU9ZVkp0YUhCWldIQlhZakZhV0dSSFJsUk5hMncwVmxkNGExZEhTa2hWYkVKV1lsaG9lbFJzV2xOa
49 VaYWNscEhSbE5XYmtKU1ZtMHdlRlV4WkZkaVJteHFVbTFTV1ZWdE1UUk5SbkJHVm1wQ1YxSXdjRWhaTUZKRFYyc3hSMWRZWkZkU1J
50 UldXazlYUmtwMFpVaHdWMkpVVm5KWmEyUkxVMGRTUlZSc1pFNWhhMFY0Vm1wQ2ExTXhTWGxUYTFaWVlrZFNXRlJVUWt0VlZscDBZM
51 9UMkZHU25WUmJrSldZV3R3ZGxSWGVHRmpiRnAwVW14b2FWWnJXVEJXTW5SdlV6SkdjMU5ZY0doU2JFcGhWakJvUTFkR1VuUmxSM1J
52 Um14VlRWWktVRll3V21Gak1VNXlZVVpvVjJKSVFtOVhWRXA2WlVaWmVHTkZhRk5pUlRWUFZGVldkMVpzV1hoWGJFNVNUV3hHTlZWd
53 xkRlNrbFdiR040WXpKR1YxTnVWbEppUmxwWVZGWmFkMVpHVmpaVGEzQnNVbTVDU0ZkcldtOWhWMFY2VVd4c1dGWnNTbEJXVkVwS1p
54 SkdTRTlXWkdsV1dFSlhWbTB3TVZNeFdYaFhhMXBxVWxkb1ZsbHNhRzloUm13MlUydDBWRkpyY0hwWGExcHJZVmRGZDJKNlJsZGhhM
55 llR3RXUjBWNVpVWm9XbFl6VWpKVVZWcHpZMVpPY21SR1RrNVdWRlkwVm1wSmVHTXhWWGxXYmxKc1VtMVNXRmxzVWtaTlJtUlhXa1p
56 U2tkVGJuQlhWbnBHZWxaVVFYaFdiVW8yVTJ4a2FWWkZTWHBYYkZaV1pVWkplRmRzYkdGU1ZGWllXV3hrYjFkR1pGaE5SRVpTVFZkU
57 1GWFIwNDJWbXhrVG1FelFrbFhWRUp2WXpGc1YxTnJXbGhpVjJoaFZGWmFkMVZHYTNoWGEyUnJVakJ3UjFSc1dtdGhSVEZZWkVST1Y
58 WnJUV3R3U1ZWc2FHOWhiRXAwWlVac1YwMUhhRVJWTUZwM1VsWktjbU5IZUZkaE0wSTFWakowWVZZeVJsZFhXSEJvVW01Q1dGWnFUa
59 dNR1JUV1Zad1dHUkZXbXhTYkhCNFZXMHhNR0Z0U2xaWGEyeGhVbFp3VkZaVVJtRlNNV1J4VTJ4a1RsWXhSak5XYlhCTFZXMVJkMDF
60 ZUZkV1JuTmFSbWhYVFRGS2IxWlljRXRVTVVsNFYyNVdWbUY2YkZoV2JGSlhWbXhrV0dSSGRGWk5iRnA2VmpJMVUxUnNXa1pUYkZwY
61 hSVFZteHdNRlZ0ZUd0V01rcHlVMnhhVjJKWVFreFVhMXB6VmpGT2RWTnJPVmRpU0VKWVYxZDBZVmxYVGtkWFdHUmhVbnBzY0ZSV1p
62 ZFVWM1IzVjBaVmVXTkdUbGROVm5CSFdXNXdRMVl5Um5KWGJVWmhWbFp3Y2xwR1dtRmpNVTUwWVVkc1ZGSlZjR2hXYlRCNFRVWlplR
63 pWbXBHZDFZeGNFZGFSbEpUVmtkNFdsZFdWbUZoTWtaWFZHdGFWR0pJUWxoVVZscExVa1prVjFkc2NHeFNia0pIVjJ0YWIyRkhTa2x
64 Vm10a05HVldXa2RYYlhSV1RXeGFXRlpYZUd0V01rcFZZa2M1Vm1KWVRYaFZNbmhYVjBkV1NFOVdaRmRpUnpoNVZtMHhORkV4V2xoU
65 dwR2EyTXlSa2RqUm1ST1RXMW9kbFp0Y0VOWlZsVjRXa1ZhVDFadFVsWlpiR1J2Vmtac2NtRkZUbE5OVm5CV1ZUSndRMkZGTVZkalJ
66 TkdiSEpYYm1SWFRWWndNVlZYZUVkWFJscHpWMjVLVjJGcmNFOWFWVnAzVTFaT2RHUkdUbWxXYTNBelZtMXdRMkV5U1hsV2JHUllZV
67 NTMVpXV205aE1WbDVVMnRvVlZkSGFGbFdiWGgzWTJ4cmVXTXphRmhXYkhBd1dWVmFVMVpHU2xaalJuQlhZVEZ3V0ZsVVJsWmxSbkJ
68 VkZWM1YydFdWazFXVlhoVGJHUnFVbTVDV0ZsWGRIWmtNV3hWVW10d2JGSnNjRnBaYTFwVFlWWkplV0ZJV2xkV1JVcHlWbFJHYTFZe
69 ZSc1pFNWhNMEpYVm0weE1GVXhXWGxTYmtwWVlsVmFhRlp0ZUZabFJsbDNXa1pPVkZJd1draFhhMlJ2VkdzeFJtRXpiRmRoYTFwVVZ
70 eG9WbUp1UWtkVVZWcHJWakZ3Ums5V1pFNVdhM0EyVm0weE5GUXlSbGRUYmxaU1lrVktXVlp0ZUV0VlJsWlZVbXM1VjAxWFVucFdiW
71 dOREJXUmxaaFUyMVJkMDFWYkdoU2JXaHdXVlJPUTFkc1pGaGxSbVJhVm14c05GWlhlR3RYUjBwSVZXeENWMkpZYUdoVVZWcDNWbXh
72 VmxoU01taFlWMWN4TUdReFZrZFhibEpPVm1zMWNWVnRlR0ZOUmxKWFZXdE9WV0Y2UmxoWk1GSkRXVlphVjJOR1FsZFdSVVkwV1RJe
73 5KV1ZFRjRWMGRTUlZSc2NGZFdNVXBKVm0xd1FtVkhUbk5YYmtaV1lraENUMVZxUmt0VFZsbDRWMjFHVkUxVmNIcFhhMmhIVmxkS1I
74 aGhXVlJHWVUweFVuTlhiWFJZVWpGS1NWcEZaSGRVYkZwelYxUkdWMVpGYnpCWlZFWmhVMFpPY2xkc1VtbFNNMmhaVjFjd01WRXhTW
75 lSbkJYV2xWYVlXTXlUa1phUjBaVFlsWktVRlpVUWxkVE1VNVhWMWhvVm1Fd05WaFVWM1JYVGtaWmVVNVZkRlZpUm5Bd1ZsZDRWMWR
76 ZUZSc1pGZGliRXBRVm14b1UxWnNVbGRYYms1T1RWWnNOVnBWWkVkV01ERnlZMFZvV2sxR1NsQldiRnBoVW14a2RXTkdaR2xYUjJoN
77 xaMFRsVk9WMDFXY0ZaVk1uQkRWR3hLYzJKRVRsVldiSEJvVmtSR1lWSnNaSE5oUmxaWFpXeGFNbGRyWkRSWlYwNVhWRzVLYTFKck5
78 ZGtNVXBYVW01T2FsSnRVazlWYlRWRFUyeGFkR1ZIY0U1V2JGWTFWVEowYTFaSFNraGxSbVJhWVRKU2RsWXdXbk5qTWtaSFZHMW9VM
79 9VbnBzV1ZWcVFuZGxWbGw1WlVoT1dHSlZWalJXYkdodlYyc3hSMk5HYUZwbGExcFlXWHBHZDFOSFZrZGFSMnhVVWxWd2FGWnRkR0Z
80 VmtkS1NHRkdhRmRoYXpWMlZsVmFZV05XU25Ka1JtUlhZVE5CZUZkWGRHRldNVmw1VTJ0YWFsSnNXbGhaYkdoRFZFWldObEp0UmxkT
81 xob2FGWkhlR0ZrVmtaelkwWmtWMDB5YURKWFdIQkxVekZKZUZWdVNsaGlSMmh3VldwR1MyRkdaRmhrUjBaVVRWVTFTRll5TlV0WFI
82 TnNWbE5XUlVwWVZGVmFkMVpHV1hkYVJUbFRZa1UxZVZSc1dtdGhWbVJJWVVac1YySllRa3RhVlZwS1pWWktkVlZzVW1sU2JrSlJWb
83 9WRkpzV25oV01uaFBZVlpKZUZOc2JGZFNiRXBNV1dwQmVHTXhjRWRoUjNCVFZqRktkbFpHV2xaTlZrNUhWMnRvVDFaVWJHOVZiWFJ
84 YlhoTFpXeFplV042Vm1oU2JIQXdWbGQwYzFkc1dsZGpTRnBYWVd0d1RGVnFSazlqYlZaSVVteGtUazFFVVhkV2JYQkRXVlpSZVZSd
85 ZOSFZraFBWbkJYWWtkM01GWnFTVEZVTWtaelUxaHNhRkl5YUZkWmEyUlRWa1paZDFkc1dtdE5XRUpJVmtkNFQxUnNXWGhUYWxaWFV
86 QldOVlZ0ZUd0V1JtUklZVVpXV21KVVJsUldNRnB6WXpKR1JsUnNWbE5pV0dnMFZsY3hOR0V5Um5KTlZtaFdZV3RhV0ZadWNFWk5Sb
87 VaRmhTYlhoWldrVmtSMVpXU25OWGFrSlZWbXhWTVZaVVNrdFdiR1J5WWtaYWFWZEhhRkZXYlhCTFV6Sk9jMVJ1VGxSaVIxSlBWbTE
88 VW5CV01GWkxWVlphYzFWcmRGTk5WV3cwV1RCV2ExbFdTblJoU0VKWFlrWndNMXBWV21GU01XUjBaRVphVGxKRldsbFdiVEF4VlRKS
89 xaaGExcFBXbFphVjJOc2NFZGFSMnhUVFRKb00xWnNZM2hPUm14WVUxaG9WbUpIYUU5V2JuQnpWakZzY2xkdVpFNVNiRXBYV1ZWak5
90 SlhaREZrUjFkdVNsZGlWVnB4Vm0weE5HVldXWGxPVjNSVllrVndNVlZYZUd0WFIwVjRWMjVLV2xac2NFdGFSRXBQVW0xR1IyTkZOV
91 dia3BvVW0xU2NGWnJXbUZXVmxwelZtMUdXbFl3TVRWV1IzUnpWVzFLU0ZWck9WWmhhMXBNVkZaYWEyTXhjRVZWYkhCWFlUSjNNRlp
92 VmsxcmNGcFpWVnB2VmpKR2NtRXphRnBXUlhCSVZXcEdUMk14V25OVWJXeFVVbFZ3V1ZadE1IZGxSMGwzVFVob1dHSnJXbFJaVkU1V
93 ZwM1kyeGFjMWRyWkdwTlYxSXdXbFZhVDJGV1NYcFpNMmhYWWtkUk1GbHFTa3BsUm1SeVlVWk9XRk5GU25aV1Z6QjRZakZaZUdKSVV
94 VlNiRkpvWVRCd2RsWkdaSHBsUlRWWFZtNVNiRkl6VWxoVmFrSjNVMVp3Vmxkck9WaGlWVlkwVmpKd1QxWXdNVWRqU0hCYVpXdGFXR
95 JVbXhvVjFKdGFIWlhWbHBQVW1zMVYySkdjR2hOYkVwVlZtcENZV014WkVoV2ExcHJVbTVDV0ZsdGRFdFhiR1J5Vm0xMFUwMVdjSHB
96 VDFkd1RsWnNiM2RXUmxwcVRsWmtSMWR1VG1wU1JVcG9WbXhhV21ReFduSlhhM1JyVm10YWVWWXllR0ZVYlVwelUyNXNWMkpHU2tOY
97 d4b1YySlVWa1JhVmxwaFkyeHdTV05IZUZOaVNFRjNWbXRrTUdNeFpFaFRhMmhXWW10S1YxbFhkSGRrVm5CWVpVZEdXRll3TlVkWGE
98 SldjR2hYYkZaaFZESk9jMXBJVW1wU2F6VlpWVzEwZDJSc1duUk5TR2hQVWpGR05GWXlkR3RoYkVwWVZXeHNXbUV4VlhoWk1uaFhZM
99 tTVlJzV21oTlJGWlJWbGN4TkdReFduTldXR3hyVWpOU1YxUlZVa2RYUm10M1ZXdGtWMkpWY0ZwWlZWcHZWMnhhVjFacVVsWmlSbkJ
```
| User | Language | Tested N | Time | Output |
| --- | --- | --- | --- | --- |
| [Anders Kaseorg](https://codegolf.stackexchange.com/users/39242/anders-kaseorg) | Rust | \$\frac{10^{23500000}-1}9\$ | 59.471s | `x` |
| [Neil](https://codegolf.stackexchange.com/users/17602/neil) | [JavaScript (Node.js)](https://nodejs.org/) | \$\frac{10^{90000}-1}9\$ | 56.409s | `x` |
[Answer]
# Rust, \$3^{38\,000\,000}\$ in ~1 minute
### How it works
Given position \$n\$, we convert \$3n\$ into a base-\$\frac43\$ representation with digits \$0, 1, 2, 3\$ using a relatively fast divide-and-conquer algorithm. Iterating through these base-\$\frac43\$ digits from most to least significant gives the shifts needed to maintain a three-character sliding window of the Base64 fixed point.
For example, given position \$27\$, we compute
$$3 · 27 = (3210201101)\_{\frac43},$$
so we can jump the sliding window to the following positions (in units of \$\frac13\$ of a 6-bit character).
$$0 · \frac43 + 3 = 3, \quad
3 · \frac43 + 2 = 6, \quad
6 · \frac43 + 1 = 9, \quad
9 · \frac43 + 0 = 12, \\
12 · \frac43 + 2 = 18, \quad
18 · \frac43 + 0 = 24, \quad
24 · \frac43 + 1 = 33, \quad
33 · \frac43 + 1 = 45, \\
45 · \frac43 + 0 = 60, \quad
60 · \frac43 + 1 = 81.$$
### Usage
Accepts a base-ten integer on STDIN, and outputs a character to STDOUT.
```
$ cargo build --release
$ python3 -c 'import gmpy2; print(gmpy2.mpz(3) ** 38000000)' > /tmp/in
$ time target/release/base64 < /tmp/in
1
real 1m0.092s
user 1m0.023s
sys 0m0.068s
```
### Code
**`Cargo.toml`**
```
[package]
name = "base64"
version = "0.1.0"
edition = "2021"
[dependencies]
rug = "1.19.0"
```
**`src/main.rs`**
```
use rug::Integer;
use std::io::BufRead;
const ALPHABET: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
fn encode_low(n: Integer, k: u32) -> (Integer, Integer, Integer) {
if k == 1 {
let t = n * 3;
let l = Integer::from(&t & 3);
(3.into(), t >> 2, l)
} else {
let k0 = k / 2;
let (p0, h0, l0) = encode_low(&n & !((!Integer::ZERO) << (k0 * 2)), k0);
let k1 = k - k0;
let (p1, h1, l1) = encode_low((n >> (k0 * 2)) * &p0 + h0, k1);
(p1 * p0, h1, l1 << (k0 * 2) | l0)
}
}
fn encode(n: Integer) -> Integer {
if n == 0 {
Integer::ZERO
} else {
let k = (n.significant_bits() + 1) / 2;
let (_, h, l) = encode_low(n, k);
encode(h) << (k * 2) | l
}
}
fn char_at(n: Integer) -> char {
let e = encode(n);
let mut a: u32 = 0x566d30;
for i in (0..e.significant_bits()).step_by(2).rev() {
let k = 6 - e.get_bit(i + 1) as u32 * 4 - e.get_bit(i) as u32 * 2;
a = (ALPHABET[((a >> (k + 12)) & 0x3f) as usize] as u32) << 16
| (ALPHABET[((a >> (k + 6)) & 0x3f) as usize] as u32) << 8
| (ALPHABET[((a >> k) & 0x3f) as usize] as u32);
}
char::from((a >> 16) as u8)
}
fn main() {
for line in std::io::stdin().lock().lines() {
let n: Integer = line.unwrap().parse().unwrap();
println!("{}", char_at(n));
}
}
```
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 218 bytes
```
var btoa = s => Buffer.from(s).toString('base64');
var fp = (n, m = n + 1n) => m > 9n ? btoa(fp(n / 4n * 3n, (m + 3n) / 4n * 3n)).slice(Number(n % 4n), Number(n % 4n + m - n)) : "Vm0wd2QyU".slice(Number(n), Number(m));
```
[Try it online!](https://tio.run/##bZDbTsJAEIbvfYpJE0OXQ20pMUEEEy/ANAEjtLvQux6hsIemLSC@PE5JlGC8mp3d/9v9drbBISijIsurjlRxcj4fggLCSgUwhBKGI3jdp2lSGGmhhF4So1KLqsjkWm@EQZk89hpkcFcjaY6ALtsgsEpogSVJjQsYQV/Cy@VOPc11CQ/Qk9AEG8O6wKSNyd89QoySZ1Giz/YiTAqM3@MRacNNj5SADmAankCjwjzG3Y@Tp/1hr5ggZHCOlCwVTwyu1rWJjS82oY92HbRtw7VHe9Os/YegVS7lzhftWsrlzoRxh4WTWc/dxfNkHO9dHi/n9uZEWf7uWatPj/s06M5XnrDMqeUv40nFprucrUz/yLjPojefTeVmQ7fjIKK0ZIIvwp2j4RRTVYDOkwoynKApB1ifLx64arUI/Guf3bhnP@b42W8 "JavaScript (Node.js) – Try It Online") Link includes test cases. Using Node because it has a reasonably convenient `btoa` builtin, so it won't win any speed records but at least it scores reasonably well in time complexity.
Since the above code is recursive and stack space is expensive, here's an iterative version, although this only returns one character at a time so there's only one test case: [Try it online!](https://tio.run/##RY7BasMwDIbPyVOIQqld1ixby2CU9tAHGIyxXcoOTmon2RLZWHbLGH32TF4L1U36pU/flzoqqn3nwgLtQY/jUXmoglWwAYLNFnbRGO0L4@0gSBbBvgXfYSNmlSL9tJrJdW4i1qGzCMYJlPCbZxRU/c2E/ec6z05t12u4JpeocJFa8RKHSnuBMIUVSgZlGfIRwj33MIcl8ujMNB5OPobydHh8/Xmf3JAXVq@xCa1Muv/mSZNiRcFfF5x1Qt7Bc/rgdYgegfYlq53z2iLZXhe9bQTbL/ntHB7KVMloHP8A "JavaScript (Node.js) – Try It Online")
```
var btoa = s => Buffer.from(s).toString('base64');
function fp(n) {
stack = [];
while (n) {
stack.push(Number(n % 4n));
n = n / 4n * 3n;
}
s = "Vm0wd2QyU";
while (stack.length) s = btoa(s).substr(stack.pop(), 9);
return s[0];
}
console.log(fp(3n ** 100000n));
```
] |
[Question]
[
*Alternatively: Now you're checking with portals!*
*[Inspired this challenge](https://codegolf.stackexchange.com/questions/256814/knight-to-fork)*
I am somewhat of a self-declared [Chess Anarchist](https://www.reddit.com/r/AnarchyChess/). That means that when I play chess, en passant is forced (else the brick gets used), double check is mate (and [pasta](https://www.reddit.com/r/AnarchyChess/comments/ylrn7m/new_chess_rule_just_dropped/)), and all sorts of new pieces and squares are added to the game.
One such piece is the [Knook](https://www.reddit.com/r/AnarchyChess/comments/xv6q0s/white_to_move_and_mate_in_1/) (also called an "Empress" or "Chancellor" in fairy chess). It moves like a horsey and a rook combined. Another common addition are portals, like the kinds you see in the [Portal](https://store.steampowered.com/app/400/Portal/) series. They behave as you would expect.
Therefore, in this challenge, I'll be give you the position of a white knook, two black kings and an orange and blue portal. You'll give me the square I should move my knook to in order to check both the kings at once and win the game.
## Detailed Explanation of Knooks and Portals
### The Knook
Here is how a knight moves in chess:
[](https://i.stack.imgur.com/Pfd5c.png)
Here is how a rook moves in chess:
[](https://i.stack.imgur.com/gwEOX.png)
Therefore, this is how a knook (knight + rook) moves in chess:
[](https://i.stack.imgur.com/96LE0.png)
In BCPS notation, it's move is `EM`. In Parlett notation, it's move is `n+, ~ 1/2`. In Betza notation, it's move is `RN`.
### Portals
From the [Portal Wiki](https://theportalwiki.com/wiki/Portals):
>
> Portals in a pair act as a direct link between one another. Anything that goes into one portal comes instantly out the other.
>
>
>
Therefore, when a piece moves into a portal, it comes out the other portal. Portals occupy a single square. There are only ever two portals on a board - one orange and one blue. Pieces cannot land on a portal, as they'd just infinitely teleport between the orange and blue portals. Pieces can also attack through portals (so a piece in a position where another piece could exit a portal would be able to be taken.)
Here's are some examples of how a rook would move through a portal. Note that it always exits the other portal in the direction it entered the first portal. Note that the rook also cannot "jump" over the portal - it has to go through if there is a portal in its way.
| | |
| --- | --- |
Here's how a knight would move through portals. Note that it can either move two squares into a portal and exit one square in a perpendicular direction, or one square into a portal and exit two squares in a perpendicular direction.
| | |
| --- | --- |
Therefore, this is how a knook would move through a portal, obeying laws of both the rook and knight portal movement rules:
| | |
| --- | --- |
## An Example
On the following board, the knook is on square `b2`, the black kings are on `d7` and `f6` and the portals are on squares `b5` and `d2`. The winning move is to move the knook through the blue portal to d5, which checks the king on `d7` via rook moves and the king on `f6` via knight moves.

On the following board, the knook is on square `c5`, the black kings are on `g3` and `h4` and the portals are on squares `f7` and `g4`. The winning move is to move the knook to `d7`, as the knook threatens to take the king on `h4` with rook moves after portal travel and threatens to take the king on `g3` with knight moves after portal travel.

On the following board, the knook is on square `f4`. The black kings are on `b8` and `d3`. The portals are on squares `f6` and `a4`. The winning move is to move the knook through the portal on `d6` and exit the portal on `a4` via a knight move (up 2, right 1). This checks both kings.

## Rules
* The positions will be given in algebraic chess notation (letter then number of the square).
* The winning move will be returned in algebraic chess notation.
* Positions can be given and returned in any reasonable and convienient format, including:
+ A list of strings (e.g. `["f4", "b8", "d3", "f6", "a4"]`)
+ A list of list of strings (e.g. `[["f", "4"], ["b", "8"], ["d", "3"], ["f", "6"], ["a", "4"]]`)
+ A list of list of numbers that represent the character codes of each string item (e.g. `[[102, 52], [98, 56], [100, 51], [102, 54], [97, 52]]`)
+ A list of string, number pairs (e.g. `[["f", 4], ["b", 8], ["d", 3], ["f", 6], ["a", 4]]`)
* Input formats and output formats don't have to match, so long as they are consistent.
* Piece positions can be taken in any order (e.g. `[portal 1, portal 2, knook, king 1, king 2]` or `[knook, king 1, king 2, portal 1, portal 2]`)
* This doesn't change much, but you can assume that the black kings will [never be on the `c2` square](https://www.reddit.com/r/chessbeginners/comments/y57x1y/i_cant_move_king_to_c2_why/).
* You may assume that there will always be at least one solution to each input.
* The board layout may start with 0 or 1 king(s) already in check. Your goal is to double check.
* Double check is strictly defined as checking both kings for this challenge. A knook checking a king through a portal and starting in check is counted as a single check only for simplicity.
* It doesn't matter if a king can capture the knook if double check is achieved. All that matters is that both kings are in check at the same time.
* If there is more than one solution, you can output one, or all of the solutions.
* Portal travel might not be required for a winning move. Double check via normal knook movement is just as valid as portal usage.
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest answer in bytes in each language wins.
## Testcases
*Input order is `[knook, king 1, king 2, portal 1, portal 2]`*
```
Positions -> Winning Square
["b2", "d7", "f6", "b5", "d2"] -> "d5"
["c5", "g3", "h4", "f7", "g4"] -> "d7"
["f4", "b8", "d3", "f6", "a4"] -> "a4"
["h1", "a1", "a3", "c1", "f1"] -> "b1"
["c2", "a8", "h8", "d2", "d6"] -> "d8"
["d2", "c6", "g2", "b2", "g7"] -> "g6"
["d3", "f6", "h6", "d4", "e4"] -> "g4"
["c4", "f7", "h5", "a2", "f5"] -> "b2" // Attacks through the portal
["h5", "a7", "e2", "a4", "g6"] -> "g3" // Attacks a7 through the portal and e2 normally.
["h6", "d4", "g3", "a1", "a8"] -> "f5" // No portal travel needed
```
[Answer]
# Python3, 970 bytes:
```
M=[((1,0),1,3),((0,1),0,2),((-1,0),1,3),((0,-1),0,2)]
def A(c):
q=[(c[0],i,1,[c[0]])for i,*_ in M]+[(c[0],[(i,2),(M[j][0],1)],0,[c[0]])for i,*J in M for j in J]+[(c[0],[(i,1),(M[j][0],2)],0,[c[0]])for i,*J in M for j in J]
while q:
(x,y),m,o,P=q.pop(0)
if o:
X,Y=m
if 0<=x+X<8 and 0<=y+Y<8:
if(T:=(x+X,y+Y))in P:continue
if T in c[1:3]:yield(1,T)
elif T in c[-2:]:q+=[([*{*c[-2:]}-{T}][0],m,o,P+[T])]
else:yield(0,T);q+=[(T,m,o,P+[T])]
else:
[(X,Y),C],*I=m
if 0<=x+X<8 and 0<=y+Y<8:
if(T:=(x+X,y+Y))in P:continue
if C-1==0 and[]==I:yield(T in c[1:3],T)
else:
if T in c[-2:]and C-1:continue
q+=[([T,[*{*c[-2:]}-{T}][0]][T in c[-2:]],[[[(X,Y),C-1]]+I,I][C-1==0],0,P+[T])]
def f(d):
S,*c=[(8-int(b),ord(a)-97)for a,b in d]
q,s=[S],[S]
while q:
S=q.pop(0)
for x,y in A([S]+c):
q+=[y]
if x==0:
k=[[],[]]
for X,Y in A([y]+c):k[X]+=[Y]
if{*k[1]}=={*([1]+c)[1:3]}:return chr(97+y[1])+str(8-y[0])
```
[Try it online!](https://tio.run/##rVNNb@JADL3zK0acZpLJKoG2pFnmUPVEJaRK5NBqNFpBPkgKJRColgjx21nbSUWI9rCHvYwc@z3b72G21SErNkN/W14uU6U596QrpCeHQnLuSk9IVw4wdm4LTlMxvThJ2ROPRNBjO2gQadfIHIAaIyPSomS5tH6xfMOmxm4AmufUdqo/DH57wkC7W8oLURh@fWD4csP2WuzBP7F77HeWrxO2g00ZP8pKyE9ZyFe1@7EtttwVkM5TVmCZvcl39YkBZNyxOtpvY5/NNzF@VPb72CcUVHkYKA5lCVkhYNBrEBWbQ775ShoEC3F@pL1gaIIqT9YxmBwKqibra90ZBCbY2eChtk5W/X12TuGZNNKqtg4NWF4z90nTzYVuP4kYdmAEQrjmIEjIZyOtyX/T9ex4SrnI1kapSbNNS@1VZbNG2w6Uh4Ohy21nVnsQyr/YYHSLDYegv4U5njH2RE6MrrfCg/j2AS805TFe6ExaETT3nXxz4AshizLmc@E8juhs5nKB3WOwbif3Ss9gwuz2bmbta0EO3BFynjggbfoX1AIq07h8hG1q8SulNXQ09Q@IZNi9IVdEXuk3A9x301h8slbaM2elThaHACDk6zkok8NXCT5kJX8c2RXUhL0/lCCsApfEZVuiwJTr/mLQl6wfj/BNH/Bd3FNm0DdC9K7AiNLLIb7ZHcGJtLzrAFMqLnzqMrz2nXeBmUfp@iVgRHHqdUfTjnPqmPnNdvg@dIB1OqJxS4prectRF9jaK6M3pq2T7o5RS2lGDsypY3rfFVMXCZgMGr04urtje1ztZuOAj8DLHw)
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 367 bytes
```
(R,J,K,$,_)=>(
U=p=>parseInt(p,36), // internal type
P=U($),Q=U(_), // Portal
g=n=>( // p^P^Q switch P and Q
M=(p,a,b)=>a?M((p+=a)-P&&p-Q?p:p^P^Q,b):p==n,
// Two movements for knight
h=(p,x)=>
[1,2,-1,-2].some((i,_,o)=>o.some(j=>
i*i-j*j&&M(U(p),i*36,j)|M(U(p),j,i*36)
))| // X then Y; Y then X
(e=(w,i=24,q=U(p))=>q-U(x)?
// Maximum 13 moves + w%36 range 8
(q+=w)-P&&q-Q?
w%36<i&&q==n|e(w,i-1,q)
:
e(w,i,q^P^Q) // Not counting teleport don't hurt
)(36)|e(-36)|e(1)|e(-1):0
)(R)&h(J,K)&h(K,J)&~-n%36<8&
!~[J,K,$,_].indexOf(N=n.toString(36))?N:g(-~n)
)(360)
```
[Try it online!](https://tio.run/##bVFdb9pAEHzvr6AotXbJGrAhBLk9kKpWVRJBIRVPUYKM8cdZ6dkGGnhA/HV6t7ZU1Phlb@9mZnd2L/Xf/G2wkfnOVtk6PH/7/nXxQ3QpEmd4pHt6oCtaohjBQuRilPubbXindpBTb4A0Ewu4QprrY4kUC6V5E6FBn1Za448nAPm18NGeWVZuz8e5l7/MXuYa9XIhFCWGfNDUJ4dcsh2y3ef2NvsdAkhaUqaRrLynYiRb0k5bqWVNYAE5kmz1BpTisbqm/ICIRwgF7EkKt0@FMJguU9gLOOAYimuxZzuFtrP/1Bt8kTrXXo6h0WgLBXqcUmGsotdF0GU1bJeHw7mDCI9ofTw9VTt6bku1Dg8/I5gK1d5lv3YbqWIjRSsBTTLHA92jdbKV6TscT70Y7JNC06CL588fgkxts9ew/ZrFEEFz5Tap0VzfmhgNTFzd8IvbRHzHDhiLeyYmfdawMu7XsSNmrIZcr/evg1/LThzGysjsgPPIqXXCvn2unQwrxyYO6tglFnD3mPNy7vi2ln3hNeG45knC0nen87@Xi00kvCGfq0c3ht/odBrTrKEFf3YyU@/GLgUsDt1qPcZa7SCXdspvqBY2NOzzXw "JavaScript (Node.js) – Try It Online")
[Modified](https://tio.run/##bVFdb9pAEHzvr2hRau2StYVt4iCnB1LVqGoiCKTiCRFkjD@Vnm1AhQfEX6d3a6RYlV92925md@fm8uBvsAu3Wbk3ZbGJLj8ev89/ih7FsbjAKz3RM93QCsUQ5qIUwzLY7qJfcg8luR7SVMzhBmmm0gopEVIM5dD1uvZgtFj6MBaKF9BatQejMUB5KwI0p4ZRmrNR6Zdv07eZQv1SCEmpJh8VdWGTQ6ZNprO0dsWfCCCjFRUKKepzLoZZNzPzbm4YY5hDiZR1XY9yPF2POV8g4gkiAQfKhNOnSmhMjanMORxxBNWtOLCcSsk5fHW9b5mqlZZTpHuUhAp9LqnSUtHvIaixCjbrZHNtI8IrGl/Oi6tdSyuTm@j4EsNESGtf/N5vM5noVjRSUCSdnukJjbMp9V5l14Qsy0rAPEtc@nXWy3p4eYgFKExbExZyV7xH1nuRJHBUn1QD@KkJiMahCYhsNwkmzRuIobN2OvS5s7nXMfZ0XN/xjdNBfPifHTKWuDqmfe7hzqTfxo6ZsR7wPPdjQ9DKTm3G6sjskOvYblXCugOenQ6uinX02tg1FvL2hOv63cl9K7uhNeW44ZdErbrDhg8p@xPw7Piu9ZU1g9mRc3VDK2nV3dxeu371Z6DZl38) to list all possible outputs
```
[ 'b2', 'd7', 'f6', 'b5', 'd2' ] [ 'b6', 'd5', 'd6' ]
[ 'c5', 'g3', 'h4', 'f7', 'g4' ] [ 'd7', 'f5', 'h5' ]
[ 'f4', 'b8', 'd3', 'f6', 'a4' ] [ 'b4' ]
[ 'h1', 'a1', 'a3', 'c1', 'f1' ] [ 'b1', 'c2' ]
[ 'c2', 'a8', 'h8', 'd2', 'd6' ] [ 'c8', 'd8' ]
[ 'd2', 'c6', 'g2', 'b2', 'g7' ] [ 'a7', 'c2', 'c7', 'e7', 'g6' ]
[ 'd3', 'f6', 'h6', 'd4', 'e4' ] [ 'g4' ]
[ 'c4', 'f7', 'h5', 'a2', 'f5' ] []
[ 'h5', 'a7', 'e2', 'a4', 'g6' ] [ 'g3' ]
[ 'h6', 'd4', 'g3', 'a1', 'a8' ] [ 'f5', 'g4' ]
```
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), ~~194~~ 163 bytes
```
UMθ⍘ι⁴⁰≔E²⊟θδF⁸FE⁸⁺κ⁺⁴⁰¹×⁴⁰ι¿¬№⁺θδκ«≔⟦⟧ηFθ«≔⊙⊞OΦ⟦δ⮌δ⟧⬤⟦κλ⟧№⟦¹¦²¦⁴⁰¦⁸⁰⟧↔⁻ξ§μπυ№⟦³⁸¦⁴²¦⁷⁹¦⁸¹⟧↔⁻⁻λκ↨μ±¹ζF⟦¹¦⁴⁰±¹±⁴⁰⟧«≔κεF¹⁵«≧⁺με≧⁺⁼λεζ¿№δε≦⁻Σδε¿‹⁰⌕θε≔⁰μ»»⊞ηζ»¿⌊η⟦⍘κ⁴⁰
```
[Try it online!](https://tio.run/##bVJNa@MwED07v2LIaQQqJK27m7KnbGmh0I/Q9mZ8cOtJLCLbsWWXtkt/u3dGcszC1mBJaN68eU8zr0XWvtaZHYa77HBZl2VW5dho@J05eupaU@3QaIgXSv2arZ0zuwoZiKcaNvUBG6U05Bza1i3gSoHfBbBigO0d7sc9Xiw1PJuS5KjBKPnAbAHv6w4v677q0AMbIdSwl/CfWTTWTFINBdeJfIHGh46xdfWBm94VDwdqs65u8drYjlpMcg2P9EatI8wVE6ytxYQFWT6HigmLOhV7GlYLQby42vYd4Z2pWMs733Q3VU7vWGo4eM2srVdT/hn7jJnh5wUzLP9nCKsVP@FNheiedhkjlke@TzEWnIkgUTNBpiO3IA22j77ZCfnMkLo8H8MRv3@APJpdEZ5VQzmhv49fNX1mvVSaJEWRNChYzSWgYMq9pW0X7Gl46kuUph0LkHXke3tLziHbuTZhqki6Osrn6zLgv2bhlyZiMRbnC2HgCqZk@oITNzyO/Ob/jObej2bK@K9hSJJ5fjbXMN/@kLXwax7LSvE8TYeTN/sX "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
UMθ⍘ι⁴⁰
```
Inspired by @l4m2's use of base conversion, convert the inputs from "base 40" (chosen to make it easier for me to calculate the various constants).
```
≔E²⊟θδ
```
Split off the portal squares.
```
F⁸FE⁸⁺κ⁺⁴⁰¹×⁴⁰ι¿¬№⁺θδκ«
```
Loop over each potential square, converted into a "base 40" value, but excluding the input squares.
```
≔⟦⟧η
```
Start counting the number of pieces this square attacks.
```
Fθ«
```
Loop over the knook and the two kings.
```
≔⊙⊞OΦ⟦δ⮌δ⟧⬤⟦κλ⟧№⟦¹¦²¦⁴⁰¦⁸⁰⟧↔⁻ξ§μπυ№⟦³⁸¦⁴²¦⁷⁹¦⁸¹⟧↔⁻⁻λκ↨μ±¹ζ
```
Check whether the portals are near to the two squares (trying both permutations of squares near to different portals), then also considering the case of a regular knight's move away, see whether the squares are a knight's move away, and if any of the three cases succeeds then mark this square as attackable.
```
F⟦¹¦⁴⁰±¹±⁴⁰⟧«
```
Loop over all possible rook movements.
```
≔κε
```
Start at one square.
```
F¹⁵«
```
Repeat 15 times.
```
≧⁺με
```
Move one square in the current direction.
```
≧⁺⁼λεζ
```
If this is the target square then mark it as attackable.
```
¿№δε≦⁻Σδε
```
If it's a portal then jump through it.
```
¿‹⁰⌕θε≔⁰μ
```
If it's a king then stop moving.
```
»»⊞ηζ
```
Keep count of the number of pieces that were attackable.
```
»¿⌊η⟦⍘κ⁴⁰
```
Output the square if all three were attackable, meaning that the knook can move to this square, and from this square can check both kings.
] |
[Question]
[
## Introduction
The \$RADD(n)\$ operation is defined as the sum of \$n + [\$ the number whose decimal representation are the decimal digits of \$n\$ in reverse order \$]\$, see [A004086](https://oeis.org/A004086). After reversal, trailing zeros are lost. See [Reverse-Then-Add Sequence](https://mathworld.wolfram.com/Reverse-Then-AddSequence.html) and [A056964](https://oeis.org/A056964).
Not all numbers can be represented as the result of a \$RADD\$ operation.
## Examples
\$RADD(11) = 11 + 11 = 22\\
RADD(23) = 23 + 32 = 55\\
RADD(70) = 70 + 7 = 77\\
RADD(85) = 85 + 58 = 143\\
RADD(1100)= 1100 + 11 = 1111\$
## Task
We are looking for a method that determines for a given number \$m\$,
whether it can be represented with \$RADD\$, and if this is the case,
then determines an argument \$n\$ such that \$m = RADD(n)\$, symbolically \$n = RADD^{-1}(m)\$
As a convention, the larger of the two summands shall be used as result, e.g.,
\$RADD^{-1}(55) = 32, RADD^{-1}(143) = 85\$
If more than one decomposition is possible, there is no preferred choice which one is used for the output.
Since the problem comes from the OEIS sequence [A356648](https://oeis.org/A356648), only square numbers \$s=n^2\$ should be considered as a target.
## Challenge
Write a function or a program that takes an integer \$n\gt0\$ as input and returns the \$RADD\$ decompositions \$RADD^{-1}(k\_{i}^2)\$ of as many as possible further distinct square numbers \$k\_{i}^2 \ge n^2\$ as the result, such that there are no numbers \$k'\$ with \$k\_{i}<k'<k\_{i+1}\$ whose squares \$k'^2\$ are also \$RADD\$-decomposable.
As \$n\$ increases, the obvious trivial method of looping through all candidates may become infeasible.
## Winning criterion
The program that delivers the most consecutive terms represented by their decompositions after \$n=1101111\$ \$(1101111^2 = 220005934299 + 992439500022)\$ in a running time of \$300\$ s wins. If only one term is found, the combined running time to scan the range up to this term and to find its decomposition counts. [fastest-code](/questions/tagged/fastest-code "show questions tagged 'fastest-code'")
## Tests
With \$R2(n) := RADD^{-1}(n^2)\$
* Initial terms of [A356648](https://oeis.org/A356648):
```
n = {2, 4, 11, 22, 25, 33, 101, 121, 141, 202, 222, 264, 303, 307, 451, 836, 1001}
R2(2) = 2, (2^2 = 2 + 2)
R2(22) = 341, (22^2 = 484 = 143 + 341)
```
for all numbers \$n\_i\le 1001\$ not in the list no \$RADD\$ decomposition exists.
* Range \$10^5\cdots 2\times 10^5\$
```
n = {100001, 101101, 102201, 103801, 105270, 109901, 110011, 111111, 111221, 112211, 120021, 121121, 122221, 125092, 125129, 133431, 138259, 148489, 161619, 165269, 171959, 200002}
```
are the only numbers in this range for which \$RADD\$ decompositions exist.
* Some larger examples
```
n = 386221, n^2 = 149166660841 = 100166999840 + 48999661001, R2(386221)= 100166999840
n = 476311, n^2 = 226872168721 = 130002968690 + 96869200031, R2(476311) = 130002968690
n = 842336, n^2 = 709529936896 = 109600929995 + 599929006901, R2(842336) = 599929006901
```
[Answer]
# C++11 (gcc), O(log(n))
This algorithm can check, if a number n has a RADD-decomp and calculate the decomp in O(D)=O(log(n)), where D is the number of digits. It also includes a pre-test, with shorter loop.
In this way, a large range can be scanned without gaps:
TOTAL COUNT IN [1:8589934591]: 2219
(There are 2219 \$\ n\in[1:2^{33}-1]\$ such that \$n^2\$ has a RADD decomposition)
Took 153s on my pc.
The core routine uses byte-arrays to process large numbers.
With the new approach, squares are not explicitly calculated. However, adding odd numbers to get the next squares still creates some overhead. But it runs faster overall without conversion from int to byte-array.
[Try online](http://tpcg.io/_K0IS4E)
```
#pragma GCC optimize("Ofast","unroll-loops","omit-frame-pointer","inline")
#define FRC_INLINE __attribute__((always_inline)) inline
#include <iostream>
using std::cout;
typedef uint64_t intI;
typedef __uint128_t intO;
//decimal digit
//to represent a number n, all 'digit n[i]' shall be in [0:9]
//as a temp in a calculation it may also be negative
typedef signed char digit;
//RADD pre-test
//n is an array containing L decimal digits
//returns true, if for a given n there is an R, s.t. n=R+reverse_decimal(R)
//returns false in many cases where no RADD-decomp exists
//error rate < 0.003% for n in [1:2^32]
//running time is in O(L)
template<bool check1=true>
FRC_INLINE bool preTestRADD(const digit* n, int L)
{
if (L < 1) return false;
int N = L-1;
if (n[N] == 1 && check1) {
if (n[0] == 1)
if (preTestRADD<false>(n, L)) return true;
--N;
}
for (int d = 0; N-d-d > 0; ++d) {
digit x = n[d]-n[N-d];
if (!(x==0 || x==1 || x==9 || x==-1 || x==-9)) return false;
}
return true;
}
//calc RADD-decomposition
//n is an array containing L decimal digits
//checks for a given n, if there is an R, s.t. n=R+reverse_decimal(R)
//if yes, it determines the highest such R and returns the digit count of R
//returns 0, if no RADD-decomp exists (then R is undefined)
//running time is in O(L)
template<bool check1=true>
FRC_INLINE int calcRADD(digit* R, const digit* n, int L)
{
if (L < 1) return 0;
int N = L-1;
digit cri = 0, cro = 0;
if (n[N] == 1 && check1) {
if (n[0] == 1) {
int L2;
if (L2 = calcRADD<false>(R, n, L)) return L2;
}
--N;
cro = 1;
}
int d = 0;
for (; N-d-d > 0; ++d) {
switch (n[d]-n[N-d]) {
case -9: {
if (!cri || cro) return 0;
R[d] = 0;
R[N-d] = 9;
break;
}
case -1: {
if (cri) return 0;
if (cro) {
R[d] = n[d]+1;
R[N-d] = 9;
} else {
R[d] = 0;
R[N-d] = n[d];
}
cri = cro;
cro = 1;
break;
}
case 0: {
if (cro) {
R[d] = n[d]-cri+1;
if (R[d] > 9) return 0;
R[N-d] = 9;
} else {
R[N-d] = n[d]-cri;
if (R[N-d] < 0) return 0;
R[d] = 0;
}
std::swap(cri,cro);
break;
}
case 1: {
if (!cri) return 0;
if (cro) {
R[d] = n[N-d]+1;
R[N-d] = 9;
} else {
R[d] = 0;
R[N-d] = n[N-d];
}
cri = cro;
cro = 0;
break;
}
case 9: {
if (cri || !cro) return 0;
R[d] = 0;
R[N-d] = 9;
break;
}
default: {
return 0;
}
}
}
if (!(N-d-d)) {
if ((n[d] & 1) != cri) return 0;
R[d] = n[d]/2 + 5*cro;
return N+1;
}
if (cro != cri) return 0;
return N+1;
}
constexpr int MAX_DIGITS = 40;
FRC_INLINE int getDigits(digit d[MAX_DIGITS], intO n)
{
int L = 0;
for (; L < MAX_DIGITS; ++L){
if (n <= 0xFFFFFFFFFFFFFFFF) break;
d[L] = n % 10;
n /= 10;
}
intI nt = (intI)n;
for (; L < MAX_DIGITS; ++L){
if (!nt) break;
d[L] = nt % 10;
nt /= 10;
}
return L;
}
//returns 0, if n^2 has no RADD-decomp
//otherwise it returns the highest R with n^2=R+reverse_decimal(R)
//running time is in O(log(n))
//faster for single numbers / small ranges
FRC_INLINE intO RADD2(intI n)
{
digit in[MAX_DIGITS];
digit out[MAX_DIGITS];
intO n2 = (intO)n*n;
intO nt = n2;
int L = 0;
for (; L < MAX_DIGITS; ++L){
if (nt <= 0xFFFFFFFFFFFFFFFF) break;
in[L] = nt % 10;
nt /= 10;
}
intI ntt = (intI)nt;
for (; L < MAX_DIGITS; ++L){
if (!ntt) break;
in[L] = ntt % 10;
ntt /= 10;
}
if (!preTestRADD(in, L)) return 0;
int Lout = calcRADD(out, in, L);
if (!Lout) return 0;
nt = out[Lout-1];
for (int l = Lout-2; l >= 0; --l) {
nt *= 10;
nt += out[l];
}
if (n <= 0xFFFFFFFF)
{
std::cout << n << "-> " << (intI)n2 << " R: " << (intI)nt << "\n";
} else {
std::cout << n << "-> ";
for (int l = L-1; l >= 0; --l) std::cout << (char)(in[l]+'0');
std::cout << " R: ";
for (int l = Lout-1; l >= 0; --l) std::cout << (char)(out[l]+'0');
std::cout << "\n";
}
return nt;
}
//scans range [A:B]
//no explicit calculation of squares
//faster for bigger ranges
FRC_INLINE int scan(intI A, intI B)
{
static digit n2[MAX_DIGITS];
static digit R2[MAX_DIGITS];
static digit step[MAX_DIGITS];
for (int i=0; i<MAX_DIGITS; ++i) {
step[i] = 0; n2[i] = 0;
}
intI n = A;
int n2L = getDigits(n2,(intO)n*n);
int stpL = getDigits(step,2*(intO)n-1);
int cnt = 0;
for (;;++n) {
if (!n) return cnt;
int R2L = 0;
if (preTestRADD(n2, n2L))
R2L = calcRADD(R2, n2, n2L);
if (R2L) {
++cnt;
cout << n << "-> ";
for (int l = n2L-1; l >= 0; --l) cout << (char)(n2[l]+'0');
cout << " R: ";
for (int l = R2L-1; l >= 0; --l) cout << (char)(R2[l]+'0');
cout << "\n";
}
if (n >= B) return cnt;
//n2 <- next square
int cs;
if (cs = ((*step+=2)>9 ? 1 : 0)) *step = 1;
digit cn = (*n2+=*step)>9 ? 1 : 0;
*n2 -= 10*cn;
for (int i = 1; i < MAX_DIGITS; ++i) {
if (i >= stpL && !cs && !cn) break;
if (cs = ((step[i]+=cs)>9 ? 1 : 0)) step[i] = 0;
cn = (n2[i]+=step[i]+cn)>9 ? 1 : 0;
n2[i] -= 10*cn;
}
if (step[stpL]) ++stpL;
if (n2[n2L]) ++n2L;
}
}
constexpr intI SCAN_START = 1;
//constexpr intI SCAN_START = 0xFFFFFFFF;
//constexpr intI SCAN_STOP = 1000000000;
constexpr intI SCAN_STOP = 0x1FFFFFFFF;
int main() {
int cnt = scan(SCAN_START,SCAN_STOP);
/*int cnt = 0;
for (intI n = SCAN_START; n <= SCAN_STOP; ++n) {
if (!n) break;
intO R2 = RADD2(n);
if (R2) ++cnt;
}*/
cout << "TOTAL COUNT IN [" << SCAN_START << ":" << SCAN_STOP << "]: " << cnt << std::endl;
return 0;
}
```
[Answer]
# [Haskell](https://www.haskell.org/), 4 s
```
sums[a]=[[a]]
sums(a:b:c)=map(a:)(sums(b:c))++map((a-1):)(filter(const(a>0))$sums((10+b):c))
pick[]=[]
pick[c]=[div c 2]
pick(a:b)=min 9a:pick(init b)++[max 0(a-9)]
radd n=n+(read.reverse.show)n
iradd n=
(\s->case s of[]->0;_->(read.concat.map show.pick.head)s).
filter(\x->x==reverse x).map(dropWhile(==0)).sums.
map(read.(:"")).show$n
main=print$take 1[(n,n2,i,n2-i)|n<-[1101112..],let n2=n^2,let i=iradd n2,i>0,radd i==n2]
```
[Try it online!](https://tio.run/##LU/BjoMgFLzzFaTpAaIS8Va7@Bt7sOyGKo2k@jTAdj3sv7sP6@VlmPdmhhlMeNpx3LbwM4XWaNXi0CS9mKnvdcfVZBaEnO1cYniWJY6ZQnLkH26M1rNuhhCZaUrOz/spk2V25@mekMV1zxbN9Rt1CHv3oh2t3kzKwiQH9GLqnXDgIr1jVDuZlZYYduGaEG/6noKCjHlreuHty/pgRRjmXw7EHWtC2S0UTWeCpYHOj1YXTXn9Lpq3Cr/amSiwBE1CkQLFgBseuCD0KHRbi2ZV6oigK08C1vt5@RzcaJlSWFWkqqhJq92b1adTotH3DIRMxoFavIN4juZpqWwZ5FDlDkfh@B98FK2UpZSyEkLno40UKgVf1Q6dOhqhoCnzHTuloNLb9g8 "Haskell – Try It Online")
[Answer]
[26496 in 51min](https://github.com/837951602/Misc/blob/master/Misc/256224%7E14d.txt?raw=true)
Unordered but should cover [0,10^14)
```
#include <vector>
#include <set>
#include <bitset>
#include <iostream>
#include <math.h>
// Sebastian
typedef uint64_t intI;
typedef __uint128_t intO;
std::set<intI> outted;
typedef signed char digit;
template<bool check1=true>
inline bool preTestRADD(const digit* n, int L)
{
if (L < 1) return false;
int N = L-1;
if (n[N] == 1 && check1) {
if (n[0] == 1)
if (preTestRADD<false>(n, L)) return true;
--N;
}
for (int d = 0; N-d-d > 0; ++d) {
digit x = n[d]-n[N-d];
if (!(x==0 || x==1 || x==9 || x==-1 || x==-9)) return false;
}
return true;
}template<bool check1=true>
inline int calcRADD(digit* R, const digit* n, int L)
{
if (L < 1) return 0;
int N = L-1;
digit cri = 0, cro = 0;
if (n[N] == 1 && check1) {
if (n[0] == 1) {
int L2;
if (L2 = calcRADD<false>(R, n, L)) return L2;
}
--N;
cro = 1;
}
int d = 0;
for (; N-d-d > 0; ++d) {
switch (n[d]-n[N-d]) {
case -9: {
if (!cri || cro) return 0;
R[d] = 0;
R[N-d] = 9;
break;
}
case -1: {
if (cri) return 0;
if (cro) {
R[d] = n[d]+1;
R[N-d] = 9;
} else {
R[d] = 0;
R[N-d] = n[d];
}
cri = cro;
cro = 1;
break;
}
case 0: {
if (cro) {
R[d] = n[d]-cri+1;
if (R[d] > 9) return 0;
R[N-d] = 9;
} else {
R[N-d] = n[d]-cri;
if (R[N-d] < 0) return 0;
R[d] = 0;
}
std::swap(cri,cro);
break;
}
case 1: {
if (!cri) return 0;
if (cro) {
R[d] = n[N-d]+1;
R[N-d] = 9;
} else {
R[d] = 0;
R[N-d] = n[N-d];
}
cri = cro;
cro = 0;
break;
}
case 9: {
if (cri || !cro) return 0;
R[d] = 0;
R[N-d] = 9;
break;
}
default: {
return 0;
}
}
}
if (!(N-d-d)) {
if ((n[d] & 1) != cri) return 0;
R[d] = n[d]/2 + 5*cro;
return N+1;
}
if (cro != cri) return 0;
return N+1;
}inline intO RADD2(intI n, intO& n2)
{
constexpr int MAX_DIGITS = 0x40;
digit in[MAX_DIGITS];
digit out[MAX_DIGITS];
n2 = (intO)n*n;
intO nt = n2;
int L;
for (L = 0; L < MAX_DIGITS; ++L){
if (nt <= 0xFFFFFFFFFFFFFFFF) break;
in[L] = nt % 10;
nt /= 10;
}
uint64_t ntt = (uint64_t)nt;
for (; L < MAX_DIGITS; ++L){
if (!ntt) break;
in[L] = ntt % 10;
ntt /= 10;
}
if (!preTestRADD(in, L)) return 0;
int Lout = calcRADD(out, in, L);
if (!Lout) return 0;
nt = out[Lout-1];
for (int l = Lout-2; l >= 0; --l) {
nt *= 10;
nt += out[l];
}
if (outted.count(n)) return 0; outted.insert(n);
if (n <= 0xFFFFFFFF)
{
std::cout << n << " -> " << (uint64_t)n2 << " R: " << (uint64_t)nt << std::endl;
} else {
std::cout << n << " -> ";
for (int l = L-1; l >= 0; --l) std::cout << (char)(in[l]+'0');
std::cout << " R: ";
for (int l = Lout-1; l >= 0; --l) std::cout << (char)(out[l]+'0');
std::cout << std::endl;
}
return nt;
}
int cnt;
void call(intI n) {
intO n2;
intO R2 = RADD2(n, n2);
if (R2) cnt++;
}
typedef unsigned int uint;
typedef unsigned long u2int;
typedef __uint128_t u4int;
std::vector<uint> ves[11111119];
//std::set<u2int> ved[10000007];
constexpr u2int pow10l(int n) {
return n?pow10l(n-1)*10:1;
}
constexpr u2int pow10g(int n) {
return n?pow10g(n-1)*10+1:0;
}
template<int P, int Q, int N>
struct ragebase { static
void rage(u2int p, uint q) {
if (ves[pow10g(Q)+q% pow10l(Q)].empty()) return;
//#pragma nounroll
for (int i=Q==0?1:0; i<19; ++i) {
ragebase<P-1, Q+1, N>::rage (p+i*pow10l(P-1), q+i*pow10l(Q));
}
}};
template<int Q, int N>
struct ragebase<0,Q,N> { static
void rage (u2int p, uint q) { //if (p==161) fprintf(stderr, "%lu/%u\n", p, q);
q = q % pow10l(N);
std::vector<uint>& r = ves[pow10g(N)+q];
//std::set<u2int>& y = ved[q];
if (r.empty()) return;
{uint pB = sqrtl(p*pow10l(N)/1000);
uint pL = pB-1, pR = pB+1;
if (pL==-1) pL=0;
for (uint i=pL; i<=pR; ++i) {
//if (y.count(i)) continue; y.insert(i);
for (uint j: r) {
call ( i*pow10l(N)+j);
}
}}
{uint pB = sqrtl(p*pow10l(N)/100);
uint pL = pB-1, pR = pB+1;
if (pL==-1) pL=0;
for (uint i=pL; i<=pR; ++i) {
//if (y.count(i)) continue; y.insert(i);
for (uint j: r) {
call ( i*pow10l(N)+j);
}
}}
{uint pB = sqrtl(p*pow10l(N)/10);
uint pL = pB-1, pR = pB+1;
if (pL==-1) pL=0;
for (uint i=pL; i<=pR; ++i) {
//if (y.count(i)) continue; y.insert(i);
for (uint j: r) {
call ( i*pow10l(N)+j);
}
}}
{uint pB = sqrtl(p*pow10l(N)/1);
uint pL = pB-1, pR = pB+3;
if (pL==-1) pL=0;
for (uint i=pL; i<=pR; ++i) {
//if (y.count(i)) continue; y.insert(i);
for (uint j: r) {
call ( i*pow10l(N)+j);
}
}}
}};
//template<int P, int Q, int N>
//using rage = ragebase<P,Q,N>::rage;
template<int N>
void run() {
std::cerr << N << ' ' << clock() << '\n';
//for (int i=0; i<pow10l(N); ++i) ves[i].clear();
//for (int i=0; i<pow10l(N); ++i) ved[i].clear();
for (u2int i=0; i<pow10l(N); ++i) ves[pow10g(N)+i*i%pow10l(N)].push_back(i);
std::cerr << N << ' ' << clock() << '\n';
ragebase<N,0,N>::rage(0,0);
}
int main() {
run<0>();
run<1>();
run<2>();
run<3>();
run<4>();
run<5>();
run<6>();
run<7>();
}
```
[Try it online!](https://tio.run/##5VhtT9tIEP6eXzFcVbBJTOyUtkecpGpV3QkpFyDth5O4CBnbwF7NxtgbCmrz14@b2fXL2k5CX06qTg1SnN2Z3XlmnvHMLn4cW5e@//DwhHE/WgQhDG5DX8yTUaucSUOhD8@ZqM2weSqS0LvW5649cbV3NWq1ul2Ad@G5lwrm8VZL3MdhEF7AgnHxYv9MAD4P3WL67IwETu9XJTlyW61UBP0@WhyQ5gjmCyHCwC13StklDwPwr7wEAnbJBO4WXseRJ8LB@XweoST0PzhDkSzCUYvxiPEQpCBOwvdhKqav3741/DlPhVq/C7xDxmFstj61AD/sAowxDMAxIQnFIuFw4UVp6Cohak5gCGPLQVS5Oj@dzGA4BAe2tzMEJqjdShVbqZjFdC7SkA2kqZGBmMZmYZ@ccYtlljVRg6UCcDFPwCBcAeKyXZhYgRXAiH6224GOQzoMd6jGT4OZhaitYOZWYG4Zd8OhDZ8/Az6d7HmQPa18wjowVwUnA1RBvXycHsLue5EvqclImXbgK0myVxBUOu0njKKDuyZzGaZvJE8T5NbGPbdB6biHRnKfclLRpyqv@splk1/6KLhOJb4l11oCbOI9/ciEf0VuFKzXHfG9NATroF@bLtKC4ofcI5x6wPXPFA0oYE0JWUXZQVN2juXkQ3V6uQKcsw4cYtsESqnMzRWrNcwUm7bjrlFZD34JIZK7eW/7kW3J9oqdGzMqidEXd4VIy5OvD669PrZfEjgLka0LHu0iVUdwsImm7wy0FkpCswmLVB2A/Tiadew1qVF966MXUzZ2KGrfSoWz6R38L/Kc3P9xmV5tOd@R6/a3BvhgQx2hGrf1Y4ocnm68RSRWgVuNZVnrHcuypW0ZshmY9T4mOwBsUx/bouCuzCftve72oA3PdyssZAsm7VpTUtm3Zl990bJs@0dA/bFHp5fDrMUfbQPv5V1eHgHCuziRPe@P13@evT38/fD9Owr/3b6tN3jGT0v5TJfgGbIpog@nJk22j0y@y92iuR4BGsMA9MopGLtlqx2rcxYdP8p9qemOzdqxQcCAkP5W@5j1bEDwYxlzAU/B0bjAie6wmFE8F4dpLgimkY9NLlz9PPA4vi3cYQOWJpgamjLf9MM1qx5ybD2KyIV2MDJwSKSTvltuRlqN5ZISopKkljNzq2ffiI58JOm5@HskCbKsSH8BUGt3WI9uW20azQqfCIK6duz58wUXBtd9yW4ke4ynYUIy/SBZZVsd9LVTGLUInyIwGACnr1/AGuEX/tJI7CnJtN@QyIVyl5AHUQa4XpTXWSm9rsYMj8nVgFU2MOiiZaI2Rqi9Y@9oXa2ip/CusyEZ@wIziolNdureVy4clP9EIF0n6Hfrds4CSrYoKzB5Nqh3vOeWgymVAlWLMBuxAJXpOO2ZtF27LTcvr7Q8u4qSOeLIbYqiOb@ERa8i1O@8i30pUpdedRUfkHQEt2F66tjy8xJTs9st7sVyO1IIdIVWWSmlAsTzj44t/S7dzsP0KhNyyzF3HbvvSM@KexqtOVbXrRP1mIwQYrLwBSTeJd3uMeGQCk8wH1SQad7ILHdkOOAmN9vtPolRfu0Bx/cpmUdR9dVlwxO8ar5y@pgabOAcUKVi@oubGx0ct50OnFj4NRn1@zSNl@c22838OTY7cFMOUdE08zxZLt2VHjZdGxx37M5ktMpDWOfiDWbPDVbLzPIkM9vgdRsS1CRyb7KC02B2G@6lSlCoUBIme4hd3BtFKVKiTxJG/AZXpDeJiIx4t4DQpfTIgCg16lvxGwpfPJU/8xYu/wkxpvu9iVpD5KFkaKEoisdEzjCe5uxAQU@3S@vvs2rJECImo2Acb/9wnxdKZtaKg9z37z4kzZtoFIEBrPSk/bdZvycvl1/k/8/t/k/t/SPOP/ufOy8LWre7uWh3u4uUYQuStWuoV7iTTl5B3Vrlx2Wq3i24kQNULThMEmrBE/rawT98@NHc/4BqNPMX33HrhV1W9LIoqgBS@WOzPT8KvcQw8zL4@KqgsUqFs/eYrV32tJif7cWL9Ors3EPcTC/TX@xeq9KSsFUUoTTsDr1z2RHk2mNlBDGaA2eU46ZRrzJ6VhntV0bPK6MXldFLOVo@PPzjX0TeZfpgHT17sK69xL8acuxetyGOxIKHxSi6/hc "C++ (gcc) – Try It Online")
---
Old answer:
[C++ (gcc)](https://gcc.gnu.org/), 554 in 76s
```
#include <stdio.h>
#include <math.h>
typedef unsigned long xint;
constexpr xint pow10(int n) {
return n?pow10(n-1)*10:1;
}
#define L(m,n,y) for(i##n=i##m; i##n<pow10(y)*19; i##n+=pow10(y)+pow10(n))
#define Lz(m,n,y) for(i##n=i##m+pow10(y)+pow10(n); i##n<pow10(y)*19; i##n+=pow10(y)+pow10(n))
#define L0(n) for(i##n=0; i##n<pow10(n)*19; i##n+=pow10(n)*2)
#define L1(n) for(i##n=0; i##n<pow10(n)*11*19; i##n+=pow10(n)*11)
#define H(s) { t=sqrtl(i0); if (t*t==i0) printf("%lu: %lu %lu %lu %lu %lu %lu %lu %lu %lu %lu\n", i0,i1,i2,i3,i4,i5,i6,i7,i8,i9,i10); }
#define M1(n) Lz(1,0,n) H()
#define M2(n) L(2,1,n-1) M1(n)
#define M3(n) L(3,2,n-2) M2(n)
#define M4(n) L(4,3,n-3) M3(n)
#define M5(n) L(5,4,n-4) M4(n)
#define M6(n) L(6,5,n-5) M5(n)
#define M7(n) L(7,6,n-6) M6(n)
#define M8(n) L(8,7,n-7) M7(n)
#define M9(n) L(9,8,n-8) M8(n)
#define P(n) L0(n) M##n(2*n) L1(n) M##n(2*n+1)
int main() {
run();
xint i0=0, i1=0, i2=0, i3=0, i4=0, i5=0, i6=0, i7=0, i8=0, i9=0, i10=0, t;
//L0(1) Lz(1,0,2) H()
//L1(1) Lz(1,0,3) H()
P(1)P(2)P(3)P(4)P(5)
}
```
```
}
```
[Try it online!](https://tio.run/##nZPfbpswFMbveQqr0SQ7OVmx@d@U7bYXi5oH2E1EILVEDANHazbt1ceO7WTO1EqriuRP5vzO@QAfTtX3y31VTdNMqqo97mpyP@qd7D4@fQp86LDVTyaiT329qxtyVKPcq3pH2k7tybNUehUEVadGXT/3gw2QvvvOQ2p2ipGfAcFrqPVxUER9dkwtOZvz8I6vgl9BMENjqWryhR5AwYmRphuonM1UiXJYEbO9d4UnLCtcZFFeQouzKWPe6serXosXJe9zN7feOfzHRL00wZC4qub/qeavGXDuHR7oiAdLdDl@G3RLZWg@oyFUz3VZ4h3pBzz9ht58aI93BOUt66u6ASJDkBykABmBjEEmIFOQGcgcZIHIPOmqY2v7KXjYHELA3QP1L7kWllEBHEy/XbLHkcMRCMSCuXyPY4djiBBHzOV7nDicQIw4Zi7f49ThFBLECXP5HmcOZ5AiTpnL9zh3OIcMccZcvseFwwXkiHPm8v2hbCy2v8gae0jFHHfnrl8CC@xmYCbksJWKXqbETo8MyxAbwa0Kq5HV2GpiNbWaWc2tFq7KFuNMGrvbW3wL/rc/wvXnTPgViTzZYHhDBa4IV4wrYWZG8Zqm31XTbvfjtHyM/gA "C++ (gcc) – Try It Online")
Search all numbers that is A+rev(A). Slower than creent record but I still post it
[Answer]
# Scala
I was trying to rewrite [@Roman Czyborra's Haskell solution](https://codegolf.stackexchange.com/a/256234/110802) in scala.
\$ \color{red}{\text{But the Scala code outputs None}}\$
Any help would be appreciated.
[TIO](https://tio.run/##lVPfa9swEH7PX3H0oUhrpsV5qyGBwTYYrH1YGXsopai2ktwqy0ZSSkrI357dSU7ilG0wP9jS/fJ933cXKm31ft8@/TJVhBuNDrajEUBtFhDWTRA2xBK@YYj3X118kP35aHiAGVAINDpWK0oFeiodDNyihfTM5nw@OTSUZfKSg8uI9NJSvgnxhsrO5qNcJfXCJtkbANTC6nijO3EqJVKmlWOg03soZL4Oc9BG43OKVSuja5jDhAN2B9gdVs9/gc3n/wZcvQVcwQeY/hvui7aw7modTf09OXJXHKTQ4ZEFQW2sVINOXI9BJ7iDNLpfQY7QGzGhCCLl@gys13UtXAmETKY3/crBFQinYnsXPbql8ubF@GDIwFGHTPxTauaDu2fBGC0Zk3aDeg1p9qh0@IRLQkJ2jpPHzCyRqXP2QH82HATcMJv0msHm0J/sC9e@7X6u0BrxyP5JLz8uQAxLKwyfmy6@Spgkv7EkRWL5LIpHhCo/597FxYXMPAxJbGhthPbLUMJH7/XrfQ7msflBYp3x4ggIGSjC6EYtfNuIopgURTHN/TsGJtyYVHgHTp5oadexWyd5qIKqWmtpY7@gJ5K2PUlpmlLuVHKZ7XHuuQBSbi/a9LQRTAvyDsDlZZ4GlEzbMAbgrm2MyJXHgPyhScLBYiX2bltnessufXdpR6Nx6dYRKdE6kZH0Y7jb738D)
```
object Main {
def sums(lst: List[Int]): List[List[Int]] = lst match {
case Nil => Nil
case a :: Nil => List(List(a))
case a :: rest =>
sums(rest)
.flatMap(l => List((a :: l), (a - 1) :: l))
.filter(l => l.head > 0)
}
def pick(lst: List[Int]): List[Int] = lst match {
case Nil => Nil
case c :: Nil => List(c / 2)
case a :: rest =>
val updatedRest = pick(rest.init)
(math.min(9, a) :: updatedRest) :+ math.max(0, a - 9)
}
def radd(n: Int): Int = n + (n.toString.reverse.toInt)
def iradd(n: Int): Int = {
val sumsList = sums(n.toString.map(_.asDigit).toList)
val filteredList =
sumsList.filter(x => x == x.reverse).map(_.dropWhile(_ == 0))
if (filteredList.isEmpty) 0
else pick(filteredList.head).mkString("").toInt
}
def main(args: Array[String]): Unit = {
val nums = Stream.from(1101112).map(n => (n, n * n))
val output = nums.collectFirst {
case (n, n2) => {
val i = iradd(n2)
if (i > 0 && radd(i) == n2)
Some((n, n2, i, n2 - i))
else None
}
}.flatten
println(output)
}
}
```
] |
[Question]
[
Part of [**Code Golf Advent Calendar 2022**](https://codegolf.meta.stackexchange.com/questions/25251/announcing-code-golf-advent-calendar-2022-event-challenge-sandbox) event. See the linked meta post for details.
---
*challenge idea by [emanresu A](https://chat.stackexchange.com/transcript/message/62441610#62441610)*
Santa has a bunch of presents wrapped in cuboid boxes of various sizes. As his sled flies above a chimney, a stack of presents will be automatically dropped through it. Santa wants to carefully choose the presents so that all of them fit into a rectangular chimney.
All presents must be center-aligned due to *magical physics* issues (i.e. placing two small presents side-by-side is not allowed). The presents can be rotated, but four of the faces must be parallel to that of the chimney. A present fits in the chimney if both its width and length are `<=` those of chimney after rotation.
## Task
Given the dimensions of the presents and the chimney, determine the maximum number of presents that fit in the chimney (i.e. sum of the presents' heights is `<=` that of the chimney). All dimensions are positive integers.
Standard [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") rules apply. The shortest code in bytes wins.
## Test cases
Presents and chimney are given as `[width, length, height]`.
```
Presents: [[6, 6, 4], [2, 2, 2], [2, 2, 2], [2, 2, 2]]
Chimney: [6, 6, 6]
Answer: 3
Explanation: Use three small cubes.
(Placing two or more cubes above or below the single large box is not allowed)
Presents: [[6, 10, 9], [10, 7, 6], [10, 7, 5], [10, 7, 4], [5, 10, 10]]
Chimney: [6, 5, 999]
Answer: 0
Explanation: No present fits in the chimney
Presents: [[1, 2, 6], [1, 6, 2], [2, 1, 6], [2, 6, 1], [6, 1, 2], [6, 2, 1]]
Chimney: [2, 6, 6]
Answer: 6
Explanation: All six presents can be rotated to [2, 6, 1],
which fits the chimney and takes up only 1 unit of height
Presents: [[1, 2, 6], [1, 6, 2], [2, 1, 6], [2, 6, 1], [6, 1, 2], [6, 2, 1]]
Chimney: [1, 6, 6]
Answer: 3
Explanation: All six presents can be rotated to [1, 6, 2]
Presents: [[1, 2, 6], [1, 6, 2], [2, 1, 6], [2, 6, 1], [6, 1, 2], [6, 2, 1]]
Chimney: [1, 3, 13]
Answer: 2
Explanation: All six presents can be rotated to [1, 2, 6]
```
[Answer]
# [Python 3](https://docs.python.org/3/), 130 bytes
```
lambda W,L,H,a:sum(0<=(H:=H-i)for i in sorted(min(h+H*(w>W or l>L)for h,w,l in permutations(b))for b in a));from itertools import*
```
[Try it online!](https://tio.run/##tY67jsIwEEX7/YopbfBKcUKAsBvqFPQULIUjEsVS/JBjhPbrgx9BGwo6VhrJ13funBn9azsls602Y1v@jD0T9YXBkRxIRdhuuAqUfJeo2pXVJ8etMsCBSxiUsc0FCS5Rt6wW6LY/guv1@0PIdORGep/TjRFXyyxXckA1Ds3aNxjGX61RArhtjFWqH4AL7aiLURsuLWrRmkCs0ym@q7PTKQFfL@QZ44/ZfE6gKIqJQBP382EvNo440/lMhzV5zNPkCZn@nUTDxsgI1uMOOrkxS71cBzedpM88Uel/UTPnZe/Bjnc "Python 3.8 (pre-release) – Try It Online")
[Answer]
# Python3, 217 bytes:
```
lambda c,p:max(max(f(c,[*i]))for i in P(p,len(p)))
from itertools import*
P=permutations
def f(c,p,H=0,k=0):
yield k
if p:
for w,l,h in P(p[0],3):
if c[0]>=w>0<l<=c[1]and H+h<=c[2]:yield from f(c,p[1:],H+h,k+1)
```
[Try it online!](https://tio.run/##tY87b8MgFIV3/4o7muQOxq7T2IozRhmzUwbXDxn5ASJUaX69C9iRkqFbK0A693L4zkXdTSenZK/0fCo@5qEcP@sSKlT5WH6H7rRhhWwjOCGt1CBATHAJFQ7NFCpCSNBqOYIwjTZSDlcQo5LabIJLoRo9fpnSCDldg7ppwZEUnosI@yIieQB30Qw19AGIFpStwSXccMBuTWERx8Q5wVkqWx6L2zE6DIeiYpSXUw3nbeeKmOcLzY/jkxjNOdpr7LeUzEqLyYSnkO3QLo7MCrD7jSOwGMHtX6T9evD0PMUsy1YAjRAy53Xi3QKfdPqkfUq6@Gn0SowfA1GftyD8bI8p6NqNfZc6ufPdeJXO8wpdAP@BTWwz@Rvu/AM)
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 72 bytes
```
Fθ«≔E³E³§ι⁺κμι≔Φ⁺ιEι⮌κ⬤꬛μ§ηνι¿ι⊞υ⌊Eι⊟κ»≔⟦⟧ζW⁻υζF№υ⌊ι⊞ζ⌊ιILΦ欛Ӆζ⊕κ↨η⁰
```
[Try it online!](https://tio.run/##dVBNS8QwED3bXzHHCUQQlb30tBaUBZWix9JD6M5uwqbpmiarVvztdfqh7h52GMgwee/lvVRa@apRtu83jQd8E/CVXCzb1mwdPqk93kiYj2VYuTV9oJGQ29jiTkItuCQYkf5x7o0N5HFEmInLxwsdyLeEuxG/tHZgPzcBHzypAV//62sJThwJmw2gEZDHVmNkReNMHWuclfNmP6oy8juZPRSlhI4X79pYAmQGm4nDTsCYMmuiC8dihgWmF7qTZZrk3jA0U23AR3LboH8TdqcBXpmQfVaWMs2O@HLlKk81uUDrOfad4h/gdFdiqrTvi6JYSOC@ZcvFtYShz4zDPIEXZdlfHuwP "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
Fθ«
```
Loop over the presents.
```
≔E³E³§ι⁺κμι
```
Rotate them 120° and 240° around a corner.
```
≔Φ⁺ιEι⮌κ⬤꬛μ§ηνι
```
Also rotate them 180° around their length axis, then filter on which orientations fit in the chimney.
```
¿ι⊞υ⌊Eι⊟κ
```
If there were any then push the shortest such orientation to the predefined empty list.
```
»≔⟦⟧ζW⁻υζF№υ⌊ι⊞ζ⌊ι
```
Sort the list of heights.
```
ILΦ欛Ӆζ⊕κ↨η⁰
```
Find the maximum number of presents that will fit.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 21 bytes
```
εœʒ@¨P}€θß}²Oª{ηÅΔO‹θ
```
[Try it online!](https://tio.run/##yy9OTMpM/f//3Najk09Ncji0IqD2UdOaczsOz689tMn/0Krqc9sPt56b4v@oYee5Hf//R0eb6SgYGugoWMbqKESDGOY6CmZIbFMktgmIbQpRb2gAlgAqBkrFxnKBzAEqMTKMBQA "05AB1E – Try It Online")
*+2 bytes: fixed a bug found by Jonathan Allan*
Assumes that all chimney dimensions are positive.
```
εœʒ@¨P}€θß}
ε } # map over boxes
œ # permutations (all possible rotations)
ʒ } # filter:
@¨P # first two dimensions are less than or equal to the
first two dimensions of the chimney
€θ # for each get last element (the height)
ß # minimum
```
This gets a list of the smallest height you can get by rotating the box in a way that fits the chimney or "" if it doesn't fit at all.
```
²Oª{ηÅΔO‹θ
²Oª # append sum of the second input to the list
{ # sort
η # prefixes
ÅΔ # get the index of the first element such that:
O‹θ # the sum is greater than the last element of second input
```
The sum of the second input is there to guarantee that there is a prefix with larger sum than the height of the chimney.
[Answer]
# [JavaScript (Node.js)](https://nodejs.org)\*, 128 bytes
*\* This code relies on a specific implementation of `sort()`. The engine used on TIO is Node 11.6.0. This was also succesfully tested with Node 16.14.0.*
*-4 thanks to [@tsh](https://codegolf.stackexchange.com/users/44718/tsh)*
Expects `(w,l,h,a)` where `w,l,h` are the dimensions of the chimney and `a` is the list of dimensions for the presents.
```
(w,l,h,a)=>a.map(a=>(g=H=>m=n?([W,L,H]=a.sort(_=>-40%n--),W>w|L>l|H>g()?m:H):1/0)(n=42)).sort((a,b)=>a-b).map(v=>n+=(h-=v)>=0)|n
```
[Try it online!](https://tio.run/##tY6xboMwEIb3PgVLpTvVpjaBVEQ6Z2XIngGhykkTkghMFCKy8O4U21SN1HRrpZP8@fz7uzvpTrfby/F85ab52A17GuDGKnZgGknpsNZn0KSgpIxUTWYJ@ZqtWFaQDtvmcoV3UjwWz4ZzZGt161eq6jNVAi7rRYYL@SoQDMURos@DZhtr5ht08o6UeSE4cOpQkcDeDNvGtE21C6umhD3MWeArz/0ZFyNHLLD1CxaITz8sCQvSNJ08Uow3@8XC2@i94@SO3bDE56V4II6@15Nuuje51tdOcur6rLQ4d91oQpt54Jb/656NL7O/kQ@f "JavaScript (Node.js) – Try It Online")
### How?
The way we generate the 6 possible rotations of a present is very hackish but pretty short. It basically goes like that:
```
for(let n = 42; n;) {
a.sort(_ => -40 % n--);
}
```
The callback function of `sort()` ignores its arguments, making the sort independent of the content of the array. The result is solely based on the current value of \$n\$, which is decremented after each iteration. More specifically, we get either \$0\$ if \$n\in\{1,2,4,5,8,10,20,40\}\$ or a negative integer otherwise.
The constants \$-40\$ and \$42\$ were chosen such that all distinct rotations are eventually generated *and* we end up with exactly \$n=0\$ when the last one has been processed.
You can [follow this link](https://tio.run/##Hcw9C8JADAbgvb/iHSq5QnuIOHlUUXF1cXAQ0cOenyUnvapI6W@vsYEE8uYhd/u24VTdnnXGvnBdV7oaFjl2NKeUFtJL2qcRpILE7D7YuNpE0dlX6o9Z0vHIgE2CRpzVwVe1OiCfIhsPMQBnWWLk8tcP9xVv9d3fWBH1@clz8KXTpb@oY9wIaRE3QV9tULIkmIFQvJ4yJ6DderXdUwvO44bbY/8haFsUvTVR23U/) to see the different steps of the process.
[Answer]
# [Japt](https://github.com/ETHproductions/japt) [`-h`](https://codegolf.meta.stackexchange.com/a/14339/), 28 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
```
Ëá fÈÅí§NÅ eÃmÎÍÎÃÍËT±Z§(XµD
```
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&flags=LWg&code=y%2bEgZsjF7adOxSBlw23Ozc7DzctUsVqnKFi1RA&input=W1sxLCAyLCA2XSwgWzEsIDYsIDJdLCBbMiwgMSwgNl0sIFsyLCA2LCAxXSwgWzYsIDEsIDJdLCBbNiwgMiwgMV1dCjEsIDMsIDEz)
```
Ëá fÈÅí§NÅ eÃmÎÍÎÃÍËT±Z§(XµD :Implicit input of array U=presents and integers V=width, W=depth & X=height
Ë :Map U
á : Permutations
f : Filter by
È : Passing each through a function
Å : Slice off first element
í : Interleave with
N : Array of all inputs
Å : Slice off first element (X is ignored)
§ : Reducing each pair by <=
e : All true?
à : End filter
m : Map
Î : First element (present height)
Í : Sort
Î : First element
à :End map
Í :Sort
Ë :Map each D
T± : Increment T (initially 0) by
Z : 0
§( : <=
XµD : X, decremented by D
:Implicit output of last element
```
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), 29 bytes
```
K_EsmghK=+Zhhd_#SmSf.AtgVKT.p
```
[Try it online!](https://tio.run/##K6gsyfj/3zvetTg3PcPbVjsqIyMlXjk4NzhNz7EkPcw7RK/g///oaEMdBSMdBbNYHQUQ0wzIAzGBQoZQUSOwqCGIaQYWNYIyQWpiY7mg2sxiAQ "Pyth – Try It Online")
### Explanation
Uses a simple greedy algorithm, always choosing the shortest present until no more fit.
```
K_EsmghK=+Zhhd_#SmSf.AtgVKT.pdQ # implicitly add dQ to the end
# implicitly assign Q = eval(input())
K_E # assign K to the second input reversed
m Q # map Q over lambda d
f .pd # filter permutations of d over lambda T
gVKT # vectorize >= over K and T
.At # true if the last two element are true (we've now filtered out orientations which don't fit in the chimney)
S # sort (this orders the orientations from shortest to tallest)
S # sort (this orders our presents shortest to tallest)
_# # filter out empty lists (avoids indexing errors)
s # sum of
m # map over lambda d
ghK # first element of K is greater than or equal to
=+Zhhd # Z, assigned to Z + first element of the first element of d
```
] |
[Question]
[
Part of [**Code Golf Advent Calendar 2022**](https://codegolf.meta.stackexchange.com/questions/25251/announcing-code-golf-advent-calendar-2022-event-challenge-sandbox) event. See the linked meta post for details.
---
As we all know, Santa comes down the chimney to deliver presents to good kids. But chimneys are normally full of smoke, and the Elves are worried about Santa's health. So they decide to blow the smoke out using an electronic air blower.
A chimney is modeled as a rectangular grid. The number in each cell represents the amount of smoke in the region. The left and right sides are walls, the top is open, and the air blower is blowing wind from the bottom.
```
||========||
|| |99| ||
||--+--+--||
|| | |24||
||--+--+--||
||36| |12||
||--+--+--||
|| | | ||
||--+--+--||
|| |50| ||
||^^^^^^^^||
```
Every second, the following happens in order. At any step, the smoke that goes outside of the chimney through the top is excluded from simulation.
1. The smoke is blown up one cell upwards.
2. The smoke diffuses to adjacent (4-way) cells (including outside).
* Let's say a cell contains `n` amount of smoke. Then, for each available direction, exactly `floor(n/5)` amount of smoke moves in that direction.
Given the initial state above, smoke will move and diffuse as follows:
```
After step 1:
||========||
|| | |24||
||--+--+--||
||36| |12||
||--+--+--||
|| | | ||
||--+--+--||
|| |50| ||
||--+--+--||
|| | | ||
||^^^^^^^^||
After step 2: (1 second passed)
||========||
||7 |4 |14||
||--+--+--||
||15|9 |10||
||--+--+--||
||7 |10|2 ||
||--+--+--||
||10|10|10||
||--+--+--||
|| |10| ||
||^^^^^^^^||
2 seconds passed:
||========||
||8 |12|5 ||
||--+--+--||
||11|6 |8 ||
||--+--+--||
||7 |10|6 ||
||--+--+--||
||4 |4 |4 ||
||--+--+--||
|| |2 | ||
||^^^^^^^^||
5 seconds passed:
||========||
||5 |1 |5 ||
||--+--+--||
||1 |4 |1 ||
||--+--+--||
|| | | ||
||--+--+--||
|| | | ||
||--+--+--||
|| | | ||
||^^^^^^^^||
```
This chimney is completely clear of smoke after 7 seconds.
## Task
Given a 2D grid of non-negative integers which represents the current state of smoke in the chimney, simulate the chimney as specified above and output the state 1 second later. You may assume that the chimney is at least 2 units wide and 2 units tall.
Standard [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") rules apply. The shortest code in bytes wins.
## Test cases
```
[[0, 99, 0], [0, 0, 24], [36, 0, 12], [0, 0, 0], [0, 50, 0]]
-> [[7, 4, 14], [15, 9, 10], [7, 10, 2], [10, 10, 10], [0, 10, 0]]
-> [[8, 12, 5], [11, 6, 8], [7, 10, 6], [4, 4, 4], [0, 2, 0]]
-> [[7, 7, 7], [8, 5, 6], [5, 6, 5], [0, 2, 0], [0, 0, 0]]
-> [[7, 4, 5], [4, 5, 4], [1, 3, 1], [0, 0, 0], [0, 0, 0]]
-> [[5, 1, 5], [1, 4, 1], [0, 0, 0], [0, 0, 0], [0, 0, 0]]
-> [[1, 4, 1], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]
-> [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]]
```
[Answer]
# [J](http://jsoftware.com/), 71 61 58 bytes
```
0(1}.$$,+[:(+/-1&#.)5<.@%~,*1=[:|@-/~$j./@#:i.@#@,)@,0,~}.
```
[Try it online!](https://tio.run/##jZBNa8MwDIbv@RXqki124ih2EqfELMN0sNPooVfj02hZe9llh8HW/PVMcRrKGIxhW9bHq0eg09itjPLtynRpGt1geoDeQAoCJBh6BcLj7vlplEydMUlE7gzLy0Ldxcj1PdrbQWSqd@bLFuWQnLC0sTmija3gVkgxnHHk0XaDsACY@43I@N@IAGDZJ3LmczZ3Xlopa/jPCXlpmbsKs94Gmv/vsP3L6xscQEMNCW2g68hMp2qgbulX1SUhQZOJov3H8Z2W55wUpKbNeQGTT7dqJr9uQ6Cqa2HR6OD7qHgA59YCGpKFHqUJRkEQrieHaKEg50AtCDUjxm8 "J – Try It Online")
[Answer]
# Python3, 301 bytes:
```
E=enumerate
def f(b):
while any(map(any,b)):
T=[]
for x,r in E(b):
for y,c in E(r):
b[x][y]=0;p=x-1
if x:
b[p][y]=c
for X,Y in(0,1),(-1,0),(1,0),(0,-1):
K=0<=y+Y<len(b[0]);b[p][y]-=c//5*K
if-1<p+X<len(b):T+=K*[(p+X,y+Y,c//5)]
for x,y,v in T:b[x][y]+=v
yield b
```
[Try it online!](https://tio.run/##RU/BjoIwED2vXzHHVoZYdN2sSI@euHLQNBwES2yCtWlYl34921I2Jk3nzXtvXmaMG@5Pvfs2dppOXOqfh7TXQa5usoOONDRfwe9d9RKu2pHH1RBfsaGBh4qL2pfuaWFEC0rDKU5EzmEbORs5aMRYC1dzdjR8TLOZUx2MUfWymeU2tiHijBcfQRhmFEmaIfMl/gzTbIkFKDkruEsuRS81aQSr6XEJS3m72ezX5WJUXZoVJjlHI82rhJdrQTyDfhyDl75PcvgKB1T5snjCX15zSvY3aKbgUUHviBAM4XBAYDVCwP5tPwPefc1Ntn0L/579jGt/xIexSg9E0ekP)
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 108 bytes
```
a=>a.map((r,y)=>r.map((c,x)=>(g=c=>p+2&&c/5*(p-y<3)+c%5*!p--+g((R=a[y-~(p>1)])?R[x+p%2]??R[x]:0)|0)(c,p=3)))
```
[Attempt This Online!](https://ato.pxeger.com/run?1=RY7BSsNAEIZfJR5aZprdNU2MWOts7x4U2mPYw7JmQyHNLkmEBIov4iWIPpRvY9IowsD__cww___-WbmXfPiw9PXaWn73XWqSWpy0B6hZjyTr2RjWjQYKMiR9GC-X5jpdgef9Q4KhWaSrK895WADsSWc9fwMv16hwt8-60C9itZtI3Ud4jnB85ilBxN_Ms3U1aMqyiAWbDQsixYKJx4lvJk5uL2Yd_y_-btILq60WttQtoGjcKYeOZIdb46rGlbkoXQGPh-cn0bT1sSqOtgc9pmuyo84dhmHWHw)
For cell (x, y), the value after function is:
```
sum(
floor(a[x,y]/5) only if (y is not 0),
floor(a[x,y+1]/5),
floor(a[x-1,y+1]/5),
floor(a[x+1,y+1]/5),
floor(a[x,y+2]/5),
a[x,y+1] mod 5,
floor(a[x,y+1]/5) only if (x is one of edge),
)
```
[Answer]
# [Pip](https://github.com/dloscutoff/pip), ~~125~~ 129 bytes
```
@<($+(({(FL1ZGc*l)RA_bMS[a-1;a+1;a+c<c*l&a+c|a;a-c>=0&a-c|a]}MU{[a;b//5;h:#\a+1]}ME(k:WV(@>aAL2ZG(l:#@a))))AE(_-4*(_//5)Mk))UWh)
```
[Try It Online!](https://dso.surge.sh/#@WyJwaXAiLCIiLCJAPCgkKygoeyhGTDFaR2MqbClSQV9iTVNbYS0xO2ErMTthK2M8YypsJmErY3xhO2EtYz49MCZhLWN8YV19TVV7W2E7Yi8vNTtoOiNcXGErMV19TUUoazpXVihAPmFBTDJaRyhsOiNAYSkpKSlBRShfLTQqKF8vLzUpTWspKVVXaClcbiIsIiIsIltbMDs5OTswXTtbMDswOzI0XTtbMzY7MDsxMl07WzA7MDswXTtbMDs1MDswXV0iLCItcCAteCJd)
I feel like there should be a much neater and golfier way of doing this in pip, but I couldn't figure it out
Edit: forgot to delete the temporary last row
[Answer]
# JavaScript (ES2020), 129 bytes
```
m=>[...m,m[0].fill(0)].map((r,y,m)=>r.map((v,x)=>[-1,s=0,1,2].map(d=>s-=1/(V=m[y+d%2]?.[x+~-d%2])?~(V/5)-~(v/5):0)|v+s)).slice(1)
```
[Attempt This Online!](https://ato.pxeger.com/run?1=RY7NSsNAFIX3fYq7Ee4lk-kk2tJaJt270IXQzZBFaTIlkMnITA0NasA3cO8miD6Ub2N-FOHC-Q7nwD3vn5XN8u5Dy6_Hkw5X369GJopzbphRIuW6KEsUlHKzf0B0rGGGZOImW7Nzb1QYMS8Fi1g81TKZ-FBGc9xJo5ogu4jTLVfnoA0HpG2Lu_mCwhbrXq4FPdeBJ-K-LA45RvQ75E1bhwYkKCUYrNcMRMpg4P7iq4Evl6OJ4v_gr7MYOd2A4d6aHB3IBNzE9cA10YbgaQZwsJW3Zc5Le8Sb-7tb7k-uqI6Fbsb3Gg313dnLtKvrJv0B)
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), ~~46~~ 42 bytes
```
IΦE⊞OθE⌊θ⁰Eι⁺λΣEθΣEν∧⁼¹⁺↔⁻κξ↔⁻μρ⁻÷∧ξπ⁵÷λ⁵κ
```
[Try it online!](https://tio.run/##XU9LawIxEL73V8xxAiP4BvG02BY8CFKPyx5SN2BoknXzWPz3aWbVCg0J870yk5wv0p87aXI@yOuus1a6Fqu4d626YU8wFXy2b8cULsy/1KB8UHjQTttksReCXa9dxJ0MET@1icpj6cZxLprgaFJAQ3AqNx7OEzqCqoz86JM0AWePbPUdOpPiOKfQG8GPKC/5J1sCL1i/072L73rQrcIrwarIL8Gw8LfGbmKbc13XU4LNpvyxIWBc9nzJeLEeyWz@Mp6Z1YibJk8G8ws "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
θ Input array
⌊ Minimum (any) row
E Map over cells
⁰ Zero
⊞O Push to
θ Input array
E Map over rows
ι Current row
E Map over cells
λ Current value
⁺ Plus
θ Input array
E Map over rows
ν Inner row
E Map over cells
¹ Literal integer `1`
⁼ Equals
κ Outer row index
⁻ Minus
ξ Inner row index
↔ Absolute value
⁺ Plus
μ Outer cell index
⁻ Minus
ρ Inner cell index
↔ Absolute value
∧ Logical And
ξ Inner row index
∧ Logical And
π Inner cell value
÷ Integer divided by
⁵ Literal integer `5`
⁻ Minus
λ Outer cell value
÷ Integer divided by
⁵ Literal integer `5`
Σ Take the sum
Σ Take the sum
Φ Filtered where
κ Row index is not zero
I Cast to string
Implicitly print
```
For instance, in the example of `[[[0, 99, 0], [0, 0, 24], [36, 0, 12], [0, 0, 0], [0, 50, 0]]]`, when the outer loop is processing the `24` and the inner loop is processing the `12`, the cells are found to be adjacent, so `12/5=2` is diffused into the outer cell but `24/5=4` is diffused out, while when the inner loop is processing the two zero cells also adjacent to the `24` there is nothing to diffuse in while `4` still diffuses out each time. This results in a net total of `24+2-4+0-4+0-4=14` in that cell.
[Answer]
# Python3 + scipy, 173 bytes (broken)
To be clearest, this solution doesn't *exactly* work, but its so close to working and uses a different method than the other answers now for potentially a big byte savings, so I decided to post it to see if someone can get inspired to get it over the line.
```
from scipy.signal import convolve2d as c
import numpy as n
g=lambda i:c(n.vstack([[0,0,0],i[1:],[0,0,0]]),[[0,1/5,0],[1/5,1/5,1/5],[0,1/5,0]],'same','symm')[1:].astype(int)
```
[Run online at onecompiler.com](https://onecompiler.com/python/3yrvzz7f7)
### Output
Given the first test case:
```
[[ 0 99 0]
[ 0 0 24]
[36 0 12]
[ 0 0 0]
[ 0 50 0]]
```
This outputs:
```
[[ 7 4 12]
[14 9 9]
[ 7 10 2]
[10 10 10]
[ 0 10 0]]
```
Instead of the expected:
```
[[ 7 4 14]
[15 9 10]
[ 7 10 2]
[10 10 10]
[ 0 10 0]]
```
### Explained
```
import scipy
import scipy.signal
import numpy as np
# We can solve this with matrix convolutions and row shifts in fewer operations (and hopefully less bytes)
# than iteration.
def g_ungolfed(i):
# 1. pad arrays with 0-rows on both y-sides
## Slicing the first row off lets smoke 'escape' out of the top during the initial shift
## Padding the first row with a temp row lets smoke 'escape' out the top during dispersion.
## Padding the last row lets us shift the smoke up 1 row later on
i_padded = np.vstack([[0,0,0],i[1:], [0,0,0]])
print("padded", i_padded)
# 2. Run the convolution to do the smoke pattern
## define a convolution kernel to follow the 20% smoke dispersal pattern --
k = [
[0,1/5,0],
[1/5,1/5,1/5],
[0,1/5,0],
]
## mode="same" keeps the output matrix in the same dimensions as the i_padded input
## boundary="symm" handles the correct behavior for the smoke-fill pattern on the left-right boundaries of the chimney
# The floor(n/5) integer division isn't respected here which is why the results are wrong.
dispersed = scipy.signal.convolve2d(i_padded, k, mode="same", boundary="symm")
# 3. Slice off the temp top row
print("intermediate", dispersed)
dispersed_shifted = dispersed[1:]
# 4. cast the results to int
return dispersed_shifted.astype(int)
```
[Answer]
# [Python 3](https://docs.python.org/3.8/), 149 bytes
```
lambda m:[o:=[[0]*len(m.pop(0))],[[n[1]%5+sum(i//5for i in n)for n in zip(x,y,y[1:]+[y[-1]],[y[0]]+y[:-1],z)]for x,y,z in zip(o+m,m+o,m[1:]+o+o)]][1]
```
[Try it online!](https://tio.run/##RY7NasMwEITvfQpdCtpqE9tJHGKBn2S7B4XGRGD94Lg08su7kiEE9vANO7M7Mc334I@XOK1D/72Oxl1/jHCagu6Jav4ab166fQxR1gCMRJ4a/mzV49dJW1XtECZhhfXCQ0FfcLFRPjFhokazokS7hnM05XusEukscQEu/mJbXpmgHDoV0G25oAIw52@rKVVQdB2KmlEUznM4FT6eN9Ec3ouXp92YP/7udrwJ45MspQ0SA@g4WT9Lo/tBGoD1Hw "Python 3.8 (pre-release) – Try It Online")
] |
[Question]
[
>
> **Note:** This is a more limited version of a [challenge from 2014](https://codegolf.stackexchange.com/questions/40150/find-a-representative-submatrix) that only received one answer. That challenge required participants write two programs; this challenge is essentially one half of that. The text here is original, but credit for the idea goes to [Matthew Butterick](https://codegolf.stackexchange.com/users/31003/matthew-butterick), who is no longer active on the site.
>
>
>
Given a matrix of integers \$M\$, find the smallest (by number of elements) submatrix \$N\$ that contains at least one of every element present in \$M\$. (A [submatrix](https://mathworld.wolfram.com/Submatrix.html) is a “matrix formed by taking a block of the entries … from the original matrix.”)
$$
M = \begin{bmatrix}9 & 0 & -4 & 5 & 1 & -4\\
3 & -2 & 5 & 9 & -7 & 1\\
\color{blue}{0} & \color{blue}{-7} & \color{blue}{-2} & \color{blue}{5} & 9 & 5\\
\color{blue}{9} & \color{blue}{9} & \color{blue}{5} & \color{blue}{-4} & 1 & 9\\
\color{blue}{-4} & \color{blue}{1} & \color{blue}{8} & \color{blue}{3} & -4 & -4\end{bmatrix}
$$
In the above example the submatrix \$N\$, shown in blue, has at least one of every element in \$M\$, and there is no smaller submatrix with that property. Note that some elements (i.e. \$8\$) do not exist outside of \$N\$ and some elements in \$N\$ are duplicated (i.e. \$9\$).
## Input
Input will consist of a matrix \$M\$ in any convenient format. It will be at least \$1\times 1\$.
## Output
Output may be either of:
1. The submatrix \$N\$ in any convenient format. If it's returned as a 1-dimensional list its dimensions must also be given.
2. The position of \$N\$ within \$M\$, given either as the row and column positions of two of its corners diagonal from each other, or as the row and column position of one of its corners and its width and height. The answer should indicate which corners are given.
If multiple submatrices are tied for smallest representative submatrix, any one may be returned, or all may be returned.
## Rules
* [Default I/O rules](https://codegolf.meta.stackexchange.com/questions/2447/default-for-code-golf-input-output-methods/) and [standard rules](https://codegolf.meta.stackexchange.com/questions/2419/default-for-code-golf-program-function-or-snippet/2422#2422) apply. [Standard loopholes](https://codegolf.meta.stackexchange.com/questions/1061/loopholes-that-are-forbidden-by-default) are forbidden.
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"); shortest solution in bytes wins.
## Test cases
The below test cases each show one possible correct output, but not all possible valid outputs.
```
Input
3 3 -9 0 3
3 3 1 -8 1
0 0 0 8 -8
3 8 8 0 3
0 8 8 0 -9
Output
-8 1
8 -8
0 3
0 -9
```
```
Input
3 6 -8 -1
-8 3 1 -2
-8 -2 -1 -2
Output
6 -8
3 1
-2 -1
```
```
Input
-8 -7 -4 7 -7
-7 -6 7 -7 -7
8 -3 -8 -6 -4
-4 5 -7 7 8
-8 7 8 -4 -3
Output
-3 -8 -6 -4
5 -7 7 8
```
```
Input
-8 7
-2 -4
Output
-8 7
-2 -4
```
[Answer]
# [Python 3](https://docs.python.org/3/), ~~275 261 231 229 227 220 218~~ 201 bytes
```
def f(m):
z,o,a,r=m,len,sum,range
for i,k,j,l in product(*(r(o(m[0])),r(o(m)))*2):
s=[q[i:j+1]for q in m[k:l+1]];t,f=a(s,[]),a(z,[])
if{*f}=={*t}and o(t)<o(f):z=s
return z
from itertools import*
```
[Try it online!](https://tio.run/##jZDBcoIwEIbveYq9mdBlBtEq0vIklANTSYtCgiEeiuOzU5Yg6s3Dzu782f/fD5o/@6vVqu/3hQTJaxEz6FBjjiapsSoUtucaTa5@CgZSGyjxiAesoFTQGL0/f1vuccM1r9MgEwLHUQjhhRQFbZKe0jI@vC0zcp/IV6fHuBqE7MOiTHLeYpoJzHlHffCU8uLJa5JcPHvN1R40t@JTcyniLmkZmMKejYKOSaNrKG1hrNZVC2XdaGO9vjGlGqAkZ2kKKwQqfzf0gOYMGcwyLIeniLqTg2mLKqKn@3Y01UNI8Cz7uyxjAqEtmmTxpRaCMYcyDw9MG3fYd4dHhhtPOEt@SBuj9FLy6NkOtR6iqG9dFI2bmzTL4xeuJg7iWbttMr@7TXJAdEfcTv9lTc7XmWDiCMcjz7b@Hw "Python 3 – Try It Online")
* -14 thanks to Neil
* -30, -2, -17 thanks to okie
Input/output as nested lists.
# [Python 3](https://docs.python.org/3/) + [`golfing-shortcuts`](https://github.com/nayakrujul/golfing-shortcuts), ~~228 198 190 186~~ 164 bytes
```
def F(M):
Z=M
for I,K,J,L in Ip(*(r(l(M[0])),r(l(M)))*2):
S=[Q[I:J+1]for Q in M[K:L+1]];T,F=s(S,[]),s(Z,[])
if{*F}=={*T}and l(T)<l(F):Z=S
p(Z)
from s import*
```
* -30, -22 thanks to okie
Makes use of the much cheaper `s.Ip` instead of `itertools.product`.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 17 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
ZẆ$⁺€ẎFQL;LN$Ʋ$ÞṪ
```
A monadic Link that accepts the matrix as a list of lists and yields the/a smallest sub-matrix which contains all of the distinct values.
**[Try it online!](https://tio.run/##y0rNyan8/z/q4a42lUeNux41rXm4q88t0Mfax0/l2CaVw/Me7lz1////6GgFYx0FENa1BNIGIHYslw5cVMEQKGMBosGiBlA1IGwBkoGrtYBihAkGqKK6lrFcsQA "Jelly – Try It Online")**
### How?
```
ZẆ$⁺€ẎFQL;LN$Ʋ$ÞṪ - Link: rectangular matrix, M
$ - last two links as a monad - f(X=M):
Z - transpose
Ẇ - all non-empty contiguous sub-lists (includes X itself (transposed))
€ - for each (such "strip" of columns):
⁺ - repeat the last link - i.e. f(X=strip)
Ẏ - tighten (to a flat list of the sub-matrices)
Þ - sort (these submatrices, S) by:
$ - last two links as a monad - g(S):
F - flatten (S) -> Elements
Ʋ - last four links as a monad - g(Elements):
Q - deduplicate -> distinct elements
L - length -> number of distinct elements
$ - last two links as a monad - h(elements):
L - length -> total number of elements
N - negate -> -1 * total number of elements
; - concatenate -> [number of distinct elements, -1 * total number of elements]
Ṫ - tail
```
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 51 bytes
```
FLθF⊕ιFL⌊θF⊕λ⊞υE✂θκ⊕ι¹✂νμ⊕λ≔Φυ¬⁻ΣθΣιυ≔EυLΣιθI§υ⌕θ⌊θ
```
[Attempt This Online!](https://ato.pxeger.com/run?1=bVDdSsMwFMbbPcVhVymcwqYbrng1BoOBk8EuSy9qm61hbWrzI76LN7tQ9JX0aTxpsunAi5B8P_nynbx-FlWuijavj8d3a3bx7PsKdq0Cds_l3lSsiyKPV7JQvOHS8JKJExlMayFFYxtn_sddE7mxumIWYZ0_sW0tCs46hAPCZSrCmJbXJUJzqVNOFN0N5lqLvWRLURuuXOZDa1wDq9m270AJtAvnRrC_N9zbZA-dTx6EjiwbJaRhi1wbNjcrWfIXZ10KWbqif-ejCm_6sdDhuz7SYfxcD7MvnaYpJAgjjCcIUxqFDhkOAFK4wfi65xKMb0kJ9MihswLTQCce9TljOns6oBm6tInLzjJf4Qc) Link is to verbose version of code. Explanation:
```
FLθF⊕ιFL⌊θF⊕λ
```
Loop over all of the possible submatrices.
```
⊞υE✂θκ⊕ι¹✂νμ⊕λ
```
Extract the submatrix to the predefined empty list.
```
≔Φυ¬⁻ΣθΣιυ
```
Filter out those submatrices that are not representative.
```
≔EυLΣιθ
```
Get the sizes of all the submatrices.
```
I§υ⌕θ⌊θ
```
Output the matrix with the smallest size.
Note that Charcoal outputs each element on its own row with rows double-spaced from each other.
[Answer]
# JavaScript (ES10), 160 bytes
```
f=(m,x=s=g=m=>new Set(q=m.flat()).size,y)=>m.map((r,j)=>r.map((_,i)=>1/x?g(m)>g(M=m.slice(y,j+1).map(r=>r.slice(x,i+1)))|(v=q.length)>s||(s=v,o=M):f(m,i,j)))&&o
```
[Try it online!](https://tio.run/##RU7LbsIwELz7K1YcwCuS8CyPVk5P7Y1euCJVaXCCUR5gGwot/Xa6tg9IK2tmdnY8@@ycmVyrg42bdivv90LwOroII0pRi7SR37CWlh9FnRRVZjliYtSPjK4o0jqpswPnOtoT0YF8RorIaHB5LXmNaclXdGkqlUt@jfb9EXqbdv6gXiJFKuKNn8UxqWRT2h2m5nbjRpyjVqzwuaBGij5B7Hbbu5bHk9KS9wrTw0TLbPuuKrm@NjkfYmLbtdWqKTn1PFTK8s6m2TQdTIpWv2X5jhsQKfwygEpaqEGAeRg7oZ23GIKW/IPNuj8ow@LjVH9JjfhC53nbmLaSSdWWnAo68Q/vMAGaeAkwJMAChRHEC3qZE8MsSPHbhZ9gHj5ovGR@PXOX8Yi5@xA0djgek@iwJ3OIpwD0zpnDs4Addf9MfAQFTZmzPbkVGWDhQ@e@y5RsLHDmsqf/ "JavaScript (Node.js) – Try It Online")
### Commented
```
f = ( // f is a recursive function taking:
m, // m[] = input matrix
x = // x = current column
s = // s = best score
g = m => // g = helper function taking a sub-matrix m[],
new Set( // turning into a set ...
q = m.flat() // ... a flattened array q[] made from m[]
).size, // and returning its size
y // y = current row
) => //
m.map((r, j) => // for each row r[] at index j in m[]:
r.map((_, i) => // for each cell at index i in r[]:
1 / x ? // if x is defined (2nd pass):
g(m) > // if the number of distinct values in m[]
g( // is greater than those of
M = // the sub-matrix M[]
m.slice( // located between (x, y) and (i, j)
y, j + 1 // built by using slices of the original
).map(r => // matrix
r.slice( //
x, i + 1 //
) //
) //
) | // or
(v = q.length) // the size v of the sub-matrix
> s // is greater than the current best size,
|| // then do nothing
(s = v, o = M) // otherwise, update the solution
: // else (first pass):
f(m, i, j) // do a recursive call with (x, y) = (i, j)
) // end of inner map()
) && o // end of outer map(); return the solution
```
[Answer]
# [Brachylog](https://github.com/JCumin/Brachylog), 13 bytes
```
cd;Lcpġ.&s\s\
```
[Try it online!](https://tio.run/##SypKTM6ozMlPN/r/PznF2ie54MhCPbXimOKY//@jo411zHTiLXTiDWN1ooG0sY6hTrwRhB1vBBQG8WL/RwEA "Brachylog – Try It Online")
Really slow.
### Explanation
We first get the set of distinct elements of the matrix. We know that the submatrix contains at least these elements: we thus append an unknown amount of additional elements (Brachylog will try in increasing amounts until it finds a solution), we then permute them (until it finds a solution) and group them in sublists of equal lengths (trying different lengths until it finds a solution). We finally constrain this constructed sublist to actually be a sublist of the input.
Since what we’re doing is basically constructing all possible matrices which contain at least all distinct elements of the original one, and verify afterwards that it is a real submatrix of the input, you can guess why it’s really slow.
```
c Concatenate the matrix into a list
d Remove duplicate values: we get elements that must be in the submatrix
;Lc Append an unknown list L to this list
p Try any permutation
ġ. Try any grouping of elements into sublists of equal lengths; this is the output
&s Take a subset of consecutive rows of the input
\ Transpose
s Take a subset of consecutive columns of this subset
\ Transpose
This must also be the output (i.e. the output is a submatrix of the input)
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~34~~ 32 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
˜©āãε`"€üÿø€üÿ".V}€`€`Σ˜g}.Δ˜®åP
```
[Try it online](https://tio.run/##yy9OTMpM/f//9JxDK480Hl58bmuC0qOmNYf3HN5/eAeUoaQXVgtkJoDwucWn56TX6p2bAtSw7vDSgP//o6MtdQx0dE10THUMgVSsTrSxjq4RkGepo2uuYwjkG4AYUCFTIN8SRIN0GOpYArlghoWOMUgEqD/2v65uXr5uTmJVJQA) or [verify all test cases](https://tio.run/##XY/PSoRQFMb3PYW4PlfU2@g1iCHoAWZTBCKMlYQw6DBzDQxc1DO0nJ20CKJVE1HBgLYb8CF6ETvn6hgMl@v5vvPn57npMryMo/ZWnywiKXM2X8SJjK61OJln8kjTIbfqz2ZtN29GVRbVFxzoJ1cyC2dDxzj/z6WZ3CVPz9rtqnr@ua/LZn2xnOq/Dy/1d72pP3qhG@cFyindptyubgqjecSR1/pp0hbH@wsNaNhbqHoft77ve2ACO4QRWBgC8DkwG50HzAULvUmiT43QexRpwgIPrRICOGVwPgDNRwRa4nLF44QWPYyOQKsqAk/XZfaaeTuEQzOMhpjoEHancRemnGqkhEs/x49LDRgdZTqPZa5ITvc89VQsuiA6nEvr4O584CmMrV4TtIwlKZuFd/kf).
**Explanation:**
Step 1: similar as [my 05AB1E answer](https://codegolf.stackexchange.com/a/255234/52210) for the [*Find the box by its corners* challenge](https://codegolf.stackexchange.com/questions/255133/find-the-box-by-its-corners), get all possible blocks from the input-matrix:
```
˜ # Flatten the (implicit) input-matrix
© # Store it in variable `®` (without popping)
ā # Push a list in the range [1,length] (without popping the list)
ã # Create all possible pairs of this list with the cartesian product
ε # Map over each pair:
` # Pop and push them both separated to the stack
"€üÿø€üÿ" # Push this string, where both `ÿ` are filled with the two values
.V # Evaluate and execute it as 05AB1E code:
€ # Map over each row of the (implicit) input-matrix
üA # Convert it into overlapping lists of size A
ø # Zip/transpose; swapping rows/columns
€ # Map over each the list of lists
üB # Convert it into overlapping lists of size B
} # Close the map
€`€` # Flatten two levels down so we have a list of blocks of various sizes
```
Step 2: Find the smallest valid AxB block from this list and output it:
```
Σ # Sort all AxB blocks by:
˜ # Flatten the matrix to a single list
g # Pop and push its length to get the amount of elements in this block
}.Δ # After the sort-by: find the first/smallest block which is truthy for:
˜ # Flatten the current AxB block
® # Push the flattened input-list from variable `®`
å # Check for each value of the input-list if it's in the block-list
P # Check if this is truthy for all of them
# (after which this smallest found block is output implicitly as result)
```
[Answer]
# [J](http://jsoftware.com/), 53 bytes
```
<(0{]#~a:=-.&,&.>)[:(/:#@,@>)@,<<;._3&>~],@{@;&(#\)|:
```
[Try it online!](https://tio.run/##VU7LasMwELzrKyYxyBZIql/xQ7GNoNBTT72mpoSQUHrpoe4pJb/u7kqFtrBazeyMZvW29htXzM3G9Wkqtja9YHRIoZHD0TEW90@PD@uQ5dc5uR3daKzU0k7q4LI7l3jtJ@X1MOztSyWn26z91e9lljyrL7cqIZbzxzJaHBzOp9d3vi/YWjn50@dCb0pEC6/LBSpQmR5EUf1QFDAddcHDWB1NgtqFiub8l5peqL@55Gw4xBSCo2JmydiUNGT8z89CC1MD1FvBuImYKa@vQhyF1oJtO5bIgC4saMMXa7IJtX4D "J – Try It Online")
[Answer]
# [Perl 5](https://www.perl.org/), 193 bytes
```
sub f{($_,$r)=(@_,\"$_[0]");$u=sub{my%h;@h{pop=~/\S+/g}=();keys%h};&$u($_)<&$u($$r)or$$r=@{[/\S+/g]}<@{[$$r=~/\S+/g]}?$\_:$$r,f($_,$r)for s/^\S+\s*//gmr,s/\s+\S+$//gmr,s/\n.*$//r,s/^.*\n//r;$$r}
```
[Try it online!](https://tio.run/##TVLRbtpAEHzufcXKOooN5xwBAg7GCe@VmofkDYOlVjagBNu1QSpynV@ns2cHkKz17OzMjk7aPC4@Hs7n8viLksqWkZKFE9iLSIWWjJaDleX48hhgXO1Pna2/2FZ5lgefOnzt600d2I7/Hp/Kzrb2v8sj/M7c/LElK1CDRbVstKt6DszU5xfxLKMZCJW0uUlWUKnXmIZlT@vNvlClDss@CHlp07seGobru16YAvrYUZ9htsXSGhGNyH0kGgAI09E9uR6qGBgWnweCZ575jHJw7dxHSxAFT4KsxmfkrQrDlRJN0IT3uveCVU3MkLE7BImKLWbJpE2DkCetn4VTcsdEqFPBeNJgbjEcme0wjwWrHniCOXkmb2peMYbsK@bWcBVf02hq8scX/Q21Ek6FNxPtT7bcpbkiGf/NHQpoISO/nZDcZAdQiZE4DZ0Xu/SQWB13UhKBnhGgB0xYEP8@cD8ccg8zmjJMLSW@fezS2G4y4j/UdBA49Ezd7L1LM@r@fHmjlx/di5gzFV2N6sbmi1rwCTPTHChfiv6nN4WBZV9Ti9d8W3Pd8rilJ43r@Q8 "Perl 5 – Try It Online")
] |
[Question]
[
What is the shortest way to convert a string containing integers separated by spaces to a list of integers?
* input : "-3 1 5 8 10"
* output : [-3, 1, 5, 8, 10]
I regularly face this situation and I wanted to know if there is a better way than (24 bytes):
```
list(map(int,s.split()))
```
[Answer]
Using *map* is way shorter than any of the ways I mentioned. You should do that.
Instead of calling `list(...)`, you should use `[*...]` (21 bytes):
```
[*map(int,s.split())]
```
Or even better, if you switch to python 2, `map` will always return a list. (18 bytes):
```
map(int,s.split())
```
[Try it online!](https://tio.run/##K6gsycjPM/pfbKuka6xgqGCqYKFgaKDElWMb8z83sUAjM69Ep1ivuCAns0RDU/N/QRFQQCNHkwvCKKksSAXyNP8DAA "Python 2 – Try It Online")
Original Post:
---
The straightforward way is going to be 26 bytes
```
[int(n)for n in s.split()]
```
[Try it online!](https://tio.run/##K6gsycjPM/5fbKuka6xgqGCqYKFgaKDElWMb8z86M69EI08zLb9IIU8hM0@hWK@4ICezREMz9n9BEUguR/M/AA "Python 3 – Try It Online")
However, if a tuple is acceptable instead of a list, we could use a trick to shave one byte off leaving us with 25 bytes
```
eval(",".join(s.split()))
```
[Try it online!](https://tio.run/##K6gsycjPM/5fbKuka6xgqGCqYKFgaKDElWMb8z@1LDFHQ0lHSS8rPzNPo1ivuCAns0RDU1Pzf0FRZl6JRo7mfwA "Python 3 – Try It Online")
This can be shortened even more with the **replace** function (24):
```
eval(s.replace(' ',','))
```
[Try it online!](https://tio.run/##K6gsycjPM/5fbKuka6xgqGCqYKFgaKDElWMb8z@1LDFHo1ivKLUgJzE5VUNdQV0HCDU1/xcUZeaVaORo/gcA "Python 3 – Try It Online")
and even more with iterable unpacking (22):
```
eval(s.replace(*" ,"))
```
[Try it online!](https://tio.run/##K6gsycjPM/5fbKuka6xgqGCqYKFgaKDElWMb8z@1LDFHo1ivKLUgJzE5VUNLSUFHSVPzf0FRZl6JRo7mfwA "Python 3 – Try It Online")
If you truly need a list, you can wrap it in `[*...]`. This is still shorter than the straightforward way by 1 byte:
```
[*eval(s.replace(*" ,"))]
```
] |
[Question]
[
## Introduction:
In Dutch, the words leading and suffering, being 'leiden' and 'lijden' respectively, are pronounced the same way. One is written with a "short ei", and one with a ["long ij"](https://en.wikipedia.org/wiki/IJ_(digraph)), as we Dutchman would say, but both 'ei' and 'ij' are pronounced [ɛi].
## Challenge:
Given a list of numbers, determine which (if any) are leading, and which (if any) are suffering.
A leading number is:
* A positive number
* Has at least four digits
* Is in the highest 50% of the list in terms of value
* Is still in the highest 50% of the list in terms of value, if it's 3rd digit is replaced with its 2nd digit, and it's 2nd digit-position is filled with a 0 (i.e. `1234` would become `1024`)
A suffering number is:
* A negative number
* Has at least four digits
* Is in the lowest 50% of the list in terms of value
* Is still in the lowest 50% of the list in terms of value, if it's 3rd digit is replaced with its 2nd digit, and it's 2nd digit-position is filled with a 0 (i.e. `-4321` would become `-4031`)
**Example:**
Input: `[5827, 281993, 3918, 3854, -32781, -2739, 37819, 0, 37298, -389]`
Output: leading: `[5827, 281993, 37819, 37298]`; suffering: `[-32781, -2739]`
*Explanation:*
If we sort and split the numbers into two halves, it would be:
```
[[-32781, -2739, -389, 0, 3798], [3854, 3918, 5827, 37819, 281993]]
```
There are only two negative numbers with at least four digits: `[-32781, -2739]`. Changing the digits as described above wouldn't change their position, so they are both suffering numbers.
For the largest halve, all the numbers have at least four digits: `[3854, 3918, 5827, 37819, 281993]`. Changing the digits as described above would change some of their positions however. The `3854` would become `3084`, putting it below `3798` which is in the lowest 50%, so `3854` is not a leading number in this list. The same applies to `3918` which would become `3098`, also putting it below `3798`. The other three numbers are leading, as `5827` which would become `5087`, which is still above `3798` and is in fact still at the same index of the sorted list. So `[5827, 37819, 281993]` are the leading numbers.
## Challenge rules:
* I/O is flexible. Input-list can be a list of integers, 2D digit lists, list of strings, etc. Output can be a list of lists of integers, two separated lists, two strings, both printed to STDOUT, etc.
* When determining if a number is leading/suffering, we only look at its new position of that number if only its digits are changed accordingly, not after we've applied the modifications to all numbers.
* We output the original numbers, not the modified ones.
* The numbers in the leading and suffering output-lists can be in any order.
* If the size of the input-list is odd, the number at the center doesn't belong to either halve.
* Numbers are guaranteed to remain unique after its modification. So a list like `[0, 1, 1045, 1485]` isn't a valid input-list, since `1485` would be equal to `1045` after it's modification.
## General rules:
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so shortest answer in bytes wins.
Don't let code-golf languages discourage you from posting answers with non-codegolfing languages. Try to come up with an as short as possible answer for 'any' programming language.
* [Standard rules apply](https://codegolf.meta.stackexchange.com/questions/2419/default-for-code-golf-program-function-or-snippet/2422#2422) for your answer with [default I/O rules](https://codegolf.meta.stackexchange.com/questions/2447/default-for-code-golf-input-output-methods/), so you are allowed to use STDIN/STDOUT, functions/method with the proper parameters and return-type, full programs. Your call.
* [Default Loopholes](https://codegolf.meta.stackexchange.com/questions/1061/loopholes-that-are-forbidden-by-default) are forbidden.
* If possible, please add a link with a test for your code (i.e. [TIO](https://tio.run/#)).
* Also, adding an explanation for your answer is highly recommended.
## Test cases:
```
Input: [5827, 281993, 3918, 3854, -32781, -2739, 37819, 0, 37298, -389]
Output: leading: [5827, 281993, 37819, 37298]; suffering: [-32781, -2739]
Input: [-100, 472, 413, -1782]
Output: leading: []; suffering: [-1782]
Input: [-1234, -1235, -1236, 1234, 1235, 1236]
Output: leading: [1234, 1235, 1236]; suffering: [-1234, -1235, -1236]
Input: [-1919, -1819, -1719, -1619, -1500, -1444, 40, 4444, 18]
Output: leading: [4444]; suffering: []
Input: [-1004, -1111, -1000]
Output: leading: []; suffering: [-1111]
Input: [-1004, -1111, -1010, 1000]
Output: leading: [1000]; suffering: [-1111]
Input: [1000, -1000]
Output: leading: [1000]; suffering: [-1000]
Input: [1000, -5000, 4000]
Output: leading: [4000]; suffering: [-5000]
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), ~~27~~ ~~24~~ ~~23~~ ~~22~~ 21 bytes
```
(‚εÅmyεD1è0šāǝ}‹y*₄@Ï
```
[Try it online!](https://tio.run/##yy9OTMpM/f9f41HDrHNbD7fmVp7b6mJ4eIXB0YVHGo/PrX3UsLNS61FTi8Ph/v//o00tjMx1FIwsDC0tjXUUjC0NLYCkhamJjoKusZG5hSGQNjI3tgQKAjlAygDEMrK0AMlbWMb@19XNy9fNSayqBAA)
[Answer]
# [Python 2](https://docs.python.org/2/), ~~119~~ ~~118~~ ~~111~~ 107 bytes
```
lambda a:[[n for n in a if sorted(a)[::d][~len(a)/2]*d<int('0'.join(`n*d`[:2])+`n*d`[3:])>999]for d in-1,1]
```
[Try it online!](https://tio.run/##fY7BTsMwDIbvPIVva0cDsZMuSQW8SIi0oqxa0Uin0gsXXr04izRpCJGDP/u3/Tvnr@U4JVqH59f11H@8xR76zvsEwzRDgjFBD@MAn9O8HGLV177rYvDfp0Pi4pHCNj6Naak2cvPwPo2p2qdt3PuOQn1fUtWF@sU5F7JhZEOBDYb1PPMaDJVvLZkGyKJzqgHl0HK0rW5AKDIWmWSUY5ELhswZOZv71oX67uokUHJTG@KA7CXQWLodIJV9GW3BroGiFSkrtwsunxRoC0zBrqDN5wRqzfs6X75kaH//6XKSX4aU8t82ss9fQ1d5/QE "Python 2 – Try It Online")
Outputs as `suffering, leading`.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 30 bytes
```
,NµD2ị;0Ʋ2,3¦ḌƊ>ẠɗƇÆṁ;999Ɗ)N2¦
```
[Try it online!](https://tio.run/##y0rNyan8/1/H79BWF6OHu7utDY5tMtIxPrTs4Y6eY112D3ctODn9WPvhtoc7G60tLS2PdWn6GR1a9v9w@9FJD3fO@P8/WtfQ0tBSR0HX0AJCmUMoMwhlamAAokxMTHQUTIBMEzDL0AIoaGxpaB4LAA "Jelly – Try It Online")
Given the length of [Grimy’s 05AB1E answer](https://codegolf.stackexchange.com/a/186145/42248), I’m sure this can be golfed better, but here it is.
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 162 bytes
```
a=>[(g=i=>a.filter(n=>n*i>999&(h=t=>a.reduce((a,c)=>a+(c!=n&i*c<i*t(n)),0)>=a.length/2)(x=>x)&h(m=x=>x<0?-m(-x):x>999?m(x/10)*10+x%10:x-x%100+x/10%10)))(1),g(-1)]
```
[Try it online!](https://tio.run/##hVLBcpswEL3zFeohHsmRCBIQpDgip34Fw4Eh2KaDIQNyh0yn3@7uirqJW6fhoLf79r2nZeBb9b2a6rF9caIfnpvT1p4qmxd0Z1ubV@G27Vwz0t7m/brNjTErurcOJ2PzfKwbSiteM@hvaf3F9qt2XT@2a0d7xnjEcluFXdPv3P5OMTrbfGarPT1YrB6jJ3GgYmYPM@Y@Heh8JyO2ltHtfCOjh1kgQAMsFIwxKhnfUSFZedoEXeOIayY3EUuKoChSrTJOlJbGxJzERmo4dZpwImKVaQmostgACQ1AhJUyGufalDz4O2GReU3JSXGRUoIe7hSwHydJpuCQ4BEy0wqjvME3Z6GKcROAdIF7ThZuoZBB478cuWb@E2twRyH1AtkC9wukuJyQSQLmBPf0ldR4D9aY/e5F/BXwIERR9PYa8HwkkxB7Fi94aUDuXd6bBIsLSeoh@S1MzsLUC4NyE/gPPg2jg@9dEZuTKsSO0pm/wv83i1cGIv9HhNth/FrVe4odSn8EhKB9OLqXIwZs/aiISvAQUg/9NHRN2A27D3l/lx/Kkl2fLulo/o9bfeK@lg7ET7Y5/QI "JavaScript (Node.js) – Try It Online")
Anonymous function that take an array of numbers as input and outputs a 2-element array as output. The first element in the output array is an array of leading numbers, the second element in the output array is an array of following numbers.
```
// a: input array of numbers
a=>
// begin output array
[
// define a function g with input i
// when i is 1, generate leading
// when i is -1, generate following
(g=i=>
// function g returns a subset of a,
// use filter() to select elements
a.filter(n=>
// n must be 4 digits and explicitly
// positive or negative depending
// on whether we are calculating
// leading or following numbers
n*i>999&
// function h determines whether
// the current number is in the
// larger or smaller half,
// depending on whether we are
// calculating the leading or
// following numbers.
// argument t defines a
// transformation that should
// be applied to th current number
(h=t=>
// use reduce() to count the
// number of numbers greater or
// less than the transformed
// current number
a.reduce((a,c)=>
// add the current total to...
a+
// either 0 or 1 depending on
// whether the transformed
// current number is in the
// opposite group (leading vs
// following
(c!=n&i*c<i*t(n)),0)>=
// are at least half in the
// opposite group?
a.length/2)
// invoke h with the identity
// transform
(x=>x)&
// invoke h again with a
// transform m that moves the
// 2nd digit to the 3rd digit and
// 0's out the 2nd digit.
// input for m is number x
h(m=x=>
// is x negative?
x<0
// invoke m with negated input
// to force it to a positive value
// and negate the result to
// convert back to negative
?-m(-x)
// otherwise, does x have 4 or
// more digits?
:x>999
// recursively call m with 1
// fewer digit, then add digit
// back to the result
?m(x/10)*10+x%10
// 3 or fewer digits, move
// the 2nd digit to the 3rd
// and 0 put the 2nd digit
:x-x%100+x/10%10
)
)
)
// invoke g with input 1 for leading
(1),
// invoke g with input -1 for following
g(-1)
]
```
] |
[Question]
[
# An Séimhiú agus an tUrú
In Irish Gaelic (Gaeilge) there are a number of ways that the start of a word can be changed. The most common of these are lenition (an séimhiú) and eclipsis (an t-urú)
Lenition involves adding the letter *h* as the second letter. For example, the word "bean" (woman) would be lenited to "bhean".
Eclipsing adds a prefix to the word. The prefix is determined by the first letter of the word. For example, the word "capall" (horse) starts with a *c*. Its eclipsis is *g*. So when the word "capall" is eclipsed it becomes "gcapall".
## Challenge
Write a function or program that takes a word and returns both its lenited and eclipsed forms.
### Lenition
Only words beginning with:
```
b
c
d
f
g
m
p
s
t
```
are lenited. Words beginning with other letters are not changed.
**Some examples:**
```
bean bhean
capall chapall
Sasana Shasana
lón lón
Ífreann Ífreann
```
### Eclipsis
If a word starts with any of the following letters, it is prefixed by its respective eclipsis:
```
Letter Eclipsis
b m
c g
d n
f bh
g n
p b
t d
```
Words that don't start with those letters remain unchanged.
**Examples:**
```
bean mbean
capall gcapall
cailín gcailín
doras ndoras
fuinneog bhfuinneog
Gaeilge nGaeilge
Sasana Sasana
```
There are other changes that can happen to the start of a word, but we'll just focus on these ones.
## Rules
The input is only one word. Words will only contain `a-z`, `A-Z` or the *fada* vowels `á`, `Á`, `é`, `É`, `í`, `Í`, `ó`, `Ó`, `ú` and `Ú`.
To make it a bit more simple the word itself doesn't necessarily need to be an Irish word, just that it is treated like one in the code. So inputting `delta` should return `dhelta` and `ndelta`.
For this challenge you can assume that the input words have not already been lenited or eclipsed (in Irish, a word is only lenited or eclipsed once. You would never end up with "bhhean" or "ngcapall").
[Standard rules apply](https://codegolf.meta.stackexchange.com/questions/2419/default-for-code-golf-program-function-or-snippet/2422#2422), including [the default I/O rules](https://codegolf.meta.stackexchange.com/questions/2447/default-for-code-golf-input-output-methods/). Similarly, [default loopholes are forbidden](https://codegolf.meta.stackexchange.com/questions/1061/loopholes-that-are-forbidden-by-default).
Finally, this is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") so shortest answer in bytes wins.
## Test cases
```
Input Lenited Eclipsed
bean bhean mbean
capall chapall gcapall
fuinneog fhuinneog bhfuinneog
Sasana Shasana Sasana
Gaeilge Ghaeilge nGaeilge
lón lón lón
áthas áthas áthas
Ífreann Ífreann Ífreann
```
[Answer]
# [Perl 6](https://github.com/nxadm/rakudo-pkg), ~~83~~ 77 bytes
*-6 bytes thanks to Jo King*
```
{S:i/^<[bcdfgmpst]>/$/h/,{S/0/bh/}({$_ x tr/dbcfptg/nmg0bd/}($= m/./.lc))~$_}
```
[Try it online!](https://tio.run/##DYwxCoMwFECv8odQFIrfqUNR1x7AsbTyE5MoJDEkFipib9BD9ACdegQPZp3e8B7Py2BOm53goKDc5vrc4724ctEqbX0cbxUy7PA415gj73BJZtbAE8aALRfKjxqd1Tlvd8NKsJhhZkSavlizbJEmUAlrUlBDgIJLciDIkzE7erN@HbRDoAjq0TsnBw01RXIEF5K90RLM@nOwfsZub9a3CvvAVdsf "Perl 6 – Try It Online")
Returns a two-element list.
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~45~~ 44 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
.•1˜3WÓƵ•sнlk©diн'hI¦JI®7‹i.•B}в •S„bhš®èì]‚
```
Ended up longer than I anticipated beforehand.. Can probably be golfed some more, though.
[Try it online](https://tio.run/##yy9OTMpM/f9f71HDIsPTc4zDD08@thXILr6wNyf70MqUzAt71TM8Dy3z8jy0zvxRw85MkEKn2gubFIB08KOGeUkZRxceWnd4xeE1sY8aZv3/n1aamZeXmp8OAA) or [verify all test cases](https://tio.run/##yy9OTMpM/V9TVnl4gr2SwqO2SQpK9pVh//UeNSwyPD3HOPzw5GNbgeziC3tzsg@tTMm8sFc9I/LQMq/IQ@vMHzXszAQpdKq9sEkBSAc/apiXlHF04aF1h1ccXlN7eLVL7aOGWf91/ielJuZxJScWJObkcKWVZublpeancwUnFifmJXK5J6Zm5qSncuUc3pzHdXhhSUZiMdfh3rQioJY8AA).
**Explanation:**
```
.•1˜3WÓƵ• # Push compressed string "fbcdgptms"
s # Swap to take the (implicit) input-string
н # Get its first character
l # Convert it to lowercase
k # Get the index in the string (-1 if not found)
© # Store it in the register (without popping)
di # If the index is non-negative (>= 0):
н # Get the first character of the (implicit) input-string again
'h '# Push a "h"
I # Push the input
¦ # And remove its first character
J # Join all three strings together
I # Then push the input-string again
®7‹i # If the index from the register is smaller than 7:
.•B}в • # Push compressed string "mgnnbd"
S # As a list of characters: ["m","g","n","n","b","d"]
„bhš # And prepend "bh" to this list: ["bh","m","g","n","n","b","d"]
®è # Then use the index from the register in this list
ì # And prepend it in front of the input-string
] # Close both if-statements
‚ # Pair the two strings at the top of the stack
# (uses the input implicitly if we haven't entered the first if)
# (and output this pair of strings implicitly)
```
[See this 05AB1E tips of mine (section *How to compress strings not part of the dictionary?*)](https://codegolf.stackexchange.com/a/166851/52210) to understand why `.•1˜3WÓƵ•` is `"fbcdgptms"` and `.•B}в •` is `"mgnnbd"`.
Alternative for `.•B}в •S„bhš` with the same byte-count can be `.•„Å'Àāʈѕ#`, where `.•„Å'Àāʈѕ` is the compressed string `"bh m g n n b d"` and `#` will split on spaces.
[Answer]
# JavaScript (ES6), ~~98~~ 97 bytes
Returns an array `[lenited, eclipsed]`.
```
s=>[(x=[...'2n1111gbnd1m1','bh',2][parseInt(c=s[0],30)*17%22])>'1'?c+'h'+s.slice(1):s,x>{}?x+s:s]
```
[Try it online!](https://tio.run/##ZZA/boMwFIf3nsJL9aBQiOlQKRJkjDpnRAzGMTaVYxCmFVLVI/QQPUOPkINRjE0G522ffu/T@/NOPommQ9uPz6o7s7nJZ50XZTDlZZIkkCm8FK/VGV8wxFALiLOq7Mmg2ZsaA5rrclfFL7vwCb8@ZlkVFoDhQCMQEOlEy5ayAId7HU/F1/dhivReVzPtlO4kS2THgyaAmhEFaKkwRGmKarGwQZSii8kevH5KeiIlbP1UrLz2c5v5RvPRKsU6DtZohGNkpm2hL52IJorcxpzEyusYG/nCkbBWcgZOOArLRlAu8xV5/bOnO8cwQu54A75w/R2XPeAmWHaChTvlpxmWL6ptr42t4mD@Bw "JavaScript (Node.js) – Try It Online")
### How?
We define the following lookup table:
```
A = [ ...'2n1111gbnd1m1', 'bh', 2 ]
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14
A = [ '2', 'n', '1', '1', '1', '1', 'g', 'b', 'n', 'd', '1', 'm', '1', 'bh', 2 ]
```
where:
* a single character (or the string *"bh"*) is used for eclipsis; all letters that trigger eclipsis also trigger lenition
* \$1\$ means that there's no eclipsis and no lenition
* \$2\$ means that there's no eclipsis but there is lenition
The first letter of the input word is converted from Base30 to decimal, multiplied by \$17\$ and then reduced with a modulo \$22\$. The result is used to pick the correct value from \$A\$.
Any result above \$14\$ yields *undefined*, and so does any letter in the range **u-z** or any fada vowel. An undefined value is interpreted the same way as \$1\$ (no eclipsis, no lenition).
```
1st letter | from Base30 | * 17 | mod 22 | A[n]
-------------+-------------+------+--------+-----------
a | 10 | 170 | 16 | undefined
b | 11 | 187 | 11 | 'm'
c | 12 | 204 | 6 | 'g'
d | 13 | 221 | 1 | 'n'
e | 14 | 238 | 18 | undefined
f | 15 | 255 | 13 | 'bh'
g | 16 | 272 | 8 | 'n'
h | 17 | 289 | 3 | '1'
i | 18 | 306 | 20 | undefined
j | 19 | 323 | 15 | undefined
k | 20 | 340 | 10 | '1'
l | 21 | 357 | 5 | '1'
m | 22 | 374 | 0 | '2'
n | 23 | 391 | 17 | undefined
o | 24 | 408 | 12 | '1'
p | 25 | 425 | 7 | 'b'
q | 26 | 442 | 2 | '1'
r | 27 | 459 | 19 | undefined
s | 28 | 476 | 14 | 2
t | 29 | 493 | 9 | 'd'
u-z or fada | NaN | NaN | NaN | undefined
```
[Answer]
# [Python 3](https://docs.python.org/3/), 100 bytes
```
lambda w,l='bBcCdDgGpPtTfF':(w[0]+'h'*(w[0]in'msMS'+l)+w[1:],[*'mgnnbd','bh',''][l.find(w[0])//2]+w)
```
[Try it online!](https://tio.run/##Hcu9DsIgFEDhV3G7UIj1Z2vSRU2dTEx0Q4YiQkngligN8aF8Ch8MTZeTbznxnYYRt8W0t@L7oHS/yNy3oHb3vT7YYzynq@mgIVmsJIMBqlkOIbxOF2CesizWjeSigmARlQYOavgHpPBL41DPA63rjWSZlvh0mIghDuOUCKW0dNP3g/gY7Q8 "Python 3 – Try It Online")
-3 thanks to [Black Owl Kai](https://codegolf.stackexchange.com/users/81238/black-owl-kai).
[Answer]
# [Stax](https://github.com/tomtheisen/stax), 41 [bytes](https://github.com/tomtheisen/stax/blob/master/docs/packed.md#packed-stax)
```
ü≤↔y╩▓╤:ï{╪Θ↨ë24¿→Äw↔t⌠íΘq↕:pWhg2╗P♦_}éBb
```
[Run and debug it](https://staxlang.xyz/#p=81f31d79cab2d13a8b7bd8e917893234a81a8e771d74f4a1e971123a7057686732bb50045f7d824262&i=bean%0Acapall%0Afuinneog%0ASasana%0AGaeilge%0Al%C3%B3n%0A%C3%A1thas%0A%C3%8Dfreann&a=1&m=2)
[Answer]
# Java 10, ~~140~~ 135 bytes
```
s->{var h=s.charAt(0);int i="fbcdgptms".indexOf(h|32);return(i<0?s:h+"h"+s.substring(1))+" "+",bh,m,g,n,n,b,d,,".split(",",10)[i+1]+s;}
```
Port of [my 05AB1E answer](https://codegolf.stackexchange.com/a/178529/52210).
-5 bytes thanks to *@OlivierGrégoire*.
[Try it online.](https://tio.run/##hZBBTsMwEEX3PcXIK1txoxZ2hIJYsaIsuqy6mDhO7OK4UcapQCVH4BCcgSP0YMGtwhJFlkb2@Gn8n/d4xPm@eBuUQyJ4QetPMwDrg25LVBrWlyPAJrTWV6D4uCGRxX4/i4UCBqtgDR5WMND84XTEFsyKUmWwfQp8IbI4D@yKlbkqqibUxFLrC/3@WnLzeXsjslaHrvXc3i8e6c4kzLCEUupyur7Gl0IkDFjCZG5kLSvp48plISVLqXE2cCaZXC7E1ibLXUJZP2SXaE2XuxhtTHg82ALqaDhKbHeAYtT7oKDr9NCFtIlXwXnuU8VZrtEzcXX9H1LYoHOTWNlZ7/WhmgQ3SOhxEntGbV2lJzl3/pl2OH8HgzSNfZVt/JK/ef2sH34B)
**Explanation:**
```
s->{ // Method with String as both parameter and return-type
var h=s.charAt(0); // Get the first character of the input
int i="fbcdgptms".indexOf(h // Get its index in the string "fbcdgptms"
|32); // After converting it to lowercase
return(i<0? // If the index is -1 (not found):
s // Return the input unchanged
: // Else:
h // Return the first character
+"h" // Appended with an "h"
+s.substring(1)) // Appended with the rest of the string
+" " // Then append a space delimiter
+",bh,m,g,n,n,b,d,,".split(",",10)
// Push {"","bh","m","g","n","n","b","d","",""}
[i+1] // and append the character at index `i+1`
+s;} // And append the input-string
```
[Answer]
# [C# (Visual C# Interactive Compiler)](http://www.mono-project.com/docs/about-mono/releases/5.0.0/#csc), 151 bytes
```
x=>{var p=(char)(x[0]%32+96);return(x.Insert(1,(a+"ms").Contains(p)?"h":""),p==102?"bh"+x:"mgnnbd "[a.IndexOf(p)<0?6:a.IndexOf(p)]+x);};var a="bcdgpt";
```
It's really long, and there are probably ways to golf it more. But I'm just too lazy.
[Try it online!](https://tio.run/##VY5Ni8IwFEX38yvKg4EX2pGqUJjG2MWAMivdSxevSfoBGksSJSDz22PFgXFWFw73co90H9INcXMxcuW8HUyX4W8@g62TNhExiPXtSjYZBcqeLMNwyOv35SL9LBi32l@swTD7Nk5bj/MMKYWTAzb7OhtPg3E4sgp6KAFYNgoxzxcVND2koYRTZ0yjEjjQtFc67NqpvMqronwFdRoY/@EPBxLQSNWNHnjcT44eWwR1tjQdMv72h/TR03@07UkfB9XpB453 "C# (Visual C# Interactive Compiler) – Try It Online")
[Answer]
# [C# (.NET Core)](https://www.microsoft.com/net/core/platform), ~~165~~, ~~131~~, 126 bytes
Edit: ASCII-only with -34 bytes. Puts everything into one string.
Edit2: Kevin Cruijssen with the 5 byte golf to ToUpper()!
```
p=>{var s="BCDFGMPSTMGN N B D";var k=s.IndexOf(p.ToUpper()[0]);return(p.Insert(1,k<0?"":"h"),k<0?p:s[k]==70?"bh"+p:s[k+9]+p);}
```
[Try it online!](https://tio.run/##hZDPasJAEMbveYphT7vYBnsqNcaCiiJUK2jpQTxM4iYurptlZyMt4iP0IfoMfQQfLI1Krw1zmD/fjw@@Sek@LZysSlImh8UnebmPglQjEcxdkTvcHwMAWyZapUAefd0OhdrAFJXh4iICjEqTdsm72uMO@N9w66IHCcSVjXvHAzqgmPUHw9F4Ol8sp@MZzKAPQxZdpF1M4cRs5Mdrxm24LN6slY6LVXstIid96Ux9nhiSzvOHu123/cxYh22ZuM62Q6vdOo4f63OyZa3r3npat6yITlUU3LKFg8JQoWX47pSXL8pInnCWSDRMiP@hFC1q3YhlpTJGFnkjuEBCg43YGKXSuWzk9PmnOcP522@RmrGvzNUvufkFp7qqOtZGE@oMfwE "C# (.NET Core) – Try It Online")
[Answer]
# PowerShell, 121 122 116 98 Bytes
-24 bytes thanks to @mazzy
```
param($a)$a-replace'^[bcdfgmpst]','$&h';@{b='m';c='g';d='n';g='n';f='bh';p='b';t='d'}[''+$a[0]]+$a
```
[Try it online!](https://tio.run/##HcrLCsIwEEbhlwn@ihXcDwN9j5DC5NJ0kdQhLbgQnz0GN@fbHH29Uzu2VErvKk3q1cjNyKMlLRISFutDXHPV43SYYC4baP54RgUFRgZFxg7K/64MPwYdgE5GxNcCdyP26dyg9x8 "PowerShell – Try It Online")
Uses a simple regex for the lenition and a switch statement far superior hashtable thanks to @mazzy for the eclipsis. This can probably get a lot shorter.
[Answer]
# [Perl 6](https://github.com/nxadm/rakudo-pkg), 101 bytes
```
{.subst(/:i ^<[bcdfgmpst]>/,{$_~'h'}),.subst(/^./,{(%(<b m c g d n f bh g n p b t d>){.lc}//'')~$_})}
```
[Try it online!](https://tio.run/##NY5BboMwFETX4RSjiBYsRdBusigEddcDdBkRZINNLJkPwrCILOcGPU2PkINRV2pX8/Q0I80kZ3PchhueFU6by@wq7JLmbxqX8izaTvXDZJe6yg8ubu7JNfHs8F@6ZMGmT2kpMKBFjw4EBXENSJggsKCrmMtM6/M8Sdg9bjzzWxGpcUYpJCe0fOLGhNBGE7px5hZq1URy7PHBpTa9xCe3nDjM45vw@FJzGFIFF@3C7/dhXXCCSuOGFdHO8hv2cQP3688vtf@j19rvi8hvPw "Perl 6 – Try It Online")
[Answer]
# [Retina 0.8.2](https://github.com/m-ender/retina/wiki/The-Language/a950ad7d925ec9316e3e2fb2cf5d49fd15d23e3d), 77 bytes
```
i`^[bcdfgmpst]
$&h$'¶$&$&
T`L`l`¶.
¶f
¶ph
T`\ptcb\dgms`b\dgmnn_`¶.
^.+$
$&¶$&
```
[Try it online!](https://tio.run/##HctBDoIwEAXQ/ZyjookJ12DjTncizABtaVLGhtZjeAjPYNIDlIPVyuLnJz//rTIYpnw4NZgNdvdhnJRenA8PENUsjimKSlRwwwtaTLGGFFWJm8vUujAO7aQXj3sx9/ulq8@i6D/NeZDEMJIja0G9DLN8ariSJyZoSBqrJdjty7B9wkwetrdaC@Ef "Retina 0.8.2 – Try It Online") Link includes test cases. Explanation:
```
i`^[bcdfgmpst]
$&h$'¶$&$&
```
If the word can be lenited, create the lenition, and make a copy for the eclipsis with a duplicate first letter.
```
T`L`l`¶.
```
Lowercase the duplicate letter.
```
¶f
¶ph
```
If it's an `f` then change it to `ph`; it will get fixed to `bh` later.
```
T`\ptcb\dgms`b\dgmnn_`¶.
```
Fix or remove the eclipsis (`m` and `s` have a lentition but no eclipsis).
```
^.+$
$&¶$&
```
If there was no lentition then duplicate the word anyway.
[Answer]
# [Python 3](https://docs.python.org/3/), 118 bytes
```
s='fbcdgpt'
def f(w):a=w[0].lower();return w[0]+'h'*(a in'ms'+s)+w[1:],dict(zip(s,'bmgnnbd')).get(a,'')+'h'*(a=='f')+w
```
[Try it online!](https://tio.run/##TY9NbsMgEEb3OQVSFwO1FbXqLpXXPUCWURZg8yfhMTJEqLlWjtCDuQY7pSOxmPe9mRH@O5oJP5YldKBEP2gf4TBIRRRN7MS7dHm7Ht2U5EzZ5yzjbUaSWQMGXiknFmEM0ATWpMv76doOto/0bj0NLYhRI4oBGDtqGSlvAdg@163X1iYtfrYYqaIgJMfVJKVe1ifMSraWjDk9/Lk999y53c5ubwoprt7SaqubRZSTLn62ldlJufKM68CZB4783/qzKaSs38Iqf3FpnZabneUdFBn3puru51G/WfxMyLNys/wC "Python 3 – Try It Online")
[Answer]
### **JAVASCRIPT 131 bytes**
Implementing Kevin Cruijssen answer in javaScript:
```
(w,i='bcdfgmpst'.indexOf(w.toLowerCase()[0]))=>(i>=0?[w,w[0]+'h'+w.substr(1),'m,g,n,bh,n,,b,,d'.split(',')[i]+w]:[w,w,w]).join(' ')
```
```
(
w, // the input (string)
i='bcdfgmpst'.indexOf(w.toLowerCase()[0]) // the index of the lenited word
)=>(
i>=0? // if index greater or equals 0
[w,w[0]+'h'+w.substr(1),'m,g,n,bh,n,,b,,d'.split(',')[i]+w] // return Array(input, lenited, eclipsis)
: // else
[w,w,w] // return Array(input, input, input)
).join(' ') //Join array items with spaces
```
] |
[Question]
[
In [Map inputted ASCII characters](https://codegolf.stackexchange.com/q/124306/61563), I asked you to .. map inputted ASCII characters. This time, you will do the opposite, by immediately mapping all ASCII characters, and then mapping spaces over them.
This program will have practical uses, such as seeing what characters you have left in a [restricted-source](/questions/tagged/restricted-source "show questions tagged 'restricted-source'") challenge submission.
# Challenge
Your job is to write a program that *un*-maps inputted ASCII characters. As soon as the program is run, it will display *this exact map* (except color, font, size, etc.):

Each time the user inputs a printable ASCII character, you will print a space over it.
[](https://i.stack.imgur.com/iR50B.gif)
# Rules
* The initial output must be exactly as shown in the first image above: a 6x16 grid with ASCII characters in their respective positions, with the space (32) at the top left and the tilde (126) at one character left from the bottom right.
* Your program only needs to display the printable ASCII characters, `0x20` to `0x7E`.
* Your program must not terminate and continue to print spaces over characters until all printable ASCII characters have been overwritten. From here, your program can either terminate or run off into Neverland.
* Your reverse map must be updated in realtime (as soon as it receives user input).
* If your program does not read input silently, it must put the cursor out of the way, so the text won't get in the way of the map.
[Here's a useful ASCII table for reference.](http://www.asciitable.com/)
# Scoring
The answer with the least bytes in each language wins. Have fun!
[Answer]
# x86-16 Machine Code, 62 bytes
Hex dump:
```
BC0100B101B07EBAFE0581EAE00080EA02B402CD1085E4750830E439C5750A30C0B40ACD1084C074094884D275E085D275D831C031E4CD1630E489C5EBC7
```
Assembly:
```
mov sp, 0x0001 ; Stack pointer is used as a flag; 0 - Print all characters, 1 - Delete specific character
mov cl, 0x01 ; Number of characters to print per interrupt call
printString:
mov al, 0x7E ; Last character to print
mov dx, 0x05FE ; Row: 0x05, Collumn: 0xFE
printRow:
sub dx, 0x00E0 ; Decrement row number + 2 extra characters
printChar:
sub dl, 0x02 ; Decrement collumn index + 1 space
mov ah, 0x02 ; Prepare for interrupt call, 0x02 - Set cursor position
int 0x10 ; BIOS interrupt
test sp, sp ; Are we printing all characters or removing specific character
jnz print ; In first case just print it and go on
xor ah, ah ; Otherwise reset the upper byte of ax (shorter than "and ax, 0x00FF")
cmp bp, ax ; Is the current character same as the input character
jne after ; If no, continue searching
xor al, al ; If yes, remove it
print:
mov ah, 0x0A ; Prepare for print
int 0x10 ; Print
test al, al ; If we found target character
jz loop ; then stop searching
after:
dec ax ; Shorter than "dec, al"
test dl, dl ; Is it the last character in the row
jnz printChar ; If no, continue searching
test dx, dx ; Is it last char
jnz printRow ; If no, go to next row
loop:
xor ax, ax ; Remove "ah" cache
xor sp, sp ; Reset sp (it will never become 1 again)
int 0x16 ; BIOS interrupt for reading keyboard input
xor ah, ah ; Again reset "ah", because BIOS may change it
mov bp, ax ; Save it in stack base pointer
jmp printString ; Remove the character from the list
```
[](https://i.stack.imgur.com/J1DVu.gif)
[Answer]
# [SOGL V0.12](https://github.com/dzaima/SOGL), 23 [bytes](https://github.com/dzaima/SOGL/blob/master/chartable.md)
```
] ~Δ8«n"5αx2⁰³⁄¹‘→č@ŗ░T
```
[Try it Here!](https://dzaima.github.io/SOGLOnline/?code=JTVEJTIwJTdFJXUwMzk0OCVBQm4lMjI1JXUwM0IxeDIldTIwNzAlQjMldTIwNDQlQjkldTIwMTgldTIxOTIldTAxMERAJXUwMTU3JXUyNTkxVA__)
Takes input in the input box. I hope that it isn't too big of an issue that characters can be deleted :p
Explanation:
```
] do.. while (popping (which makes the stack not blow up luckily :D))
~Δ push the ascii characters (range("~"))
8«n split into lines of length 16
"...‘ push "inputs.value" (could be 2 bytes less if my dictionary contained the word "inputs". I even added "input", but only now realise that the input box is id=inputs :/)
→ evaluate as JavaScript, then push the result
č chop into characters
@ŗ replace each of the characters in the array with space
░ clear the output
T output without popping (so do..while continues looping)
```
[Answer]
# [C++ (Visual C++)](http://landinghub.visualstudio.com/visual-cpp-build-tools), 253 (@Step Hen) ~~261~~ bytes
```
#include<cstdlib>
#include<iostream>
#include<conio.h>
int main(){char a[0x5E];for(int i=0;i<0x5E;i++)a[i]=(char)(i+0x20);while(true){system("cls");for(int i=0;i<0x5E;i++)if(i&&!(i%16))printf("\n%c ",a[i]);else printf("%c ",a[i]);a[_getch()-0x20]=' ';}}
```
[Answer]
# [Python 3](https://docs.python.org/3/), 116 bytes
```
o='\n'.join(''.join(map(chr,range(i,16+i)))for i in range(32,124,16))[:-1]
while 1:print(o);o=o.replace(input()," ")
```
[Try it online!](https://tio.run/##LYzBCsIwEETv@YrYS7IYC2nFQ6V3/8CDegg1mpW4G0JE/PoYUIZhHjMw6VMC01grz@pMqn8wklb/fLqkl5BNdnT3Go3drREAbpwlSiT568fB2GHbRoDTtLEX8Q4YvbRTykhFM@x55j77FN3SXii9igbTyQ5qPQgvYhOLY3NudBWrLw "Python 3 – Try It Online")
[Answer]
# [Python 2](https://docs.python.org/2/), 132 bytes
Saved 4 bytes thanks to @alleks!
```
s=''
for i in range(32,128,16):s+=' '.join(map(chr,range(i,i+16)))+'\n'
while 1:print s[:-2];i=2*ord(input())-64;s=s[:i]+' '+s[i+1:]
```
[Try it online!](https://tio.run/##JY3fDsEwHEbvv6eoq7Y6YsUwaeK/h2CRYewndEs7EfHws3D3JefkfOW7ygura7LlszIufR1@q/aGc1wKx4iRZS6110z0dRDqcRBGMvbKcMa7t4KseKSlOOUu@EsUkGoMKRXfW45XTveMhXHpyFbM7@KOTqZkdLtwZ/G7ElJ2osHUmwZSopqs8rumESd1/UELbcyQ4ogTzshwwRVzLLHGFgussMEEY4wQYYgB@tAI0fsC "Python 2 – Try It Online")
[Answer]
# JavaScript (ES6) + HTML, ~~139~~ ~~136~~ 116 + ~~10~~ 16 = 132 bytes
*-3 bytes thanks to @Shaggy.*
*-14 bytes inspired by @Arnauld.*
```
for(i=32;i<127;)O[h="innerText"]+=String.fromCharCode(i++)+(i%16?" ":`
`);onkeypress=e=>O[h]=O[h].replace(e.key," ")
```
```
<pre id=O></pre>
```
Closing `pre` tag is required in this case, since we need the `innerText` value to start totally empty.
[Answer]
# [QBasic](https://archive.org/details/msdos_qbasic_megapack), 107 bytes
An anonymous function that takes as keystrokes, and erases an ASCII table
```
FOR x=32TO 126
L x
?CHR$(x)
NEXT
DO
L ASC(Input$(1))
?" "'<- `"` included for highlighting only
LOOP
SUB L(x)
LOCATE x\16-1,2*(x MOD 16)+1
END SUB
```
-8 bytes thanks to [@DLosc](https://codegolf.stackexchange.com/users/16766/dlosc)
[Answer]
# [C# (.NET Core)](https://www.microsoft.com/net/core/platform), (138 + using System;) 151 bytes
```
()=>{var j="";for(int i=32;i<127;i++){if(i%16<1)j+='\n';j+=(char)i+" ";}while(1>0){Console.Write(j);j=j.Replace(Console.ReadLine()," ");}}
```
[Try it online!](https://tio.run/##NYuxTsMwEEB3f4WJhHqnQEVaCYarK1UwwlIGFhbLuaZnBRtsU4SsfHvIwvSe9PRcvnUx8fydJQz69TcX/iDlRpuz/qoqF1vE6UuUXr9YCYBVHVyRGPRgZkCzrxebtDdNQ6eYQELRYrYbkl23eSBpW6xyArnu7ncd@tas3sOKFoI724TSNrqh6ecsI0O3v8P6GEOOI6/fkhQGj@SNXx/5c7SO4T8e2fbPEhjwZvmRpmkmNQCSWuxK9epJWXX4Aw "C# (.NET Core) – Try It Online")
[Answer]
# Node.js ~~233~~ 212 bytes
*Saved 21 bytes thanks to @thePirateBay*
This works, I'm still trying to find an online option as all the repls I've found hijack stdin.
```
a=[];l=_=>console.log(a.join``);for(i=32;i<127;i++)(x=String.fromCharCode(i)),a.push(i%16?x:x+'\n');l();b=require('readline');b.createInterface(process.stdin).on('line',c=>(a=a.join``.replace(c,' ').split``),l())
```
[Try it online](https://tio.run/##NY5BTwIxEIX/ihfSaXadBEw0sRYOnDxzRCOlOwtDSlunhey/X6uJx5f35b3v4u6ueOFcH2MaaJ6d3X@aYL/s2qdYUiAM6QQOL4nj4aDNmATYPq0Mvy1XL4a7TsNkd1U4nnCUdN2enWzbFLDWvcN8K2fgxfJ5M71OnfqISpsA2hyt0PeNhUAJuSFwpNYc0bdU6T1WktF5gizJUylY6sBRY4qg/tje2zU4@y@GQjn88r5XD0pjyYFr8@3bl57nHw)
[Answer]
# 65c02 machine code + Apple //e ROM, 52 (47?) bytes
Hex dump:
```
8000- 20 58 FC A9 A0 20 20 80
8008- 20 ED FD 1A C9 FF D0 F5
8010- AD 00 C0 10 FB 8D 10 C0
8018- 20 20 80 20 57 DB 80 F0
8020- 48 38 E9 A0 48 29 0F 0A
8028- 85 24 68 4A 4A 4A 4A 20
8030- 5B FB 68 60
```
Commented assembly:
```
1 HTAB = $24 ; HORIZONTAL POSITION OF CURSOR
2 SETVTAB = $FB5B ; SETS VERTICAL POSITION OF CURSOR FROM ACC
3 COUT = $FDED ; OUTPUTS CHARACTER IN ACC
4 HOME = $FC58 ; CLEARS SCREEN
5 OUTSP = $DB57 ; APPLESOFT ROUTINE THAT OUTPUTS A SPACE
6 KBD = $C000 ; KEY LAST PRESSED
7 KBSTROBE = $C010 ; ACCESS TO RESET "NEW KEY PRESSED" INDICATOR
8 ORG $8000
9 JSR HOME
10 * PRINT INITIAL CHARACTER MAP
11 LDA #" "
12 LOOP JSR CHARPOS
13 JSR COUT
14 INC ; INCREMENT ACCUMULATOR
15 CMP #"~"+1
16 BNE LOOP
17 * WAIT FOR KEYPRESS
18 GETCH LDA KBD ; GET LAST KEY PRESSED
19 BPL GETCH ; READ AGAIN IF KEYPRESS IS NOT NEW
20 STA KBSTROBE ; RESET "NEW KEYPRESS" INDICATOR
21 JSR CHARPOS
22 JSR OUTSP
23 BRA GETCH
24 * SUBROUTINE TO POSITION CURSOR TO PRINT OVER CHARACTER IN ACCUMULATOR
25 CHARPOS PHA ; PRESERVE ACC
26 SEC ; MAKE SURE CARRY IS SET TO SUBTRACT
27 SBC #" " ; SUBTRACT CHAR CODE OF SPACE
28 PHA ; SAVE ACC
29 AND #$0F ; GET LOWER 4 BITS TO GET CURSOR X POSITION
30 ASL ; SHIFT LEFT TO MAKE SPACES BETWEEN CHARS
31 STA HTAB
32 PLA ; GET OLD ACC
33 LSR ; SHIFT HIGH NIBBLE
34 LSR ; INTO LOW NIBBLE
35 LSR ; TO GET CURSOR Y POSITION
36 LSR
37 JSR SETVTAB
38 PLA ; RESTORE ACC
39 RTS
```
This has no cursor whatsoever. I also have a 47 byte version which might be valid, depending on what is meant by "put the cursor out of the way, so the text won't get in the way of the map":
```
8000- 20 58 FC A9 A0 20 1B 80
8008- 20 ED FD 1A C9 FF D0 F5
8010- 20 0C FD 20 1B 80 20 57
8018- DB 80 F5 48 38 E9 A0 48
8020- 29 0F 0A 85 24 68 4A 4A
8028- 4A 4A 20 5B FB 68 60
```
This puts a cursor at the character after the character you type (which is the space between characters), so it won't overwrite any of the actual characters in the map. Whether this is valid or not is up to the creator of the challenge.
[Answer]
# [Python 2](https://docs.python.org/2/), 96 bytes
```
from textwrap import*
a=fill(str(bytearray(range(32,127))),16)
while 1:a=a.replace(input(a),' ')
```
[Try it online!](https://tio.run/##DcNRCgIhEADQf0/h34whgQYFwX5UJ5lithVcldmJzdNbD17rutQSx5ilrlb5q7tQs2ltVfRgaJpTzrip4LMrkwh1FCpvxlP0IV6ccz6cndmXlNmGK010FG6ZXoyptI8iOQ8W3BhwAwP3/wf8AA "Python 2 – Try It Online\" (Output looks sort of iffy on TIO (or when passing input from a file in general), but interactively, it looks fine.") Output looks iffy on TIO (because input is passed from a file), but it’s fine interactively. I hope `'A'\n`, `'B'\n` etc is an okay input format.
] |
[Question]
[
**Closed**. This question needs [details or clarity](/help/closed-questions). It is not currently accepting answers.
---
**Want to improve this question?** Add details and clarify the problem by [editing this post](/posts/105753/edit).
Closed 7 years ago.
[Improve this question](/posts/105753/edit)
(Inspired by [this comment](https://codegolf.stackexchange.com/questions/5852/triplegolf-not-only-the-source-code-length-counts#comment12232_5852) on an old question.)
## Background
An [error quine](https://codegolf.stackexchange.com/q/36260/62131) (also known as a "Kimian quine") is a program which, when compiled or run, causes the compiler/interpreter/runtime to print an error message that has identical text to the program itself, and nothing else. For the purposes of this challenge, we're defining "error" broadly, to include warnings too.
## Task
In this challenge, we're looking for a [quine](/questions/tagged/quine "show questions tagged 'quine'") which is *also* an error quine. When executed, the program must print its own source code normally (i.e. not as an error/warning message); this must be a [proper quine](http://meta.codegolf.stackexchange.com/q/4877/62131) (i.e. some part of the program must encode a different part of the output). Additionally, compiling and executing the program must *also* cause the program's source code – and nothing else – to be printed as error or warning messages by the implementation. (Note that this means that you will not be able to use compile-time errors, in languages where those prevent the program from executing normally.) So in other words, the program's source code will be printed twice, once via each method.
## Clarifications
* In most cases, it'll be obvious what is and isn't an error/warning message; we aren't distinguishing between the two here. In ambiguous cases, define an error/warning message as any text that's output by the implementation either: 1. as a consequence of something other than executing a command (or whatever the closest equivalent is in the language); or 2. that wasn't part of the input to the command that produced it as output.
* The error/warning part of the quine doesn't need to be a proper quine (although in most cases it will be by chance, as most error and warning messages contain considerable amounts of fixed text).
* It's acceptable for the program to output multiple errors/warnings, which form the program's source when concatenated together. It's not acceptable to output errors/warnings that don't appear in the source.
* Unlike in many challenges, the switches given to the compiler, and the program filename, are likely to be highly relevant in this challenge. Given that the challenge may not be possible otherwise, I'm willing to be flexible here, although if you run the implementation in an unusual way, remember that PPCG rules charge a byte penalty for doing so (equal to the number of additional characters that you'd need to add on the command line over the shortest "normal" way to run a program), and thus you'll need to specify the size of the penalty in your post. (For example, if the interpreter you're using reads the program from a file, and has no particular restrictions on the filename, the shortest normal way to run the program would be from a file with a 1-character filename; thus, if you need a 100-character filename to make your program work, you'd incur a byte penalty of +99.)
* The compiler/interpreter version you use may well be relevant, so as part of your submission, please state a specific compiler or interpreter on which your program works, and which version is required. (For example, a C submission might state "C (gcc 6.2.0)" in the header.)
* Note that this task may not be possible in all languages. In the languages where it is, the easiest method will likely be to find an error or warning message for which it's possible to customize some subset of the text (via changing the name of something that gets quoted in the message; filenames are a common choice here, but not the only one). I'll be particularly impressed (and surprised) if someone finds a way to do this using *only* error and warning messages whose text is fixed.
## Victory condition
This is a [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") challenge, so an entry is considered to be better if it has a smaller byte count. As such, once you've got your program working at all, you want to optimize it to bring the number of bytes down as far as possible. (However, don't be discouraged if there's already a shorter entry, especially if it's in a different language; what we're really looking for here is to shorten a particular algorithm or idea behind a program as much as possible, but seeing multiple solutions in different languages or that rely on different principles is always worthwhile.)
[Answer]
# JavaScript (Firefox 50), 153 bytes
```
Error: "Error: 1.replace(/.+/,x=>{alert(x=x.replace(1,uneval(x)));throw x.slice(7)})".replace(/.+/,x=>{alert(x=x.replace(1,uneval(x)));throw x.slice(7)})
```
### Explanation
The idea here was to start with the [most easily modifiable JS quine](https://codegolf.stackexchange.com/a/62466/42545) I've found yet:
```
".replace(/.+/,x=>alert(uneval(x)+x))".replace(/.+/,x=>alert(uneval(x)+x))
```
The `throw` keyword is a simple way to make it throw its own code as well:
```
".replace(/.+/,x=>{alert(x=uneval(x)+x);throw x})".replace(/.+/,x=>{alert(x=uneval(x)+x);throw x})
```
However, there's a slight problem: Firefox prepends the thrown message with `Error:`. Fortunately, `Error: mycode` is actually valid JavaScript! (To learn more about this, [visit MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/label).)
```
Error: ".replace(/.+/,x=>{alert(x=uneval(x)+x);throw x})Error: ".replace(/.+/,x=>{alert(x=uneval(x)+x);throw x})
```
Oops, this alerts the wrong thing:
```
".replace(/.+/,x=>{alert(x=uneval(x)+x);throw x})Error: ".replace(/.+/,x=>{alert(x=uneval(x)+x);throw x})Error:
```
Since the quotation mark is no longer at the start of the code, `uneval(x)+x` won't give us the correct result. The best way to fix this is to add a placeholder in place of the nested string:
```
Error: "Error: 1.replace(/.+/,x=>{alert(x=x.replace(1,uneval(x)));throw x})".replace(/.+/,x=>{alert(x=x.replace(1,uneval(x)));throw x})
```
Uh-oh, now there's an extra `Error:` in the error message. Let's fix that by slicing the string:
```
Error: "Error: 1.replace(/.+/,x=>{alert(x=x.replace(1,uneval(x)));throw x.slice(7)})".replace(/.+/,x=>{alert(x=x.replace(1,uneval(x)));throw x.slice(7)})
```
And finally, both the output and the error message are identical to the code! I'd add a Stack Snippet, but it doesn't seem to work in a snippet in any browser.
[Answer]
# Python 2, ~~217~~ ~~80~~ 51 bytes
The trailing linefeed is required.
```
s='s=%r;print s%%s;exit(s%%s)';print s%s;exit(s%s)
```
[**Try it online**](http://ideone.com/jOeSqN)
I started with a simple quine:
```
s='s=%r;print s%%s';print s%s
```
Then I added `raise` on the end to throw an `IOError`.
```
s='s=%r;print s%%s;raise IOError(s%%s)';print s%s;raise IOError(s%s)
```
Unfortunately, the traceback was causing problems (I couldn't make it go away completely), and the name of the exception was always printed in front like `IOError: <code here>`, even if I removed the traceback.
Then I found this [helpful SO answer](https://stackoverflow.com/a/41414413/2415524) and modified it for my purposes.
Then I found that I can skip creating my own class and can just use `sys.exit`, making my code much shorter.
] |
[Question]
[
Let's parse and process Key-Language! Given the input of a sequence of keyboard keypresses and/or special keys, write a program, function, etc. that outputs the product when all the actions are processed based on the following keyboard:
```
+-------------------------------------------------------+
| ~ | ! | @ | # | $ | % | ^ | & | * | ( | ) | - | + | |
| ` | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 0 | _ | = |Del|
+-------------------------------------------------------+
|TAB| q | w | e | r | t | y | u | i | o | p | [ | ] | \ |
| | Q | W | E | R | T | Y | U | I | O | P | { | } | | |
+-------------------------------------------------------+
|CAPS | a | s | d | f | g | h | j | k | l | ; | ' | RET |
| | A | S | D | F | G | H | J | K | L | : | " | |
+-------------------------------------------------------+
| SHIFT | z | x | c | v | b | n | m | , | . | / | SHIFT |
| | Z | X | C | V | B | N | M | < | > | ? | |
+-------------------------------------------------------+
| |
| SPACEBAR |
+-------------------------------------------------------+
```
The keys that output actual characters *not* consisting of whitespace and *are* able to be modified by other keys will be known as "character keys", and those that modify the output of other keys or output whitespace will be known as "special keys". The alphabet character keys, which will be shown in the input with uppercase letters, can be modified with either `Shift` or `Caps Lock` to produce uppercase letters, and the rest of the character keys can only be modified with `Shift` to produce their alternate characters. Therefore `A` in the input corresponds to the `a A` character key, whose normal output is `a` and whose modified output, obtainable with either the `Shift` or `Caps Lock` key, is `A`. On the other hand, `/`, which corresponds to the `/ ?` character key, has a normal output of `/` and a modified output of `?` obtainable with only with `Shift` this time.
# Rules
* The input will *always* be a *string* consisting of a sequence of the character keys and special keys. The full special key to string mapping for the input (i.e. the format they are guaranteed to be in the input) and their corresponding actions/outputs are as follows:
+ `<DEL> -> Delete the previous character (including whitespace). If called when string is empty, nothing happens. If called 2 or more times in a row, 2 consecutive deletes happen. For instance, "RE<DEL><DEL>" should return an empty string ("") and also "R<RET><DEL><DEL>E" should return just "E".`
+ `<CAPS> -> Enable Caps Lock until <CAPS> appears again, upon which it is disabled, although it is not guaranteed to be disabled by the end of the input. Enabling this only modifies the upcoming alphabet keys resulting in them outputting only uppercase letters. For instance, "<CAPS>RE<CAPS>" results in the output "RE", but <CAPS>.<CAPS> would still result in a ".".`
+ `<RET> -> Add a new line.`
+ `<SPC> -> Add a single blank space.`
+ `<TAB> -> Add 4 spaces.`
+ `<SHFT> -> Shift is held down resulting in the alternate character of the upcoming keypress to be output, after which the key is released. For instance, "<SHFT>A" results in the output "A", "<SHFT>1" results in the output "!", and "<SHFT>1234" results in the output "!234" as only the first upcoming keypress is modified and nothing else. It is guaranteed that a character key will succeed a <SHFT>. Therefore, <SHFT><SPC> is not a possible input.`
* An empty string is also possible as input, for which the output should be nothing.
* The use of *any* built-in that solves this problem directly is disallowed.
* The use of standard loopholes is disallowed.
# Test Cases
Presented in the format `Actual String Input -> Actual String Output` followed by an explanation for a few.
1. `1<SHFT>2<TAB><CAPS>R.KAP.<SPC><SHFT>123 -> 1@ R.KAP. !23`
Output `1` as the `1` key is pressed without a toggle, then Shift is held down and the `2` key is pressed resulting in the `@` output. Then the Shift key is released and Tab is pressed, resulting in a 4 spaced indentation. Following up, the Caps Lock key is pressed, after which the `R`,`.`,`K`,`A`,`P`, and `.` keys are pressed, resulting in the output `R.KAP.`. Finally, a single space is output followed by shift resulting in `!23` being output when the `1`,`2`, and `3` keys are pressed at the end.
2. `<SHFT>ABCDEFG<SHFT>HIJK<SHFT>1<SHFT>2<SHFT>3<SHFT>4567890 -> AbcdefgHijk!@#$567890`
The Shift key is held down followed by the `A` key, resulting in the output `A` followed by the output `bcdefg` when the `B-G` keys are pressed. Then, the Shift key is held down again succeeded by the `H` key, after which the output is `H`, followed by `ijk` when the `I-K` keys are pressed. Finally, the `1-4` keys are all modified as shift is held down before each keypress resulting in the output `!@#$` finished off by `567890` when the `5-0` keys re pressed.
3. `<CAPS>THIS<SPC>IS<SPC>IN<SPC>ALL<SPC>CAPS<CAPS><SPC>NOW<SPC>THIS<SPC>IS<SPC>IN<SPC>ALL<SPC>LOWERCASE -> THIS IS IN ALL CAPS now this is in all lowercase`
4. `<TAB><SPC><TAB><SHFT>1 -> !`
5. `<CAPS>WWW<CAPS>.CODEGOLF.STACKEXCHANGE<SHFT>.COM -> WWW.codegolf.stackexchange>com`
6. `PROGRAMMING<CAPS><SPC>IS<SPC><CAPS>AWESOME -> programming IS awesome`
7. `<DEL><RET><DEL><RET><DEL> -> "" (Empty String)`
The delete key is pressed in the beginning after which nothing happens. Then, the Return key is pressed resulting in a new line, which is deleted after the backspace key is pressed again. Finally, the same sequence (new line followed by backspace) is repeated. After all this, the output is an empty string.
8. `<SHFT>HI<SPC>HOW<SPC>ARE<SPC>YOU<SHFT>/<RET><SHFT>I<SPC><SHFT>AM<SPC>O<DEL><SHFT>GOOD<SHFT>1 -> Hi how are you?\nI Am Good!`
9. `<SHFT>,<CAPS>RET<CAPS><SHFT>. -> <RET>`
The string `<RET>` should be the *actual* string output. Thus, this should *not* output a new line.
10. `<CAPS>67890,.;'[]<CAPS> -> 67890,.;'[]`
11. `<CAPS><SHFT>A -> A`
12. `RE<DEL><DEL> -> "" (Empty String)`
13. `U<RET><DEL><DEL>I -> i`
14. `<DEL><DEL><DEL>5<DEL> -> "" (Empty string)`
15. `"" (Empty String) -> "" (Empty String)`
This is [codegolf](/questions/tagged/codegolf "show questions tagged 'codegolf'") so the shortest code in bytes wins!
[Answer]
# 16-bit x86 machine code, 140 139 bytes
*Saved 1 byte by replacing DL with DX in the second-to-last opcode. Also corrected jump offsets in disassembly to match hex dump.*
Since the nature of the task requires some pre-initialized data, and the answer is not a full program but a function, I assume that there's a data section in the program and the linker promptly updates the address of the data. The address placeholder is denoted by '????'.
This is a hex representation of the code. The parameters are pointer to input string in SI and pointer to the output buffer in DI. Strings are assumed to be NULL-terminated.
```
8D1E????89F931D231C0FCAC84C07419D0EA72173C3C74263C41720A3C5A770684F675020C20AAEBE2AAC33C41720B3C5A76F324170402D7EBEC2C27EBF94646AC46240F74154848741748741948741A4848741A39F973B34FEBB04680F601EBAAB020AAAAAAB020EBBCB00AEBB84642EB99
```
Content of the mapping table (25 bytes):
```
" =<_>?)!@#$%^&*( :{}|`
```
The byte count accounts for both code and data.
## Disassembly:
```
8d 1e ?? ?? lea bx,ds:???? ;Load address of mapping table to BX
89 f9 mov cx,di ;Save pointer to output buffer in CX
31 d2 xor dx,dx ;DX is the status register, bit 0 - shift status
31 c0 xor ax,ax ;bit 8 - caps lock status
fc cld ;Clear DF
_loop:
ac lodsb ;Fetch next char
84 c0 test al,al ;If end of string found
74 19 je _end ;break
d0 ea shr dl,1 ;Copy shift flag to CF and clear it
72 17 jc _shift ;Branch to input procssing with shift set
3c 3c cmp al,0x3c ;If AL == '<'
74 26 je _special ;branch to special character processing
3c 41 cmp al,0x41 ;At this point anything
72 0a jb _out ;not in 'A'..'Z' range
3c 5a cmp al,0x5a ;should be printed unmodified
77 06 ja _out
84 f6 test dh,dh ;If caps lock status flag is set
75 02 jne _out ;go to printing right away
0c 20 or al,0x20 ;otherwise convert to lower case
_out:
aa stosb ;Store AL into output buffer
eb e2 jmp _loop ;Continue
_end:
aa stosb ;NULL-terminate the output string
c3 ret ;and return
_shift:
3c 41 cmp al,0x41 ;AL in the range [0x27..0x3b] with
72 0b jb _xlat0 ;a couple of holes in it
3c 5a cmp al,0x5a ;AL in the range 'A'..'Z'
76 f3 jbe _out ;Since shift is active, go print it
24 17 and al,0x17 ;AL is 0x5b, 0x5c, 0x5d or 0x7e,
04 02 add al,0x2 ;convert to the [0x15..0x18] range
_xlat:
d7 xlatb ;Lookup mapping table (AL=[BX+AL])
eb ec jmp _out
_xlat0:
2c 27 sub al,0x27 ;Convert AL to be a zero-based index
eb f9 jmp _xlat ;Reuse lookup code
_special: ;The next 4 or 5 chars are special character opcode
46 inc si ;Since correct input format is guaranteed
46 inc si ;don't bother reading & checking all of them,
ac lodsb ;just load the third one and skip the rest
46 inc si ;The lower 4 bits of the 3rd char
24 0f and al,0xf ;allow to differentiate opcodes
74 15 jz _sc_caps ;0x0
48 dec ax
48 dec ax
74 17 jz _sc_tab ;0x2
48 dec ax
74 19 jz _sc_spc ;0x3
48 dec ax
74 1a jz _sc_ret ;0x4
48 dec ax
48 dec ax
74 1a jz _sc_shft ;0x6
_sc_del: ;0xC, <DEL> opcode
39 f9 cmp cx,di ;Check the length of the current output
73 b3 jae _loop ;DI <= CX ==> NOOP
4f dec di ;Remove the last char
eb b0 jmp _loop
_sc_caps: ;<CAPS> opcode
46 inc si ;Consume leftover '>' from the input
80 f6 01 xor dh,0x1 ;Flip caps lock status bit
eb aa jmp _loop
_sc_tab: ;<TAB> opcode
b0 20 mov al,0x20 ;Space char
aa stosb ;Print it three times
aa stosb ;and let the <SPC> handler
aa stosb ;do the last one
_sc_spc: ;<SPC> opcode
b0 20 mov al,0x20 ;Space char
eb bc jmp _out ;Go print it
_sc_ret: ;<RET> opcode
b0 0a mov al,0xa ;Newline char
eb b8 jmp _out ;Go print it
_sc_shft: ;<SHFT> opcode
46 inc si ;Consume leftover '>' from the input
42 inc dx ;Set shift status bit (DL is guaranteed to be zero)
eb 99 jmp _loop
```
For 32-bit instruction set the code is absolutely the same except for the first instruction which is 2 bytes longer due to 32-bit addressing (8d1d???????? lea ebx,ds:????????)
[Answer]
# Retina, 136 bytes
Probably can be golfed further.
```
<SHFT>
§
<SPC>
<TAB>
<CAPS>
¶
<RET>
þ
<DEL>
÷
T`L`l`(?<=^(.*¶.*¶)*).+
T`-=;'[]/\\,.w`\_+:"{}?|<>_)!@#$%^&*(lL`§.
§|¶
i(`þ
¶
[^§]?÷
```
[Verify all testcases.](http://retina.tryitonline.net/#code=JShgPFNIRlQ-CsKnCjxTUEM-CiAKPFRBQj4KCQo8Q0FQUz4KwrYKPFJFVD4Kw74KPERFTD4Kw7cKVGBMYGxgKD88PV4oLirCti4qwrYpKikuKwpUYC09OydbXS9cXCwud2BcXys6Int9P3w8Pl8pIUAjJCVeJioobExgwqcuCsKnfMK2CgppKGDDvgrCtgpbXsKnXT_Dtwo&input=MTxTSEZUPjI8VEFCPjxDQVBTPlIuS0FQLjxTUEM-PFNIRlQ-MTIzCjxTSEZUPkFCQ0RFRkc8U0hGVD5ISUpLPFNIRlQ-MTxTSEZUPjI8U0hGVD4zPFNIRlQ-NDU2Nzg5MAo8Q0FQUz5USElTPFNQQz5JUzxTUEM-SU48U1BDPkFMTDxTUEM-Q0FQUzxDQVBTPjxTUEM-Tk9XPFNQQz5USElTPFNQQz5JUzxTUEM-SU48U1BDPkFMTDxTUEM-TE9XRVJDQVNFCjxUQUI-PFNQQz48VEFCPjxTSEZUPjEKPENBUFM-V1dXPENBUFM-LkNPREVHT0xGLlNUQUNLRVhDSEFOR0U8U0hGVD4uQ09NClBST0dSQU1NSU5HPENBUFM-PFNQQz5JUzxTUEM-PENBUFM-QVdFU09NRQo8REVMPjxSRVQ-PERFTD48UkVUPjxERUw-CjxTSEZUPkhJPFNQQz5IT1c8U1BDPkFSRTxTUEM-WU9VPFNIRlQ-LzxSRVQ-PFNIRlQ-STxTUEM-PFNIRlQ-QU08U1BDPk88REVMPjxTSEZUPkdPT0Q8U0hGVD4xCjxTSEZUPiw8Q0FQUz5SRVQ8Q0FQUz48U0hGVD4uCjxDQVBTPjY3ODkwLC47J1tdPENBUFM-Cgo8Q0FQUz48U0hGVD5B) (Slightly modified to run all testcases at once.)
[Answer]
# JavaScript (ES6), 207
Updated to fix the bug with repeated deletes, even some bytes shorter.
```
s=>s.replace(/<\w+>|./g,x=>(k=x[3])=='L'?o=o.slice(0,-1):k=='P'?l=!l:k=='F'?s=0:o+=k?k<'C'?' ':k<'D'?' ':`
`:s?l?x.toLowerCase():x:s=")!@#$%^&*("[x]||'_={}|:"<>?'["-+[]\\;',./".indexOf(x)]||x,l=s,o='')&&o
```
*less golfed*
```
s=>s.replace( /<\w+>|./g, x =>
(k=x[3]) == 'L' ? o = o.slice(0,-1)
: k == 'P' ? l = !l
: k == 'F' ? s = 0
: o+= k ? k < 'C' ? ' ' : k < 'D' ? ' ' : '\n'
: s ? l ? x.toLowerCase() : x
: s = ")!@#$%^&*("[x] || '_={}|:"<>?' ["-+[]\\;',./".indexOf(x)] || x,
l = s, o = ''
) && o
```
**Test**
```
F=
s=>s.replace(/<\w+>|./g,x=>(k=x[3])=='L'?o=o.slice(0,-1):k=='P'?l=!l:k=='F'?s=0:o+=k?k<'C'?' ':k<'D'?' ':`
`:s?l?x.toLowerCase():x:s=")!@#$%^&*("[x]||'_={}|:"<>?'["-+[]\\;',./".indexOf(x)]||x,l=s,o='')&&o
console.log=(...x)=>O.textContent+=x.join` `+'\n'
;[["1<SHFT>2<TAB><CAPS>R.KAP.<SPC><SHFT>123", "1@ R.KAP. !23"]
,["<SHFT>ABCDEFG<SHFT>HIJK<SHFT>1<SHFT>2<SHFT>3<SHFT>4567890", "AbcdefgHijk!@#$567890"]
,["<CAPS>THIS<SPC>IS<SPC>IN<SPC>ALL<SPC>CAPS<CAPS><SPC>NOW<SPC>THIS<SPC>IS<SPC>IN<SPC>ALL<SPC>LOWERCASE", "THIS IS IN ALL CAPS now this is in all lowercase"]
,["<TAB><SPC><TAB><SHFT>1", " !"]
,["<CAPS>WWW<CAPS>.CODEGOLF.STACKEXCHANGE<SHFT>.COM", "WWW.codegolf.stackexchange>com"]
,["PROGRAMMING<CAPS><SPC>IS<SPC><CAPS>AWESOME", "programming IS awesome"]
,["<DEL><RET><DEL><RET><DEL>", ""]
,["<SHFT>HI<SPC>HOW<SPC>ARE<SPC>YOU<SHFT>/<RET><SHFT>I<SPC><SHFT>AM<SPC>O<DEL><SHFT>GOOD<SHFT>1", "Hi how are you?\nI Am Good!"]
,["<SHFT>,<CAPS>RET<CAPS><SHFT>.", "<RET>"]
,["<CAPS>67890,.;'[]<CAPS>", "67890,.;'[]"]
,["<CAPS><SHFT>A", "A"]
,["U<RET><DEL><DEL>I", "i"]
,["RE<DEL><DEL>", ""]
,["", ""]].forEach(t=>{
var i=t[0],k=t[1],r=F(i)
console.log(
k==r?'OK':'KO',i,'\n->',r,k==r?'\n':'(should be ->'+k+')\n'
)
})
```
```
<pre id=O></pre>
```
] |
[Question]
[
My preferred way to approximate a derivative is the central difference, its more accurate than forward difference or backward difference, and I'm too lazy to go higher-order. But the central difference requires a data point on either side of point you are evaluating. Normally this means you end up not having a derivative at either endpoint. To solve it, I want you to switch to forward and backward difference at the edges:
Specifically, I want you to use a forward difference for the first point, a backward difference for the last point, and a central difference for all the points in the middle. Also, you can assume x values are evenly spaced, and focus only on y. Use these formulas:
[](https://i.stack.imgur.com/kmtvZ.png)
Good luck, I'm looking forward to seeing if someone comes up with a simple rule which reproduces all 3 derivatives in the right places!
EX INPUT:
```
0.034 9.62 8.885 3.477 2.38
```
I will use FD, CD, and BD to denote which algorithm to use in which spot, so above 5 points are used to approximate derivatives using
```
FD CD CD CD BD
```
And then the calculated values would be:
```
9.586 4.4255 -3.0715 -3.2525 -1.097
```
You can assume that there will always be at least 3 input points, and you can calculate using single or double precision.
And as always, shortest answer wins.
[Answer]
# [Jelly](http://github.com/DennisMitchell/jelly), ~~13~~ 10 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
I.ịṚjI+2\H
```
[Try it online!](http://jelly.tryitonline.net/#code=SS7hu4vhuZpqSSsyXEg&input=&args=WzAuMDM0LCA5LjYyLCA4Ljg4NSwgMy40NzcsIDIuMzhd)
### How it works
```
I.ịṚjI+2\H Main link. Argument: A (array)
I Increments; compute the deltas of consecutive values.
For [a, b, c, d, e], this yields [b-a, c-b, d-c, e-d].
.ị At-index 0.5; get the the last and first element.
This yields [e-d, b-a].
Ṛ Reverse the pair.
This yields [b-a, e-d].
jI Join, separating by the increments.
This yields [b-a, b-a, c-b, d-c, e-d, e-d].
+2\ Add the values of all overlapping pairs.
This yields [2(b-a), c-a, d-b, e-c, 2(e-d)].
H Halve all resulting numbers.
This yields [b-a, (c-a)/2, (d-b)/2, (e-c)/2, e-d].
```
[Answer]
# MATL, ~~21~~ 15 bytes
```
2/d1)6Mh8Mt0)h+
```
[TryItOnline](http://matl.tryitonline.net/#code=Mi9kMSk2TWg4TXQwKWgr&input=WzAuMDM0ICA5LjYyICAgIDguODg1ICAgMy40NzcgICAyLjM4XQ)
Halves the input vector, and takes successive differences, to give `d=[i(2)-i(1) i(3)-i(2) ... i(end)-i(end-1)]/2` and then makes two modified vectors, `[d(1) d]` and `[d d(end)]`, and adds them.
The older version was better (because convolution), but 21 bytes
```
d1j)6M1)6MTT2/H3$Y+bv
```
[Answer]
## Python with NumPy, 29 bytes
```
import numpy;numpy.gradient
```
This happens to be the default behaviour of NumPy's `gradient` function. The bytes were counted [according to this consensus](https://codegolf.meta.stackexchange.com/a/9032/8478).
[Answer]
## 05AB1E, ~~20~~ ~~19~~ ~~17~~ 14 bytes
```
¥Ð¦øO;s¤s0èŠ)˜
```
**Explained**
```
¥Ð # triplicate deltas of list
[9.585999999999999, -0.7349999999999994, -5.4079999999999995, -1.097]
¦øO; # get central difference (fold addition over deltas and divide by 2)
[4.4254999999999995, -3.0714999999999995, -3.2524999999999995]
s¤ # get backwards difference
-1.097
s0è # get forwards difference
9.585999999999999
Š)˜ # reorder differences, merge to list and flatten
[9.585999999999999, 4.4254999999999995, -3.0714999999999995, -3.2524999999999995, -1.097]
```
[Try it online](http://05ab1e.tryitonline.net/#code=wqXDkMKmw7hPO3PCpHMww6jFoCnLnA&input=WzAuMDM0LCA5LjYyLCA4Ljg4NSwgMy40NzcsIDIuMzhd)
Saved 2 bytes thanks to @Adnan
[Answer]
# Julia, 8 bytes
```
gradient
```
Inspired by [@MartinEnder's Python answer](https://codegolf.stackexchange.com/a/83556). [Try it online!](http://julia.tryitonline.net/#code=ZiA9IGdyYWRpZW50CgpbMC4wMzQsIDkuNjIsIDguODg1LCAzLjQ3NywgMi4zOF0gfD4gZiB8PiBkaXNwbGF5&input=)
[Answer]
# Pyth, 14 bytes
```
.OM>L2._seB-Vt
```
Try it online: [Demonstration](http://pyth.herokuapp.com/?code=.OM%3EL2._seB-Vt&input=0.034%2C9.62%2C8.885%2C3.477%2C2.38&debug=0)
### Explanation:
```
.OM>L2._seB-VtQQ implicitly add two Qs (input arrays) at the end
-VtQQ get all neighbored differences
seB get the last element of ^ and append it to ^
._ compute all prefixes
>L2 reduce all prefixes to the last two elements
.OM compute the average of each ^
```
[Answer]
# J, 21 bytes
```
[:((,{:)+{.,])2-~/\-:
```
Similar to the approach used in @David's [solution](https://codegolf.stackexchange.com/a/83532/6710).
## Usage
```
f =: [:((,{:)+{.,])2-~/\-:
f 0.034 9.62 8.885 3.477 2.38
9.586 4.4255 _3.0715 _3.2525 _1.097
```
## Explanation
```
[:((,{:)+{.,])2-~/\-: Input: list A
-: Halve each value in A
2 \ Select each overlapping sublist of size 2 in A
-~/ Reduce it using subtraction to get the difference
[:( ) Operate on the list of differences, call it D
] Identity function, returns D
{. Get the head of D
, Join them to get [head(D), D]
( {:) Get the tail of D
, Join them to get [D, tail(D)]
+ Add them together elementwise to get the derivatives and return
```
[Answer]
# Pyth - 29 bytes
Stupid simple approach.
```
s[_-F<Q2mc-@Qhd@Qtd2tUtQ_-F>2
```
[Try it online here](http://pyth.herokuapp.com/?code=s%5B_-F%3CQ2mc-%40Qhd%40Qtd2tUtQ_-F%3E2&input=%5B0.034%2C+9.62%2C+8.885%2C+3.477%2C+2.38%5D&debug=0).
[Answer]
## JavaScript (ES6), 62 bytes
```
a=>a.map((_,i)=>i&&i--<a.length-2?(a[i+2]-a[i])/2:a[i+1]-a[i])
```
[Answer]
# Pyth, ~~27~~ ~~24~~ ~~23~~ 21 bytes
```
~~.bcF\_-VNYK++]hJ,VUQQJ]eJttK~~
~~.bcF-VYN+]hJ,VQUQJ+tJ]eJ~~
~~++hJ-V+tQeQ+hQQcR2PtJeJ~~
~~\*V++1\*].5ttlQ1-V+tQeQ+h~~
*V++1m.5ttQ1-V+tQeQ+h
```
[Try it online!](http://pyth.herokuapp.com/?code=%2aV%2B%2B1m.5ttQ1-V%2BtQeQ%2Bh&input=0.034%2C9.62%2C8.885%2C3.477%2C2.38&debug=0)
] |
[Question]
[
This is based on this challenge and Geobits's/CarpetPython's idea to improve it:
[Keep your distance!](https://codegolf.stackexchange.com/questions/44781/keep-your-distance)
For this challenge, the distance between two numbers is measured on a loop, so, for example, the distance between 0 and 999 is 1. This should prevent strategies like always picking the lowest or highest number from winning almost every time. The only other change is that the lowest number that can be chosen is now 0 instead of 1.
I'll summarize it here:
* Write a function in Java, Python, or Ruby that takes three arguments:
+ the number of rounds played so far
+ the number of players
+ the numbers picked in the previous rounds, as an array of space-separated strings
* It should return an integer from 0 to 999, inclusive
* The score for a program each round is the sum of the square roots of the distances to the numbers each other program picked
* The program with the highest score after 100 rounds wins.
* One answer per person
The control program is here:
<https://github.com/KSFTmh/src/>
# Leaderboard
NumberOne, by TheBestOne, is winning.
* NumberOne - 9700
* NumberOnePlusFourNineNine - 9623
* AncientHistorian - 9425
* FindCampers - 9259
* WowThisGameIsSoDeep - 9069
* Sampler - 9014
* SabotageCampers - 8545
Apparently, my camper sabotage...er(?) doesn't work very well.
Here are the full results: <https://github.com/KSFTmh/src/blob/master/results-3>
I think this is different enough to not be a duplicate.
By the way, this is my first time asking a question on Stack Exchange, so let me know if I'm doing something wrong.
[Answer]
# Python 2, Sampler
This entry is based on the same code for [Keep your distance, Sampler entry](https://codegolf.stackexchange.com/a/44798/31785). I hope it will do better here where the 1 and 999 advantages do not exist.
Out of a list of places, choose the one that is farthest away from recently used
numbers, ignoring the previous turn (because other entries may predict based on just the previous turn).
```
def choose(turn, players, history):
sample = map(int, (' '.join( history[-5:-1] )).split())
def distance(x):
return sum(min(1000-abs(x-y), abs(x-y))**0.5 for y in sample)
score, place = max((distance(x), x) for x in range(1000))
return place
```
[Answer]
# Number OnePlusFourNineNine, Java
```
public static int choose(int round, int players, String[] args) {
return 500;
}
```
The logic is really simple. Unless someone finds a real algorithm which takes previous scores into consideration, this answer is fairly optimized.
Now that we count the distance in a circle, the maximum distance of any two points can be 500. Now if all entries were generating random numbers (or pseudo random based on some algorithm), this answer would not have been in any advantage at all. But there is at least 1 entry which produces a constant answer which an almost maximum distance. The makes the score come in favor of 500 as there is a fixed source of maximum distance possible in each round :)
[Answer]
# AncientHistorian - Python
It is the same algorithm from the previous one, except when calculating the potential scores it uses the circular distance. Since I'm losing horribly and can't get the controller to compile, I'm just trying a new strategy, where I use the worst from the previous rounds.
```
def choose(round, players, scores):
calc = lambda n, scores: sum([min(abs(int(i)-n), 1000-max(int(i),n)+min(int(i),n))**.5 for i in scores.split(' ')])
return min(range(1000), key=lambda n: sum([calc(n, j) for j in scores[1:]])) if round>1 else 250
```
[Answer]
# SabotageCampers - Python
```
def choose(rounds, players, previous):
if rounds<3:
return 1
prevchoices=[int(i) for i in " ".join(previous[-5:]).split(" ")]
remove=[]
for i in prevchoices:
if prevchoices.count(i)<3:
remove.append(i)
campers=[i for i in prevchoices if i not in remove]
return random.choice(campers)
```
The campers are still winning. Let me know if you have any suggestions for this.
[Answer]
# FindCampers - Python 2
Find all the campers from the last 10 rounds and stay away from them. I'm hoping that predictors will run from me. I will now ignore my old choices.
```
def choose(rounds, players, previous):
from collections import Counter
def distance(x, y):
return min(1000 - abs(x-y), abs(x-y))
pastRounds = list(map(lambda x: Counter(map(int, x.split())), previous))
me = 751
for (index, round) in enumerate(pastRounds):
round.subtract((me,))
pastRounds[index] = set(round.elements())
campers = reduce(lambda x,y: x.intersection(y), pastRounds[max(1, index-9):index], pastRounds[max(0,index-10)])
if campers:
dist, me = max(min((distance(x, y), x) for y in campers) for x in range(1000))
else:
me = 751
return me
```
[Answer]
# Number One, Java
The first answer. Copied from my [previous answer](https://codegolf.stackexchange.com/a/44791/32700).
```
public static int choose(int round, int players, String[] args) {
return 1;
}
```
[Answer]
# WowThisGameIsSoDeep, Java
I have analyzed the game for 10 years on a 1 million-core cluster and found the optimal
solution.
```
public static int choose(int round, int players,String[]spam) { return(int)(Math.random()*1e3); }
```
[Answer]
# Circilinear Extrapolator, Ruby
```
def choose(round, players, previous_choices)
previous_rounds = previous_choices.map{ |round| round.split.map(&:to_i) }
optimal_past_choices = previous_rounds.map do |choices|
(0..999).max_by { |i| choices.map{ |c| root_distance(i,c) }.inject(:+) }
end
if (last_round = optimal_past_choices.last)
(last_round + average_delta(optimal_past_choices).round) % 1000
else
750
end
end
def root_distance(i,j)
dist = (i-j).abs
dist = [dist, 1000 - dist].min
dist ** 0.5
end
def directed_distance(i,j)
dist = j - i
if dist > 500
dist - 1000
elsif dist < -500
dist + 1000
else
dist
end
end
def average_delta(ary)
ary.each_cons(2).map{ |x,y| directed_distance(x,y) }.inject(0,:+)/ary.count
end
```
] |
[Question]
[
# Background
In this challenge, a *base-`b` representation* of an integer `n` is an expression of `n` as a sum of powers of `b`, where each term occurs at most `b-1` times. For example, the base-`4` representation of `2015` is
```
4^5 + 3*4^4 + 3*4^3 + 4^2 + 3*4 + 3
```
Now, the *hereditary* base-`b` representation of `n` is obtained by converting the exponents into their base-`b` representations, then converting their exponents, and so on recursively. Thus the hereditary base-`4` representation of `2015` is
```
4^(4 + 1) + 3*4^4 + 3*4^3 + 4^2 + 3*4 + 3
```
As a more complex example, the hereditary base-`3` representation of
```
7981676788374679859068493351144698070458
```
is
```
2*3^(3^(3 + 1) + 2) + 3 + 1
```
The *hereditary base change of `n` from `b` to `c`*, denoted `H(b, c, n)`, is the number obtained by taking the hereditary base-`b` representation of `n`, replacing every `b` by `c`, and evaluating the resulting expression. For example, the value of
```
H(3, 2, 7981676788374679859068493351144698070458)
```
is
```
2*2^(2^(2 + 1) + 2) + 2 + 1 = 2051
```
# The Challenge
You are given as input three integers `b`, `c`, `n`, for which you may assume `n >= 0` and `b, c > 1`. Your output is `H(b, c, n)`. The shortest byte count wins, and standard loopholes are disallowed. You can write either a function or a full program. You must be able to handle arbitrarily large inputs and outputs (bignums).
# Test Cases
```
4 2 3 -> 3
2 4 3 -> 5
2 4 10 -> 1028
4 4 40000 -> 40000
4 5 40000 -> 906375
5 4 40000 -> 3584
3 2 7981676788374679859068493351144698070458 -> 56761
2 3 2051 -> 35917545547686059365808220080151141317047
```
### Fun Fact
For any integer `n`, the sequence obtained by
```
n1 = n
n2 = H(2, 3, n1) - 1
n3 = H(3, 4, n2) - 1
n4 = H(4, 5, n3) - 1
....
```
eventually reaches `0`. This is known as [Goodstein's theorem](http://en.wikipedia.org/wiki/Goodstein%27s_theorem).
[Answer]
# Python 2, 55
```
H=lambda b,c,n,s=0:n and n%b*c**H(b,c,s)+H(b,c,n/b,s+1)
```
A recursive solution. Like the recursive algorithm to convert between bases, except it recurses on the exponent as well.
We split `n` into two parts, the current digit `n%b`, and all other digits `n/b`. The current place value is stored in the optional parameter `s`. The current digit is converted to base `c` with `c**` and the exponent `s` is converted recursively. The remainder is then converted the same way, as `+H(b,c,n/b,s+1)` but the place value `s` is one higher.
Unlike base conversion, hereditary base conversion required remembering the current place value in the recursion for it to converted.
For ease of reading, here's what it looks like when `b` and `c` are fixed global constants.
```
H=lambda n,s=0:n and n%b*c**H(s)+H(n/b,s+1)
```
[Answer]
# CJam, ~~60~~ ~~58~~ ~~45~~ ~~43~~ ~~41~~ ~~38~~ 36 bytes
Thanks to Optimizer for saving two bytes.
```
l~:C;:B;{Bb)1$,,@f{1$~=C@)F#*+}~}:F~
```
[Test it here.](http://cjam.aditsu.net/)
Takes input in order `n b c`.
You can use this to test run all test cases:
```
"3 4 2
3 2 4
10 2 4
40000 4 4
40000 4 5
40000 5 4
7981676788374679859068493351144698070458 3 2
2051 2 3 "N/
{
~:C;:B;{Bb)1$,,@f{1$~=C@)F#*+}~}:F~
p}/
```
## Explanation
This is a fairly direct implementation of the process explained in the challenge, except that I interleave recursive base expansion, base substitution and computation of the final result:
```
l~:C;:B;{Bb)1$,,@f{1$~=C@)F#*+}~}:F~
l~:C;:B; "Read and evaluate input, store b and c in B and C.";
{ }:F "Define a block F. This performs the required conversion.";
Bb "Get digits of input number in base B.";
) "Split off 0-power digit.";
1$, "Copy remaining digits. Get their length n.";
, "Make array [0 1 ... n-1].";
@ "Pull up remaining digits.";
f{ } "Map this block onto the range, passing in the digits
as a second argument each time.";
1$~= "Copy current i, bitwise complement, access digit array.
This accesses the digits in reverse order.";
C "Push the new base C.";
@) "Pull up current i and increment to get power.";
F "Apply F recursively.":
~ "Raise C to the resulting power.";
* "Multiply by digit.";
+ "Add to running total.";
~ "The result will be in an array. Unwrap it.";
~ "Execute F on the input n.";
```
] |
[Question]
[
Your goal is to implement [Möbius inversion](http://en.wikipedia.org/wiki/M%C3%B6bius_inversion_formula), a linear operation on a sequence of numbers that is [used in combinatorics and number theory](https://www.maa.org/sites/default/files/pdf/upload_library/22/Ford/BenderGoldman.pdf). Fewest bytes wins.
**What is Möbius inversion?**
Given a (finite) integer sequence `f_1, f_2, ..., f_N`, we can compute its divisor-partial-sum `g`, whose `n`th element `g_n` is the sum of all terms `f_d` whose index `d` is a divisor of `n`.
```
g_n = sum_(d with d|n) [f_d]
g_1 = f_1
g_2 = f_1 + f_2
g_3 = f_1 + f_3
g_4 = f_1 + f_2 + f_ 4
g_5 = f_1 + f_5
g_6 = f_1 + f_2 + f_3 + f_6
...
```
The sequence `g` has the same length as `f`.
[Möbius inversion](http://en.wikipedia.org/wiki/M%C3%B6bius_inversion_formula) is the process of inverting this operation -- recovering `f` from `g`. This inverse is unique and produces an integer sequence. A explicit but complicated way to compute it is the [Möbius inversion formula](http://en.wikipedia.org/wiki/M%C3%B6bius_inversion_formula), which expresses `f_n` as a weighted sum over divisors `d` of `n`:
```
f_n = sum_(d with d|n) [μ(d) * g_(n/d)]
```
and `μ` is the [Möbius function](http://en.wikipedia.org/wiki/M%C3%B6bius_function):
```
μ(n) = 1 if n is a square-free positive integer with an even number of prime factors.
μ(n) = −1 if n is a square-free positive integer with an odd number of prime factors.
μ(n) = 0 if n has a squared prime factor.
```
**Program requirements**
Write a [function or program](https://codegolf.meta.stackexchange.com/q/2447/20260) to perform Möbius inversion. Fewest bytes wins. Built-in methods to perform Möbius inversion, do sequence convolution, compute the Möbius function (or related thing like checking squarefreeness), or solve systems of equations are not allowed.
**Input**
A sequence of integers of length at least 1. Can be any format that represents an ordered sequence: array, list, stack, token-separated string, etc. Unordered maps from the index to the element like dictionaries and functions are not OK. You're not given the length of the input sequence separately.
**Output**
Return or print the output sequence in any format, with same restrictions as input. It should be the same length as the input sequence.
**Test cases**
```
Input: [1, 2, 2, 3, 2, 4, 2, 4, 3, 4, 2, 6, 2, 4, 4, 5, 2, 6, 2, 6]
Output:[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
Input: [0, -3, 6, 5, 1, 7, 5, 0, 4, 0]
Output: [0, -3, 6, 8, 1, 4, 5, -5, -2, 2]
Input: [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
Output: [1, -1, -1, 0, -1, 1, -1, 0, 0, 1, -1, 0, -1]
```
[Answer]
# J - 13 char
Anonymous function Mobius-inverting a sequence.
```
(%.0=#\|~/#\)
```
Here's what's going on:
* `#\` gets indices from 1 to the length of the input list, inclusive.
* `|~/` makes a table of indices modulo themselves.
* `0=` checks for equality to zero, 1 for true, 0 for false. On the table of moduli, this checks divisibility, returning a matrix like
```
1 0 0 0 0 0 0 0
1 1 0 0 0 0 0 0
1 0 1 0 0 0 0 0
1 1 0 1 0 0 0 0
1 0 0 0 1 0 0 0
1 1 1 0 0 1 0 0
1 0 0 0 0 0 1 0
1 1 0 1 0 0 0 1
```
* Finally, `%.` takes the input sequence and this matrix, and solves it as a linear system: `x` equal to `b %. A` is the solution to `Ax=b` if it exists. Our `b` is the input sequence and `A` is this divisibility matrix above.
In use: (Note that J spells its negative sign `_`)
```
(%.0=#\|~/#\) 1 2 2 3 2 4 2 4 3 4 2 6 2 4 4 5 2 6 2 6
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
(%.0=#\|~/#\) 0 _3 6 5 1 7 5 0 4 0
0 _3 6 8 1 4 5 _5 _2 2
(%.0=#\|~/#\) 1 0 0 0 0 0 0 0 0 0 0 0 0
1 _1 _1 0 _1 1 _1 0 0 1 _1 0 _1
```
[Answer]
## Python, 99 chars
```
def I(g):
f,e=[],enumerate
for n,v in e(g):f+=[v-sum(x for i,x in e(f)if(n+1)%(i+1)<1)]
return f
```
Computes `f` from `g` incrementally, so we can use the `f`s we've already calculated to compute larger `f`s.
[Answer]
# CJam, 67 bytes
This can be golfed further, but given that so many languages can solve linear equations with 1 character, I don't see a point in answering with any non-maths oriented language.
```
l~:F,,{):N,:){N\%!},{__mF{W=1>},,{;0}{_mF,\1=m2%W1?}?N@/(F=*}%:+}%p
```
This is the exact implementation of the Möbius inversion formula.
[Try it online here](http://cjam.aditsu.net/)
Takes input from STDIN in the following format:
```
[1 0 0 0 0 0 0 0 0 0 0 0 0]
```
and gives output line
```
[1 -1 -1 0 -1 1 -1 0 0 1 -1 0 -1]
```
[Answer]
# Haskell, 61
```
h g=[v-sum[h g!!n|n<-[0..i-2],rem i(n+1)<1]|(i,v)<-zip[1..]g]
```
this solves the equations one at a time using the already known values of `f`, using laziness.
this is inefficient in space and time complexity because it recomputes the result several times ( it's like the difference between `fix f=f(fix f)` and `fix f=r where r=f r`). a simple fix:
```
h g=r where [v-sum[r!!n|n<-[0..i-2],rem i(n+1)<1]|(i,v)<-zip[1..]g]
```
[Answer]
# Matlab/Octave (56)(53)(51)
51 chars:
```
i=input('');x=1:numel(i);disp(i/~bsxfun(@mod,x,x'))
```
53 chars:
```
i=input('');x=meshgrid(1:numel(i));disp(i/~mod(x,x'))
```
I basically set up system of linear equations in matrix form where the matrix looks like this (depending on the length, here the length is 6:
```
1 0 0 0 0 0
1 1 0 0 0 0
1 0 1 0 0 0
1 1 0 1 0 0
1 0 0 0 1 0
1 1 1 0 0 1
```
Then I just solve the corresponding system of equations.
The command `meshgrid(x)` is primarly inteded for producing matrices like
```
1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
```
and
```
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
```
which can then be used as e.g. x and y coordinates for plotting 2d functions. I just use one of them for ceating a matrix with where the k-th column has is 0 every k-th element via elementwise remainder division (modulo). `~` as the logical `not` which replaces nonzero values with zeros and vice versa, which then results in the matrix above.
[Answer]
# Python 2, 84 chars
```
g=input()
i=1
for _ in g:g[i-1]-=sum(g[j-1]*(i%j<1)for j in range(1,i));i+=1
print g
```
Iterates through the entries, making each one what it needs to be for the sum to work out. Modifies the input list directly rather than making a new list.
] |
[Question]
[
The [edit (or Levenshtein) distance](https://en.wikipedia.org/wiki/Edit_distance) between two strings is the minimal number of single character insertions, deletions and substitutions needed to transform one string into the other. If the two strings have length n each, it is well known that this can be done in O(n^2) time by dynamic programming. The following Python code performs this calculation for two strings `s1` and `s2`.
```
def edit_distance(s1, s2):
l1 = len(s1)
l2 = len(s2)
matrix = [range(l1 + 1)] * (l2 + 1)
for zz in range(l2 + 1):
matrix[zz] = range(zz,zz + l1 + 1)
for zz in range(0,l2):
for sz in range(0,l1):
if s1[sz] == s2[zz]:
matrix[zz+1][sz+1] = min(matrix[zz+1][sz] + 1, matrix[zz][sz+1] + 1, matrix[zz][sz])
else:
matrix[zz+1][sz+1] = min(matrix[zz+1][sz] + 1, matrix[zz][sz+1] + 1, matrix[zz][sz] + 1)
return matrix[l2][l1]
```
In this task you have to get as close are you can to computing the edit distance but with a severe memory restriction. Your code is allowed to define one array containing 1000 32-bit integers and this is to be the only temporary storage you use in your computation. All variables and data structures are to be contained in this array. In particular, you would not be able to implement the algorithm above as for strings of length 1000 as it would require you to store at least 1,000,000 numbers. Where your language doesn't naturally have 32 bit integers (for example Python) you simply need to make sure you never store a number larger than 2^32-1 in the array.
You may read in the data using any standard library of your choice without worrying about the memory restrictions in that part. In order to make the competition fair for the main part of your code, you may only use operations that are functionally equivalent to those in the C programming language and cannot use any external libraries.
To be extra clear, the memory to store the input data or used by your language's interpreter, JVM etc. does not count towards your limit and you may not write anything to disk. You must assume the input data is read-only when in memory so you can't reuse that to gain more working space.
**What do I have to implement?**
Your code should read in a file in the following format. It will have three lines. The first line is the true edit distance. The second is string 1 and the third is string 2. I will test it with the sample data at <https://bpaste.net/show/6905001d52e8> where the strings have length 10,000 but it shouldn't be specialised for this data. It should output the smallest edit distance it can find between the two strings.
You will also need to prove your edit distance actually comes from a valid set of edits. Your code should have a switch which turns it into a mode that may use more memory (as much as you like) and outputs the edit operations that give your edit distance.
**Score**
Your score will be the `(optimal edit distance/divided by the edit distance you find) * 100`. To start things off, notice that you can get a score by just counting the number of mismatches between the two strings.
You can use any language you like which is freely available and easy to install in Linux.
**Tie break**
In the case of a tie-break, I will run your code on my Linux machine and the fastest code wins.
[Answer]
# C++ 75.0
The program is designed to work with arbitrary text strings. They can be of any different lengths as long as neither exceeds 13824 characters. It uses 1,897 16-bit integers, which is equivalent to 949 32-bit integers. At first I was writing it in C, but then realized there was no function for reading a line.
The first command-line argument should be a filename. If a second argument exists, a summary of the edits is printed. The first line in the file is ignored while the second and third are the strings.
The algorithm is a doubly blocked version of the usual algorithm. It performs basically the same number of operations, but is of course much less accurate, since if a common subsequence gets split over the edge of a block, much of the potential savings are lost.
```
#include <cstring>
#include <inttypes.h>
#include <iostream>
#include <fstream>
#define M 24
#define MAXLEN (M*M*M)
#define SETMIN(V, X) if( (X) < (V) ) { (V) = (X); }
#define MIN(X, Y) ( (X) < (Y) ? (X) : (Y) )
char A[MAXLEN+1], B[MAXLEN+1];
uint16_t d0[M+1][M+1], d1[M+1][M+1], d2[M+1][M+1];
int main(int argc, char**argv)
{
if(argc < 2)
return 1;
std::ifstream fi(argv[1]);
std::string Astr, Bstr;
for(int i = 3; i--;)
getline(fi, i?Bstr:Astr);
if(!fi.good()) {
printf("Error reading file");
return 5;
}
if(Astr.length() > MAXLEN || Bstr.length() > MAXLEN) {
printf("String too long");
return 7;
}
strcpy(A, Astr.c_str());
strcpy(B, Bstr.c_str());
uint16_t lA = Astr.length(), lB = Bstr.length();
if(!lA || !lB) {
printf("%d\n", lA|lB);
return 0;
}
uint16_t nbA2, nbB2, bA2, bB2, nbA1, nbB1, bA1, bB1, nbA0, nbB0, bA0, bB0; //block, number of blocks
uint16_t iA2, iB2, iA1, iB1, jA2, jB2, jA1, jB1; //start, end indices of block
nbA2 = MIN(M, lA);
nbB2 = MIN(M, lB);
for(bA2 = 0; bA2 <= nbA2; bA2++) {
iA2 = lA * (bA2-1)/nbA2, jA2 = lA * bA2/nbA2;
for(bB2 = 0; bB2 <= nbB2; bB2++) {
if(!(bA2|bB2)) {
d2[0][0] = 0;
continue;
}
iB2 = lB * (bB2-1)/nbB2, jB2 = lB * bB2/nbB2;
d2[bA2][bB2] = ~0;
if(bB2)
SETMIN(d2[bA2][bB2], d2[bA2][bB2-1] + (jB2-iB2));
if(bA2)
SETMIN(d2[bA2][bB2], d2[bA2-1][bB2] + (jA2-iA2));
if(bA2 && bB2) {
nbA1 = MIN(M, jA2-iA2);
nbB1 = MIN(M, jB2-iB2);
for(bA1 = 0; bA1 <= nbA1; bA1++) {
iA1 = iA2 + (jA2-iA2) * (bA1-1)/nbA1, jA1 = iA2 + (jA2-iA2) * bA1/nbA1;
for(bB1 = 0; bB1 <= nbB1; bB1++) {
if(!(bA1|bB1)) {
d1[0][0] = 0;
continue;
}
iB1 = iB2 + (jB2-iB2) * (bB1-1)/nbB1, jB1 = iB2 + (jB2-iB2) * bB1/nbB1;
d1[bA1][bB1] = ~0;
if(bB1)
SETMIN(d1[bA1][bB1], d1[bA1][bB1-1] + (jB1-iB1));
if(bA1)
SETMIN(d1[bA1][bB1], d1[bA1-1][bB1] + (jA1-iA1));
if(bA1 && bB1) {
nbA0 = jA1-iA1;
nbB0 = jB1-iB1;
for(bA0 = 0; bA0 <= nbA0; bA0++) {
for(bB0 = 0; bB0 <= nbB0; bB0++) {
if(!(bA0|bB0)) {
d0[0][0] = 0;
continue;
}
d0[bA0][bB0] = ~0;
if(bB0)
SETMIN(d0[bA0][bB0], d0[bA0][bB0-1] + 1);
if(bA0)
SETMIN(d0[bA0][bB0], d0[bA0-1][bB0] + 1);
if(bA0 && bB0)
SETMIN(d0[bA0][bB0], d0[bA0-1][bB0-1] + (A[iA1 + nbA0 - 1] != B[iB1 + nbB0 - 1]));
}
}
SETMIN(d1[bA1][bB1], d1[bA1-1][bB1-1] + d0[nbA0][nbB0]);
}
}
}
SETMIN(d2[bA2][bB2], d2[bA2-1][bB2-1] + d1[nbA1][nbB1]);
}
}
}
printf("%d\n", d2[nbA2][nbB2]);
if(argc == 2)
return 0;
int changecost, total = 0;
for(bA2 = nbA2, bB2 = nbB2; bA2||bB2; ) {
iA2 = lA * (bA2-1)/nbA2, jA2 = lA * bA2/nbA2;
iB2 = lB * (bB2-1)/nbB2, jB2 = lB * bB2/nbB2;
if(bB2 && d2[bA2][bB2-1] + (jB2-iB2) == d2[bA2][bB2]) {
total += changecost = (jB2-iB2);
char tmp = B[jB2];
B[jB2] = 0;
printf("%d %d deleted {%s}\n", changecost, total, B + iB2);
B[jB2] = tmp;
--bB2;
} else if(bA2 && d2[bA2-1][bB2] + (jA2-iA2) == d2[bA2][bB2]) {
total += changecost = (jA2-iA2);
char tmp = B[jA2];
A[jA2] = 0;
printf("%d %d inserted {%s}\n", changecost, total, A + iA2);
A[jA2] = tmp;
--bA2;
} else {
total += changecost = d2[bA2][bB2] - d2[bA2-1][bB2-1];
char tmpa = A[jA2], tmpb = B[jB2];
B[jB2] = A[jA2] = 0;
printf("%d %d changed {%s} to {%s}\n", changecost, total, B + iB2, A + iA2);
A[jA2] = tmpa, B[jB2] = tmpb;
--bA2, --bB2;
}
}
return 0;
}
```
[Answer]
# C++, Score 92.35
Estimation Algorithm: The algorithm finds the first place the two string differ, and then tries all possible N operation permutations (insert, delete, replace - characters that match are skipped without consuming an operation). It scores each possible set of operations based on how much farther that set of operations successfully matches the two strings, plus how much it causes the string lengths to converge. After determining the highest-scoring set of N operations, the first operation in the set is applied, the next mismatch is found, and the process repeats until the end of the string is reached.
The program tries all values of N from 1-10 and selects the level that gave the best results. N=10 is generally the best now that the scoring method takes the string length into consideration. Higher values of N would probably be even better, but take exponentially more time.
Memory Usage: Since the program is purely iterative, it needs very little memory. Only 19 variables are used to track the program state. These are set by #defines to act as global variables.
Usage: The program is used the same as feersum's: the first parameter is assumed to be the file, and any additional parameters indicate that the edits should be shown. The program always prints the estimated edit distance, and the score.
Verification Output: The verification output it formatted in three rows:
```
11011111100101100111100110100 110 0 0000 0 01101
R I IR R D D D DDD D D
01 1111110010 0001110001101000110101000011101011010
```
The top row is the target string, the middle is the operations, and the bottom is the string being edited. Spaces in the operation line indicate that the characters match. 'R' indicates that the edit string has it's character in that position replaced with the target string's character. 'I' indicates that the edit string has the target string's character inserted at that position. 'D' indicates that the edit string has it's character in that position deleted. The edit and target strings have spaces inserted when the other has a character inserted or deleted so they line up.
```
#include <stdio.h>
#include <stdlib.h>
#include <string>
#include <math.h>
#include <fstream>
int memory[1000];
#define first (*(const char **)&memory[0])
#define second (*(const char **)&memory[1])
#define block_ia memory[2]
#define block_ib memory[3]
#define block_n memory[4]
#define block_op memory[5]
#define block_o memory[6]
#define block_x memory[7]
#define n memory[8]
#define opmax memory[9]
#define best_op memory[10]
#define best_score memory[11]
#define score memory[12]
#define best_counter memory[13]
#define la memory[14]
#define lb memory[15]
#define best memory[16]
#define bestn memory[17]
#define total memory[18]
// verification variables
char printline1[0xffff]={};
char *p1=printline1;
char printline2[0xffff]={};
char *p2=printline2;
char printline3[0xffff]={};
char *p3=printline3;
// determine how many characters match after a set of operations
int block(){
block_ia=0;
block_ib=0;
for ( block_x=0;block_x<block_n;block_x++){
block_o = block_op%3;
block_op /= 3;
if ( block_o == 0 ){ // replace
block_ia++;
block_ib++;
} else if ( block_o == 1 ){ // delete
block_ib++;
} else { // insert
if ( first[block_ia] ){
block_ia++;
}
}
while ( first[block_ia] && first[block_ia]==second[block_ib] ){ // find next mismatch
block_ia++;
block_ib++;
}
if ( first[block_ia]==0 ){
return block_x;
}
}
return block_n;
}
// find the highest-scoring set of N operations for the current string position
void bestblock(){
best_op=0;
best_score=0;
la = strlen(first);
lb = strlen(second);
block_n = n;
for(best_counter=0;best_counter<opmax;best_counter++){
block_op=best_counter;
score = n-block();
score += block_ia-abs((la-block_ia)-(lb-block_ib));
if ( score > best_score ){
best_score = score;
best_op = best_counter;
}
}
}
// prepare edit confirmation record
void printedit(const char * a, const char * b, int o){
o%=3;
if ( o == 0 ){ // replace
*p1 = *a;
if ( *b ){
*p2 = 'R';
*p3 = *b;
b++;
} else {
*p2 = 'I';
*p3 = ' ';
}
a++;
} else if ( o == 1 ){ // delete
*p1 = ' ';
*p2 = 'D';
*p3 = *b;
b++;
} else { // insert
*p1 = *a;
*p2 = 'I';
*p3 = ' ';
a++;
}
p1++;
p2++;
p3++;
while ( *a && *a==*b ){
*p1 = *a;
*p2 = ' ';
*p3 = *b;
p1++;
p2++;
p3++;
a++;
b++;
}
}
int main(int argc, char * argv[]){
if ( argc < 2 ){
printf("No file name specified\n");
return 0;
}
std::ifstream file(argv[1]);
std::string line0,line1,line2;
std::getline(file,line0);
std::getline(file,line1);
std::getline(file,line2);
// begin estimating Levenshtein distance
best = 0;
bestn = 0;
for ( n=1;n<=10;n++){ // n is the number of operations that can be in a test set
opmax = (int)pow(3.0,n);
first = line1.c_str();
second = line2.c_str();
while ( *first && *first == *second ){
first++;
second++;
}
total=0;
while ( *first && *second ){
bestblock();
block_n=1;
block_op=best_op;
block();
total ++;
first += block_ia;
second += block_ib;
}
// when one string is exhausted, all following ops must be insert or delete
while(*second){
total++;
second++;
}
while(*first){
total++;
first++;
}
if ( !best || total < best ){
best = total;
bestn = n;
}
}
// done estimating Levenshtein distance
// dump info to prove the edit distance actually comes from a valid set of edits
if ( argc >= 3 ){
p1 = printline1;
p2 = printline2;
p3 = printline3;
n = bestn;
opmax = (int)pow(3.0,n);
first = line1.c_str();
second = line2.c_str();
while ( *first && *first == *second ){
*p1 = *first;
*p2 = ' ';
*p3 = *second;
p1++;
p2++;
p3++;
first++;
second++;
}
while ( *first && *second){
bestblock();
block_n=1;
block_op=best_op;
block();
printedit(first,second,best_op);
first += block_ia;
second += block_ib;
}
while(*second){
*p1=' ';
*p2='D';
*p3=*second;
p1++;
p2++;
p3++;
second++;
}
while(*first){
*p1=*first;
*p2='I';
*p3=' ';
p1++;
p2++;
p3++;
first++;
}
p1 = printline1;
p2 = printline2;
p3 = printline3;
int ins=0;
int del=0;
int rep=0;
while ( *p1 ){
int a;
for ( a=0;a<79&&p1[a];a++)
printf("%c",p1[a]);
printf("\n");
p1+=a;
for ( a=0;a<79&&p2[a];a++){
ins += ( p2[a] == 'I' );
del += ( p2[a] == 'D' );
rep += ( p2[a] == 'R' );
printf("%c",p2[a]);
}
printf("\n");
p2+=a;
for ( a=0;a<79&&p3[a];a++)
printf("%c",p3[a]);
printf("\n\n");
p3+=a;
}
printf("Best N=%d\n",bestn);
printf("Inserted = %d, Deleted = %d, Replaced=%d, Total = %d\nLength(line1)=%d, Length(Line2)+ins-del=%d\n",ins,del,rep,ins+del+rep,line1.length(),line2.length()+ins-del);
}
printf("%d, Score = %0.2f\n",best,2886*100.0/best);
system("pause");
return 0;
}
```
[Answer]
# Python, 100
I did manage to calculate the edit distance perfectly in the allotted memory limit. Sadly, this entry violates two rules of the challenge, in letter if not in spirit.
First, I have not actually stored my data in 1000 32-bit ints. For 10000-character strings, my program creates two 10000-element arrays that will only contain +1, 0, or -1. At 1.585 bits per ternary number, it would be possible to pack those 20000 trits into 31700 bits, leaving 300 bits as more than enough for my 7 remaining 16-bit integers.
Second, I have not implemented the required mode for showing edits. I have, alternately, implemented a mode that prints out the full edit matrix. It is absolutely possible to calculate the edit path from that matrix, but I don't have time right now to implement it.
```
#!/usr/bin/env python
import sys
# algorithm originally from
# https://en.wikipedia.org/wiki/Levenshtein_distance#Iterative_with_two_matrix_rows
print_rows = False
if len(sys.argv) > 2:
print_rows = True
def LevenshteinDistance(s, t):
# degenerate cases
if s == t:
return 0
if len(s) == 0:
return len(t)
if len(t) == 0:
return len(s)
# create two work vectors of integer distance deltas
# these lists will only ever contain +1, 0, or -1
# so they COULD be packed into 1.585 bits each
# 15850 bits per list, 31700 bits total, leaving 300 bits for all the other variables
# d0 is the previous row
# initialized to 0111111... which represents 0123456...
d0 = [1 for i in range(len(t)+1)]
d0[0] = 0
if print_rows:
row = ""
for i in range(len(t)+1):
row += str(i) + ", "
print row
# d1 is the row being calculated
d1 = [0 for i in range(len(t)+1)]
for i in range(len(s)-1):
# cummulative values of cells north, west, and northwest of the current cell
left = i+1
upleft = i
up = i+d0[0]
if print_rows:
row = str(left) + ", "
for j in range(len(t)):
left += d1[j]
up += d0[j+1]
upleft += d0[j]
cost = 0 if (s[i] == t[j]) else 1
d1[j + 1] = min(left + 1, up + 1, upleft + cost) - left
if print_rows:
row += str(left+d1[j+1]) + ", "
if print_rows:
print row
for c in range(len(d0)):
d0[c] = d1[c]
return left+d1[j+1]
with open(sys.argv[1]) as f:
lines = f.readlines()
perfect = lines[0]
string1 = lines[1]
string2 = lines[2]
distance = LevenshteinDistance(string1,string2)
print "edit distance: " + str(distance)
print "score: " + str(int(perfect)*100/distance) + "%"
```
example input:
```
2
101100
011010
```
example verbose output:
```
0, 1, 2, 3, 4, 5, 6,
1, 1, 1, 2, 3, 4, 5,
2, 1, 2, 2, 2, 3, 4,
3, 2, 1, 2, 3, 2, 3,
4, 3, 2, 1, 2, 3, 3,
5, 4, 3, 2, 1, 2, 3,
6, 5, 4, 3, 2, 2, 2,
edit distance: 2
score: 100%
```
] |
[Question]
[
# Input
The code should take an integer \$n\$ between 1 and 1000.
# Output
The code should output positive integers with \$n\$ bits. Accompanying each integer should be its full factorization. Each integer should be a uniformly random \$n\$ bit number.
# Score
The score for your code will be the number of integers it outputs, with their factorizations, in ten seconds on my Ubuntu PC when \$n = 500\$.
# Primality testing
If you need to test if a number is prime, you can use any method that is any of:
* Provably always correct
* Not proven to always be correct but for which there is no known example where it is incorrect
* Provably has probability at most \$2^{-30}\$ of giving the wrong answer.
As always,this challenge is *per* language and I will keep a scoreboard for the answers given.
# Is this possible?
The two best known methods are [Bach's algorithm](https://pages.cs.wisc.edu/%7Ecs812-1/pfrn.pdf) and a simpler one by [Kalai](http://www.cs.cmu.edu/afs/cs/user/akalai/genfactor/web/factor/factor.html).
# Leaderboard
* **4** in **Rust** by mousetail
* **500** in **Python 3.10** by Command Master
* **14406** in **C++** by Command Master
[Answer]
# [Python](https://www.python.org)
Thanks to @AndersKaseorg for many improvements and bug fixes.
```
import math
import random
import time
import sympy
def gen_factor(N):
while True:
j = random.randint(1, N.bit_length() - 1)
q = (1 << j) + random.randrange(1 << j)
if q > N:
continue
Nt = N // q
if random.random() >= math.log(q, N) * (((Nt + 1) >> 1) << j) / N:
continue
p, a = sympy.perfect_power(q) or (q, 1)
if random.random() >= 1 / a:
continue
if sympy.isprime(p):
return p, a, Nt
def bach(N):
if N <= 10 ** 5:
x = random.randint(N//2 + 1, N)
return x, sympy.factorint(x)
while True:
p, a, Nt = gen_factor(N)
newx, factx = bach(Nt)
newx *= p ** a
if random.random() < math.log(N / 2, newx):
factx[p] = factx.get(p, 0) + a
return newx, factx
def gen(n):
return bach((1 << n) - 1)
if __name__ == '__main__':
t = time.perf_counter()
a = []
while time.perf_counter() - t < 10:
a.append(gen(500))
print('Generated', len(a), 'numbers in 10 seconds:')
print(*a, sep='\n')
```
[Attempt This Online!](https://ato.pxeger.com/run?1=hVRNj5swEL30xK-YGzbLElhppWoVcu2NS3vbriwHhoRVMI4xSvJbetlL-6P6azrmIyHbbWOJD8O8ec8zz_7xS5_stlFvbz87W95__v3pa1Xrxliopd1647uRqmjqaWarGr1p0p5qffI8r8ASNqhEKXPbGJbxJw9oHLbVDuGb6XCYu_EK6Zgxco9KWZaEkEXryoodqo3dMg73kPAzYk8IlsByCa8c7uZgujY4_TrHVyVBVpBdON3IG2Ur1eH5Y2YpbwaLBezn0Fn6piYpq7QvRrRrNmxPQjkEwBgj9B2JhNXK3Qdti5ucOgRJrH3ZIo2mxNwK3RzQsD2HxoCjSPgNPQkxyRtMhBxYqlYbahnT_Bph0HZG9YpoVXZs4lrm23P7KEcGS-KLIQjg8YI__t3DbLF4cBVxFfLecRzDUctgDxd-5P80yKSIOK4sdQ5QeKCM7rvTMSi2178hSEE70fJ_pVxeOks-gIewx76rU8_zrF-Iqn-NNmgZaYydF-VHJZ3pu2wNpsa8Y1Ave7CuGv1Ou6oEIZSsUQhIU_CFqGWlhPAHqCuJ2369c0TedMqScYaVO1s9v8yK-kEg0VhadBJfVigjqTWqgjmJj3HMSUbfhL5L_hdUaKTFwg-BNieTPARfdfUaTQuVcs5okbxXtE8-nwED6mCLOvW_K58PZ8t4xExHzR8)
This is a simple implementation of [Bach's algorithm](https://en.wikipedia.org/wiki/Bach%27s_algorithm), just to get the challenge going. Make sure you have `gmpy2` installed when running. Can generate around \$130\$ numbers on my computer.
[Answer]
# Rust + rand + bnum, score=4 on my PC
Basic implementation of Kalai's algorithm. Apparently it's not very good. The random rejection at the end rejects 99% of candidates so makes it take a lot longer.
```
use bnum::BUint;
use rand::{distributions::uniform::UniformSampler, Rng};
#[inline]
fn mod_exponentiate(mut base: BUint<16>, mut exponent: BUint<16>, modulus: BUint<16>) -> BUint<16> {
if modulus == (1u64).into() {
return 0u64.into();
}
let mut result: BUint<16> = (1u64).into();
while !exponent.is_zero() {
if exponent.digits()[0] & 1 == 1 {
result = result * base % modulus
}
exponent >>= 1;
base = (base * base) % modulus
}
return result;
}
#[inline]
fn miller_test(candidate: BUint<16>, mut d: BUint<16>, witness: BUint<16>) -> bool {
let mut x = mod_exponentiate(witness, d, candidate);
if x == (1usize).into() || x == candidate - BUint::<16>::from(1u64) {
return true;
}
while d != candidate - BUint::<16>::from(1u64) {
x = (x * x) % candidate;
d <<= 1;
if x == (1u64).into() {
return false;
}
if x == candidate - BUint::<16>::from(1u64) {
return true;
}
}
return false;
}
#[inline]
fn prime_test(candidate: BUint<16>, iterations: usize, rng: &mut rand::rngs::ThreadRng) -> bool {
if candidate == BUint::ONE {
return false;
}
if candidate == BUint::TWO {
return true;
}
if candidate == BUint::THREE {
return true;
}
if candidate.digits()[0] & 1 == 0 {
return false;
}
let mut d = candidate - BUint::<16>::from(1u64);
if !d.is_zero() {
d >>= d.trailing_zeros();
}
let distribution =
bnum::random::UniformInt::<BUint<16>>::new(BUint::TWO, &(candidate - BUint::TWO));
for _ in 0..iterations {
let witness = distribution.sample(rng);
if !miller_test(candidate, d, witness) {
return false;
}
}
return true;
}
#[inline]
fn kalai_algorithm(max: BUint<16>, rng: &mut rand::rngs::ThreadRng) -> (Vec<BUint<16>>, BUint<16>) {
loop {
let mut candidates: Vec<BUint<16>> = vec![];
while candidates.last() != Some(&BUint::ONE) {
candidates.push(rng.gen_range(BUint::ONE..*candidates.last().unwrap_or(&max)))
}
candidates.retain(|candidate| prime_test(*candidate, 8, rng));
if let Some(possible_output) = candidates.iter().cloned().reduce(|a, b| (a * b).min(max)) {
if possible_output < max && rng.gen_range(BUint::ONE..max) < possible_output {
break (candidates, possible_output);
}
}
}
}
fn main() {
let start_time = std::time::Instant::now();
let max = BUint::ONE << 500;
let threads: Vec<_> = (0..8)
.map(|thread_id| {
std::thread::spawn(move || {
let mut rng = rand::thread_rng();
loop {
let (factors, product) = kalai_algorithm(max, &mut rng);
if std::time::Instant::now() - std::time::Duration::from_secs(10) > start_time {
break;
}
println!("{thread_id}\t{product:?} {factors:?}")
}
})
})
.collect();
threads.into_iter().for_each(|i| i.join().unwrap());
}
```
Run with:
```
opt-level=3
lto=true
panic="abort"
```
[Answer]
# [C++ (gcc)](https://gcc.gnu.org/), score = 14406
```
#include <vector>
#include <chrono>
#include <cassert>
#include <map>
#include <random>
#include <cmath>
#include <cstdio>
#include <iostream>
#include <gmp.h>
#include <gmpxx.h>
std::minstd_rand rng;
gmp_randstate_t gmp_rng;
double prob[1011];
const int maxV = 510510;
#define Vfactors {2, 3, 5, 7, 11, 13, 17}
const int sqrtV = 715;
int sieve[maxV+1];
int primeps[maxV];
int primecnt = 0;
double logpq_sum[maxV];
int coprimes[92160];
std::uniform_int_distribution<> coprime_dist(0, 92159);
int coprimecnt = 0;
const double RAT = 510510. / 92160;
const double LOGV = 18.96157969569485;
void gen_factor(mpz_t N, int Nexp, double Nbase, mpz_t q, long int* qexp, double* qbase, mpz_t p, int* a, mpz_t Nq) {
const double invN = 1 / Nbase;
const double Nlog2 = Nexp + log2(Nbase);
int I;
for (I = 0; ; I++) {
int i = I;
double div = ldexp(invN*maxV, i-Nexp);
if (div >= 1) break;
prob[I] = (LOGV + i)*(1 + 1/(ldexp(maxV, i)-1)) + div*Nlog2;
}
int directI = I;
const double finvN = ldexp(invN, -Nexp);
prob[I++] = RAT * (logpq_sum[primecnt-1] + finvN * Nlog2 * (primecnt-1)); // small prime powers
std::discrete_distribution<> distribution(std::begin(prob), std::begin(prob)+I);
while (1) {
int J = distribution(rng);
if (J < directI) {
const int i = J;
mpz_urandomb(p, gmp_rng, i);
mpz_setbit(p, i);
mpz_mul_ui(p, p, maxV);
mpz_add_ui(p, p, coprimes[coprime_dist(rng)]);
if (mpz_cmp(p, N) > 0) continue;
long pexp;
double pbase = mpz_get_d_2exp(&pexp, p);
double p_d = mpz_get_d(p);
*a = 0;
double logp = pexp + log2(pbase);
double Nlogp = Nlog2 / logp;
double choice_probability = (LOGV + i) / logp + Nlogp * finvN * (ldexp(maxV, i) - 1);
#ifdef DEBUG
std::cout << choice_probability << '\n';
#endif
double f = std::uniform_real_distribution<>(0, choice_probability)(rng);
while (*a <= Nlogp && f >= 0) {
++*a;
f -= (ldexp(maxV, i) - 1) * pow(p_d, -*a) + (ldexp(maxV, i) - 1)*finvN;
}
if (*a > Nlogp) continue;
if (!mpz_probab_prime_p(p, 15)) continue;
mpz_pow_ui(q, p, *a);
} else { // small prime
double f = std::uniform_real_distribution<>(0, logpq_sum[primecnt-1] + finvN * Nlog2 * (primecnt-1) )(rng);
int l = 0;
int r = primecnt-2;
int ans = primecnt-1;
while (l <= r) {
int m = (l + r) / 2;
double v = logpq_sum[m] + finvN * Nlog2 * m;
if (v >= f) {
ans = m;
r = m-1;
} else {
l = m+1;
}
}
int pv = primeps[ans];
mpz_set_ui(p, pv);
double Nlogq = Nlog2 / log2(pv);
f = std::uniform_real_distribution<>(0, 1 + Nlogq * (pv-1) * finvN )(rng);
*a = 0;
while (*a <= Nlogq && f >= 0) {
++*a;
f -= (pv-1) * (pow(pv, -*a) + finvN);
}
if (*a > Nlogq) continue;
mpz_ui_pow_ui(q, pv, *a);
}
*qbase = mpz_get_d_2exp(qexp, q);
mpz_fdiv_q(Nq, N, q);
int is_odd = mpz_odd_p(Nq);
if (is_odd) mpz_add_ui(Nq, Nq, 1);
double Nqd = mpz_get_d(Nq);
if (!std::bernoulli_distribution(Nqd / (ldexp(Nbase / *qbase, Nexp - *qexp) + 1))(rng)) continue;
if (is_odd) mpz_sub_ui(Nq, Nq, 1);
return;
}
}
void bach(mpz_t v, mpz_t target, std::vector<mpz_class>& factors) {
if (mpz_cmp_ui(v, 1e7) < 0) {
unsigned int vI = mpz_get_ui(v);
int x = std::uniform_int_distribution<>(vI/2+1, vI)(rng);
mpz_set_ui(target, x);
factors.clear();
for (int d = 2; d*d <= x; d++) {
while (x % d == 0) {
factors.emplace_back(d);
x /= d;
}
}
if (x != 1) {
factors.emplace_back(x);
}
return;
}
mpz_t q, p, Nt;
mpz_inits(q, p, Nt, 0);
long int Nexp;
double Nbase = mpz_get_d_2exp(&Nexp, v);
while (1) {
int a;
long int qexp;
double qbase;
gen_factor(v, Nexp, Nbase, q, &qexp, &qbase, p, &a, Nt);
bach(Nt, target, factors);
long int targetexp;
double targetbase = mpz_get_d_2exp(&targetexp, target);
double logv = (log2(Nbase) + Nexp - 1)/(log2(qbase) + qexp + log2(targetbase) + targetexp);
if (std::bernoulli_distribution(logv)(rng)) {
for (int i = 0; i < a; i++) factors.emplace_back(p);
mpz_mul(target, target, q);
mpz_clears(q, p, Nt, 0);
return;
}
}
}
void gen(int n, mpz_t target, std::vector<mpz_class>& factors) {
mpz_t v;
mpz_init2(v, n);
mpz_setbit(v, n);
mpz_sub_ui(v, v, 1);
bach(v, target, factors);
}
int main() {
rng.seed(time(0));
gmp_randinit_lc_2exp_size(gmp_rng, 64);
time_t end = time(0) + 10;
sieve[0] = sieve[1] = 1;
for (int v : Vfactors) {
for (int i = v; i <= maxV; i += v) sieve[i] = 1;
}
for (int i = 1; i < maxV; i++) if (!sieve[i]) coprimes[coprimecnt++] = i;
for (int v : Vfactors) sieve[v] = 0;
double logpq_sum_v = 0;
for (int v = 2; v <= maxV; v++) {
if (!sieve[v]) {
if (v <= sqrtV)
for (int i = v*v; i <= maxV; i += v) sieve[i] = 1;
logpq_sum[primecnt] = logpq_sum_v += log2(v) / (v-1);
primeps[primecnt++] = v;
}
}
int i;
int tsz = 0;
int primecnt = 0;
for (i = 0; time(0) <= end; i++) {
mpz_t target;
mpz_init(target);
std::vector<mpz_class> factors;
gen(500, target, factors);
tsz += factors.size();
if (factors.size() == 1) primecnt++;
#ifdef OUTPUT
mpz_out_str(stdout, 10, target);
printf(" = ");
for (int j = 0; j < factors.size(); j++) {
if (j) printf(" * ");
std::cout << factors[j];
}
printf("\n");
#endif
mpz_clear(target);
}
std::cout << "generated " << i << " numbers\n";
std::cout << "prime probability " << primecnt/double(i) << ", expected apprx. " << 0.0028879 /* (Li(2^500) - Li(2^499)) / 2^499 */ << '\n';
std::cout << "average number of prime divisors " << tsz/double(i) << " expected apprx. " << log(500 * M_LN2) + 1.0345 /* B_2, see Wikipedia */ << '\n';
}
```
[Try it online!](https://tio.run/##pVltb9s4Ev7uX8G2uKzkl9hy66SukwBb7GLhouseDu3eh65PkCXZYap3yaq3hf/65mb4YpES3St6RhJL5MxwZjjzcIbxs2y08/3Hx2c08aN9EJKbOvSrtLjrNSP@fZEmqTbilWVYVOpQ7GXqa@ElQRprPLFX3WsDZRVQTSxNy6oIPY1tF2eX962BwwGHesD/6lVME/h2cT1SJLtFD@bZW1l5VehWhL3jRJDuN1FIsiLdfHQmjrNe9PwUmAlNKhJ7hz/ILZk5E/hZ9J4F4ZYmIflj66E3SvJ1OiTPh2Q2JNdD4jjwC2/O9VERUeZFhTKundmixwZoWIcfUfIAF8OhrKBxmJVsUB3y4eGWTE5KRukuy91yH6uUfspoy4/zqXM1gUHmgH1Ct2kRu0DhBhQcSDf7iqbJzZ1kYMPWZEiAbza3NWGnhbkdYvl//fz@5IxLMiZswRbN23e/obXOy8v5lTO7nl/NZ1fzFy/B9l6vTmlAdmHicvdZcfYFdmI1ZH5ahYdsKKWsNl4ZDgknyIdgeLJDqj7JFTJ4U@myISfx5MAqt8nXHoGPpiJN6hWqCBawdRZdkhV4ego0qBQZoN@nFqO1OTEqvOSP4GViLZm3yIIsBwO5pqSjMCdo8SNWCGgN41EAC1ioUB93FAwY4ZJ2Q063xELaO1DYJhvIg0/NJAva5RoEWczvA0LtvuXAtzO2uGwh1h45tg3jIKrPjONCjidrAlpAhi8bXTV/bIXPGn2HRNWUKzIYoCoYJX1iNbEqI2rkrEEDLqovXAyEzbRtL8h4TMrYiyKeACRLP4dFydZgYQ0x6xdhFbZjWn21GOUm3NHEQsXsIWmPDJZC8c/3FMyznPamvQFDNJmAFa1deUNupNdU7sZ3cvPfLLRJjM09B8KNBTErkAg3qUtYhtWGVkhmmo33kbunOAs/uNMGGi8IGpoTVmgYgLatW6xoIbL7cYa8K5vckYmNllU02UPOaNQsPzOIB12IxFbMHHAEytuFgEfuFMPoImO5jDFk5HIDlcfq0PU9jlEmZow@mM2U/M2U/G1RrwQ5j8kx4zbL9e9T6ocuBpG3oRGt/tKST/DCMxfZP4V7Kx3JCNK5tcQzuoXzhfzy6@sPv2kTLHr9dF@RmxuTBjD605/JT7ppz8IkoFujEVvQWTskAFWiVkbhwdBdyhZ5oEkVOQTbcXMr7L64gEUAsibtzMDPYND3Fp3RLRndGr0EzgMUsCAcAHP6HqKYiazPPK3LPfY6MQ1a3nElzwYzkj3BuOOGuzxTWBo4M/ssG@NIP2Oy5SzZQNdGnSMJI0iCry2A@3@250cQltgtJJOAF/Fcag8XmESSfdqd95JSpXAWpsiIMDAKUyiwGgszKAK9C0yfaTcyhFvYedkUQCZL4y4zbiY7Pbem9fHDTTCw4gftj9tmqftp5EJnxgMTV@/8G6v6aulNqAZBsbXxRJB4Xrf28Ry05Tq0ARTW7Rz@3phzBLTlLK7qEUtPvg1GbDBidAcw8h8HDKmDxTCiPkEE08n@fjjIv5nXe6qmdt3O7Yahn5vPOl625qp7kGIL9ZibWyuQuuLTWuVYumkgD0F4Agxa5a0qhNPY6lHPpMGvY3eqzlWun6kdcU9EpVQk6T6KqBYBFnKPJfiychhe@6IGZ6XyCF6xKsQK1OYBofr1nOLlfnNOcSj29kUiq9WjaCI2nn8v2odaVvuVV4BRotbj7eoNq2AiaEvvIL54zyYDTClwcG0Q44TXNtR0Wgjuk5LukjBg@1EvFechT2u/Du0k6jZfVr0cTwfQKNbLNhIryS1NOSjTQv1LPwq9wlInsAFhJTwsP12QoB9gXh3gSW9GlNQ7kH8g@Zl8k0uFcRZ5UACAtz9Zgd1NwQMZQ5m8OANqR22/D@QJa2H05YxLHbTcMkeC9BhrD7FArRanMZrQqrTk@BCM5HOyi2SxyofUftNQofKmtP4fzYICTqclcq0YFsvkTbuJH6UVroeiARadLyh/wTHjQuQXPnpoj@IclgZooQwYGeMGhTiJSSs@c8YDJza5SBdUAD1rdoY3XTKeEhwPHHvMJ3I5kSs1ebM0zpzWaoHStzAJF5dA0wotmReUN@cUctuDL0wKY9hl5g7rlI3yOzfQsaw0xZwpepsIbhANYoEpm/wgnAkw1JNginGV2M2gaCfboxx@YbRuwJfFVm0KLVCZ341BN43LM3LYgcsyDAOrguLFmthCirx2Q23cyGdB5Zb0S2id2t6rF4IWOcEG6Ftgw4QYPEhEWcrvzSZ4xcAfHXx0lFsYhtHk1el6To0ILRpqFg23rGXGxwEM2UIqVaQeex1WhweS4MRY4sem4LU7LTaUxfxehH5TUy6gXjdlePvOz62bOUUIw/y6saZu3UA12tXrdorw4hhY2SWlfT596v73uqzBnXZzslbrdzBmcMsxoMay38IyTpcgy2Ddi3U3hU7lUnM3V5VfGmd1r1Mb@zg0yGAD@yD6xL5@1U5mmZD6eY1hbXVw0ZyyMoM0/Ldmk8m34BsNAUdJvGKZ00JHfQ4PdTigGqc1xOJ@4d2H9//88F4zI91XLmAqAi08AgZMDGgPIpNqaz0Flz01lR8P3JcPkB0tdclDtxBBzR/sRmhfE9q59RASPz6sTaWBlPJnogoRNyAdmNY37NjrLPYUNiYsvArKvqf4TtkgSfYxHEIlLLIw8Ij7SuVahvHKjRjzdLaozaiHBIAQIgSW8LKsOFxy6snlZDJ9@fJ6TsbQ0ryl1vQ/ECB4wcGeX8znNmuS8Yn0x/rNj66PV4MJu1BoTdKtuFGFjoOW@L8LtiDEV0szs2KQqRiqsE2/u29XU4bLl5PnL2ao6Gt3CudUGJJ/0080CwPqdXTrHR8f//a3kbcrH0cRYD//ezg8jt49/y8 "C++ (gcc) – Try It Online")
Can output around 15,000 numbers on my computer. Compile with `-lgmp -lgmpxx -O3`. Please make sure there aren't other programs active while running this, because I've noticed that on my computer it changed the number by almost 1,000, even with just Firefox.
## Explanation
This is an implemention of Bach's algorithm, although with a lot of optimizations.
The main function is `gen_factor`, which given \$n\$ returns \$q = p^\alpha\$ with probability \$\log(p) \#(\frac{n}{2q}, \frac nq] = \log(p) \lfloor\frac{\frac{N}{q} + 1}2\rfloor\$, where \$\#(a, b]\$ is the number of integers in that range.
We approximate that the floor isn't important, and then use rejection sampling to get back the appropriate distribution.
After multiplying by (the constant) \$\frac2N\$, we get \$\log(p)(\frac1q+\frac1N)\$. Now we group the terms by \$p\$, and for a given \$p\$ we have its probability being $$\log(p) \sum\_{\alpha=1}^{\lfloor \log\_p(N) \rfloor} (\frac1{p^\alpha}+\frac1N) = \log(p) (\frac1{p-1} - \frac1{p^{\lfloor \log\_p(N) \rfloor}} + \frac{\lfloor \log\_p(N) \rfloor}N) \leq \frac{\log(p)}{p-1} + \frac{\log(N)}{N}$$
We split the range to \$[2, 510510)\$, and \$[510510 \cdot2^i, 510510 \cdot2^{i+1})\$ for all \$i\$. For the first range, we precalculate stuff to get numbers with the correct probability. For each of the \$[510510 \cdot2^i, 510510 \cdot2^{i+1})\$ ranges we notice that the probability is decreasing, so we can just take the probability for \$p = 510510\cdot 2^i\$ and use rejection sampling. To lower the amount of numbers we have to generate, we require the numbers to be coprime to \$510510 = 2\cdot3\cdot5\cdot7\cdot11\cdot13\cdot17\$, so we need to multiply the probability by \$\frac{510510}{\varphi(510510)}\$ for the other segment.
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 66 bytes, score 0 (usually)
```
≔X²NθW¹«≔⟦⊕‽⊖θ⟧υW⊖⌊υ⊞υ⊕‽⌊υ≔Φυ▷”8±cGNºb6﹪←”κυ¿∧‹Πυθ‹‽θΠυ«⟦I⊞OυΠυ⟧D⎚
```
[Try it online!](https://tio.run/##ZU85a8MwFJ7tXyEyPYFa0kKnTiFJIdDDdOgSMqi2Uovoio6EUPLbVT1jiKFa9I7vem3PfWu5ynkRgvwx0Niz8PDIyMa4FN@T/i4tpYwc6XN97qUSBB4o@a2rkbDdmNYLLUwUHXxy01kNK3EbHSmlO0ZSoVcjf7p@k0bqpCEVGGlS6CGh9z/JKQ6lRvcXqWIJWDjrE1df3MMsXLS73MvgvNRixsgB0w/2ck9gYTpE4/cqQoDG2y61sejiiYwMw9ET@9seH95dNV6aCNslDxEw8YcTnkc7pJjCd@hZrZJ2MFRLJUo@LK/1Neen@TzfndQf "Charcoal – Try It Online") Link is to verbose version of code with extra check because the version of Charcoal on TIO returns `None` for the product of an empty list and I can't use the version of Charcoal on ATO for multiple reasons. Note that you need to interrupt (`^C` if running locally or TIO's button) the code manually after ten seconds otherwise it will never print anything. Explanation: Uses Kalai's inefficient algorithm.
```
≔X²Nθ
```
Get `2ⁿ`.
```
W¹«
```
Repeat forever.
```
≔⟦⊕‽⊖θ⟧υ
```
Start with a random integer between `0` and `2ⁿ` exclusive.
```
W⊖⌊υ
```
Until a `1` is generated...
```
⊞υ⊕‽⌊υ
```
... push a random integer between `1` and the previous integer to the list.
```
≔Φυ▷”8±cGNºb6﹪←”κυ
```
Filter out all non-primes from the list.
```
¿∧‹Πυθ‹‽θΠυ«
```
If the product is less than `2ⁿ` and passes a random chance, then...
```
⟦I⊞OυΠυ⟧D⎚
```
... output the primes and their product.
83 bytes for a version that times itself:
```
≔X²Nθ≔▷clock⟦⟧ηW‹⁻▷clock⟦⟧ηχ«≔⟦⊕‽⊖θ⟧υW⊖⌊υ⊞υ⊕‽⌊υ≔Φυ▷”8±cGNºb6﹪←”κυ¿∧‹Πυθ‹‽θΠυ⟦I⊞OυΠυ
```
[Try it online!](https://tio.run/##dZBJa8MwEIXPya8QOY1ALW6hp55CFwh0MT30YnxQZbUW0eJoSQilv10dGdMYSk5iZj6992ZEz71wXOe8DkF9WajdQXq4ZmRjhxRfkvnAklJGdvR2OTEPe67fuYeV0E5sV4w0LQI9AodeaUngSYYAz8qmcJZl5KqilHwvF5Nos7HCSyNtlB28cds5A/fy1NpRSltGErosJpv5GN2USQYSYqROoYdUdvgnOeeK1OT@qHTERfHPX@BwNMPxUoXBKyMx@LZcYbRXnwTWtit0ecZta@@6JCLqllMxMjYnz1Kf5nRM6JWN0NzxEKGkfR2k59GNCeZoi34/Od9UVb7Y618 "Charcoal – Try It Online") Link is to verbose version of code with extra check because the version of Charcoal on TIO returns `None` for the product of an empty list and I can't use the version of Charcoal on ATO because it doesn't have access to `sympy.isprime`. Note that the timing is approximate and might generate an extra result which actually finished outside the desired time.
64 bytes for a version that finds one factorisation and exits:
```
⊞υX²N≔⊖⌈υθW∨›Πυθ›‽θΠυ«≔⟦⊕‽θ⟧υW⊖⌊υ⊞υ⊕‽⌊υ≔Φυ▷”8±cGNºb6﹪←”κυ»I⊞OυΠυ
```
[Try it online!](https://tio.run/##bY9NSwMxEIbP3V8ReppAWorgqSfRKj1oFw9exEPcHbqh@dhOktYi/vaYyK61YG4ZnneeeZtOUuOkTqmOvoMoWO2OSHAl2Nr2MTxF856/nPNldeO92lq4w4bQoA3YwqP8UCYaiJwLts/MsVMaGWwIHghlyNGaXBubkJFCCDbOn6VtnYEyOiP5sc9qMphe1/as@uX5m2AxqyaD6@IeZcd7OBsb/bPlL1dWDcJ7pctpObM6SP0iCab@ZPrTXPmelMGpYLvStOi/qpqUDXArfYCi2vRIMrif@EWjZUrXi0WaHfQ3 "Charcoal – Try It Online") Link is to verbose version of code. Still usually crashes out because it can't calculate the product of an empty list, and even when it does find a result, it usually takes more than 10 seconds, but just in case, here's a bash script that restarts the program on error and times out after 10 seconds:
[Try it online!](https://tio.run/##S0oszvj/vyQzNzW/tERBt1jBIzRAwdBAIQksXp6RmZOqYMWVkq@gn19Qop@ckViUnJ@YA2co6CYrqD/qmne@9f2eHYc2vd@z7lHnlEdd0x71dJxvPbfj/Z7tjzpWPGrYdW4BiAtkPGrYe24HiHdoNUjl/GWPuqaCxR7NXw4yZDtYc9f5VrChEEkIv3PKuWVAatr2Rw1zLQ5tTHYHWnZoV5LZ@52rHrVNAAqe2wU0dff7PSuBWt/vWQ@0EGiNuoJupoKpgYGCkZ1@SmqZfl5pTo6CmppCanJGPowGei8vFQA "Bash – Try It Online")
[Answer]
## Jelly (12 bytes) Score: 0
Edit: old code was wrong
>
> 2\*³XȮÆ!Ṅ
> ç1¿
>
>
>
New code:
2\*³XȮÆEṄ
>! ç1¿
```
2*³..... 2^input
...X.... Pick a random number in [0, 2^input)
....Ȯ... Print the random number
.....ÆE. Factorize it
.......Ṅ Print the factors and go to line
ç1¿..... Loop the function above forever
```
Old code:
>
> Jelly beginner, the code can likely be shortened. It generated 141'808 random numbers between [0, 2^500) in 10 seconds on my MacBook Pro M2, the generated filesize is 68Mb.
> Try the code here: https://tio.run/##ASAA3/9qZWxsef//MirCs1jIrsOGIeG5hArDpzHCv////zUwMA
>
>
>
New code has a score of 0.
Testing code:
```
> ./jelly fu prime.jelly 500 > primelist.txt & pid=$!; sleep 10; kill $pid
> wc -l primelist.txt
```
] |
[Question]
[
# Context
After ["Computing a specific coefficient in a product of polynomials"](https://codegolf.stackexchange.com/q/198779/75323), asking you to compute a specific coefficient of polynomial multiplication, I wish to create a "mirror" challenge, asking you to compute a specific coefficient from polynomial division.
# Polynomial division
Let us establish an analogy with integer division. If you have two integers `a` and `b`, then there is a unique way of writing `a = qb + r`, with `q, r` integers and `0 <= r < b`.
Let `p(x), a(x)` be two polynomials. Then there is a unique way of writing `a(x) = q(x)p(x) + r(x)`, where `q(x), r(x)` are two polynomials and the degree of `r(x)` is strictly less than the degree of `p(x)`.
# Algorithm
Polynomial division can be performed through an iterative algorithm:
1. Initialize the quotient at `q(x) = 0`
2. While the degree of `a(x)` is at least as big as the degree of `p(x)`:
* let `n = degree(a) - degree(p)`, let `A` be the coefficient of the term of highest degree in `a(x)` and `P` be the coefficient of highest degree in `p(x)`.
* do `q(x) = q(x) + (A/P)x^n`
* update `a(x) = a(x) - p(x)(A/P)x^n`
3. `q(x)` is the quotient and what is left at `a(x)` is the remainder, which for our case will always be `0`.
# Task
Given two polynomials `a(x)`, `p(x)` such that there exists `q(x)` satisfying `a(x) = p(x)q(x)` (with all three polynomials having integer coefficients), find the coefficient of `q(x)` of degree `k`.
(Yes, we are assuming the remainder is `0`)
# Input
Two polynomials (with integer coefficients) and an integer.
Each input polynomial can be in any sensible format. A few suggestions come to mind:
* A string, like `"1 + 3x + 5x^2"`
* A list of coefficients where index encodes exponent, like `[1, 3, 5]`
* A list of `(coefficient, exponent)` pairs, like `[(1, 0), (3, 1), (5, 2)]`
An input format must be sensible AND completely unambiguous over the input space.
The integer `k` is a non-negative integer. You may take it in any of the usual ways. You can assume `k` is less than or equal to the differences of the degrees of `a(x)` and `p(x)`, i.e. `k <= deg(a) - deg(p)` and you can assume `deg(a) >= deg(p)`.
# Output
The **integer** corresponding to the coefficient of `x^k` in the polynomial `q(x)` that satisfies the equality `a(x) = q(x)p(x)`.
# Test cases
The input order for the test cases is `a(x)`, `p(x)`, integer `k`.
```
[12], [4], 0 -> 3
[0, 0, 6], [0, 3], 0 -> 0
[0, 0, 6], [0, 3], 1 -> 2
[0, 70, 70, 17, 70, 61, 6], [0, 10, 10, 1], 0 -> 7
[0, 70, 70, 17, 70, 61, 6], [0, 10, 10, 1], 1 -> 0
[0, 70, 70, 17, 70, 61, 6], [0, 10, 10, 1], 2 -> 1
[0, 70, 70, 17, 70, 61, 6], [0, 10, 10, 1], 3 -> 6
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 0 -> -5
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 1 -> 7
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 2 -> -10
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 3 -> -8
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 4 -> 1
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 5 -> 0
[0, -50, 20, -35, -173, -80, 2, -9, -10, -1], [0, 10, 10, 1], 6 -> -1
```
---
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") so shortest submission in bytes, wins! If you liked this challenge, consider upvoting it... And happy golfing!
(This is **not** part of the [RGS Golfing Showdown](https://codegolf.meta.stackexchange.com/q/18545/75323))
[Answer]
# [MATL](https://github.com/lmendo/MATL), 6 bytes
```
Y-PiQ)
```
The inputs contain the coefficients in order of decreasing powers.
[Try it online!](https://tio.run/##y00syfmf8D9SNyAzUPO/S8j/aDMFM0MFcwMFQ3MQCUQGsVzRhgqGBiAEZBsAAA) Or [verify all test cases](https://tio.run/##lY/BCgIxDETv/Yq5eghk0m2rdz9AwctSFvQo6M3/ry3iRUQ3EIYMmReS@@Vxa@c2y@F63LT9qVXaEuq0BA01Q6HdxaGfnsNnoihYhpbXkKCOeiO/Iyu22P9IDFUI6UZ2MMi2NywREhOs9@nbaU6CbsLchP@PyU0kN5Gf)
### Explanation
>
> [(De)](https://codegolf.stackexchange.com/a/67650/36398)[convolution](https://codegolf.stackexchange.com/questions/104655/natural-pi-2-river#comment254339_104685) [is](https://codegolf.stackexchange.com/a/198788/36398) [the](https://codegolf.stackexchange.com/a/105820/36398) [key](https://codegolf.stackexchange.com/a/89194/36398) [to](https://codegolf.stackexchange.com/a/67650/36398) [success](https://codegolf.stackexchange.com/a/112819/36398)
>
>
>
```
% Implicit inputs: two numerical vectors
Y- % Deconvolution
P % Flip
i % Input: integer
Q % Add 1
) % Get the entry at that position
% Implicit display
```
[Answer]
# [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 31 bytes
```
Coefficient[Factor[#/#2],x,#3]&
```
[Try it online!](https://tio.run/##rdA9C4MwEAbg3V9RFLokoflQo0NBKHTuLgZE1DqoIBnu36eJUGlLO1SyhNxd3ickY63v7VjroalNfzaXue26oRnaSZfXutHzUkaniFcYcCSqo7ktw6QPRV8yjmNMq2BtFGEYbJMUFMcCtuFrj/0IpChloBIkKagYMQlKrHvuVuwqtlZ2/XT/ibL9Ub4/Kr49mpKEAuLuEBGJDRAmhbVIRp3L7RUkByWJczICKsfUaU/XJt5@wofHPHvcsyc8e7FnL/HspVVgzAM "Wolfram Language (Mathematica) – Try It Online")
[Answer]
# JavaScript (ES6), 81 bytes
Takes input as `(a,p,k)`. The polynomial coefficients are expected from highest to lowest.
```
(a,[c,...p],k)=>a.slice(p.length+k).map((_,n)=>p.map(v=>a[++n]-=v*q,q=a[n]/c))&&q
```
[Try it online!](https://tio.run/##bVDbboMwDH3nK/xQVckIGSkrbGLp274iitaIhbaDcq3QJMS3M4et6jbtwec4xz62lXczmD7rTs0lqOo3O@dyJoapjHHOG80KKneG9@Ups6Thpa0Ol6NfUH42DSGvrMJyszwG7FO@X@lADncta6VRlb7PKF2v2zlVHoBSYqMZqAeEULNFCTFlEDsZOUIWt0ryHSL54ljcWsU19GK7WoItwsYl0RZBJBHio9OQn5ziauKfIbH2tMfzunsx2ZEQZRg0DM7mQ1OQOxhxQ1ZXfV1aXtYH4so09VBFCylAQphCAc/SWTDzfbp4frv2LVmNxYQTYTXmROEfG807O9iut4TiVcuv/1QKOu0pDpr@HIDLJzp/Ag "JavaScript (Node.js) – Try It Online")
[Answer]
# [Python 3](https://docs.python.org/3/), ~~51 49~~ 48 bytes
Input: `a`, `p`, `k`. The format for the polynomials `a` and `p` is a list of coefficients, in order of highest to lowest degree.
```
lambda*p,k:numpy.polydiv(*p)[0][~k]
import numpy
```
[Try it online!](https://tio.run/##pZLBboMwDIbvPIXFLqEKiECBrlL7FLsxDkwNbdQUoiR047JXZw5dhSZt0toeYgf//r8IJ2qwh65Nx2bzOsr69LarF4oe121/UkOkOjnsxJksVFDGVfl5rDxxUp22MOnj@0FIDi@652sPDGxAtKq3JIiMksISH8It@IEHNUXmhp9rSQyCsPIEstZ7bizwD9W1vLXQCG0s9kaan7k2nGCb@vGhRWtJQy60Y0DBD7c@BVOyKhhLllQUyiWG2J2bemWMWwq5K2NOr0r8m8KckkxK8b1Ycck5m1vZdV1hxU0WNp//X0viLOwmS@os@WQJMwyJ26QZBlakGFeuhvnZVZzG/vq7MHuQwuYZ3Q@ZRoDyg5hpLOHqQcpyvo/7Idn8Du6H5JexfAE "Python 3 – Try It Online")
[Answer]
# [Pari/GP](http://pari.math.u-bordeaux.fr/), 24 bytes
```
f(a,p,k)=polcoeff(a/p,k)
```
[Try it online!](https://tio.run/##rVDLCsIwEPyV0FMCKXaTPvSg3@A95FCklWKxoQTBr4@7aNVTtcbDzsxOdickrh679OhCaHktnTyJrRv6w9C02K@oD7Vz/ZV7lu6YG7uz52Y/9GNz4d6AFZI9O0WdN9paltB0wlr@aVQgG2NAWeQcISNhMhSSlaSR9YwPk189Cqo7l/AahKneg75dWHyDWrqgp4W0QFAkdIEAlUZck4e8IYfOYO5Vv0dAfISKj/jDX@TxEUV8RGmtCDc "Pari/GP – Try It Online")
] |
[Question]
[
Given a string that is potentially boxed in, toggle the box. This becomes clearer in the test cases and explanation.
# Input / Output
### Input Format
The input will be either a single string separated by CR, LF, or CRLF, or a list of strings. The input format is up to you to decide.
### Output Format
The output format must be in the same format as the input.
# Explanation + Example
Let's take a boxed string as an example:
```
+-------------+
|Hello, World!|
+-------------+
```
To toggle the box, we remove the first and last row and the first and last column. You may assume that there will be no trailing whitespace after the last line (with an optional trailing newline at the end of the last line), and no trailing whitespace on any line, not counting the newline of course.
This would become:
```
Hello, World!
```
# The Other Way
If the string is *not* in a box, add a box to it. This is fairly simple; prepend `+---...---+` on its own line with `k` dashes where `k` is the length of the longest line, and then for each line, pad it with trailing whitespace to match the length of the longest line and then prepend and append a pipe character (`"|"`). Finally, append a line containing the same `+---...---+` setup as the first line.
For example:
```
Hello, World!
```
becomes:
```
+-------------+
|Hello, World!|
+-------------+
```
You may assume that none of the lines in the input will have trailing whitespace.
Another example of a string that should have a box put around it:
```
Hello,
World!
```
becomes
```
+----------+
|Hello, |
| World!|
+----------+
```
An example of something that should still be boxed:
```
+--------+
| |
--------+
```
becomes:
```
+----------+
|+--------+|
|| ||
| --------+|
+----------+
```
# Rules + Specifications
* Standard Loopholes Apply
* No line of input will have any leading or trailing whitespace both overall and in each line, regardless of whether or not it has been boxed in
* Boxes will only have `+` as their corners and `|` for the vertical edges and `-` for the horizontal sides.
* A box must have its pluses in place to be considered a box; if it has height or width 2 (that is, no content), it should still be unboxed, which would result in a bunch of newlines, depending on the height of the box.
* If the input has a box but text outside of the box, the whole thing should be boxed.
* Your program must check the entire perimeter of the string. If a single character along the outside is not correct (either missing or a different character than what it should be), then it should be boxed, not unboxed.
* The unboxed string itself may contain `+ | -`. If the unboxed string itself has a box around it, return the string with the box; it should only be unboxed once.
# Edge Cases
### 1: Small boxes
Input:
```
++
++
```
Output is a empty or a newline
Input:
```
+----+
+----+
```
Output is empty or a newline
Input:
```
++
||
||
++
```
Output is 2 newlines or 3 newlines
### 2: Partial Box
Input:
```
+-------+
| Hello |
+ ------+
```
Output:
```
+---------+
|+-------+|
|| Hello ||
|+ ------+|
+---------+
```
### 3: Text outside of box
Input:
```
+-------+
a| Hello |
+-------+
```
Output:
```
+----------+
| +-------+|
|a| Hello ||
| +-------+|
+----------+
```
[Answer]
## JavaScript (ES2017), 199 bytes
```
s=>/^\+-*\+\n(\|.*\|\n)*\+-*\+$/.test(s,s=s.split`
`,s.map(z=>z[y]?y=z.length:0,y=0))?s.slice(1,-1).join`
`.replace(/.(.*)./g,"$1"):(x=`+${'-'.repeat(y)}+`)+`
|${s.map(z=>z.padEnd(y)).join`|
|`}|
`+x
```
The naive solution. May or not be the best, we'll see...
[Answer]
# [SOGL V0.12](https://github.com/dzaima/SOGL), 72 [bytes](https://github.com/dzaima/SOGL/blob/master/chartable.md)
```
2-┌* +1Ο;2-⁴┌@ŗΖ+|ŗ∙⁴++B
▓Aa1w⁄;lGB╬8a⁰I{_=}¹χ?ajk{jk}⁰←a1w⁄;l2+G2+B00╬5
```
[Try it Here!](https://dzaima.github.io/SOGLOnline/?code=Mi0ldTI1MEMqJTIwKzEldTAzOUYlM0IyLSV1MjA3NCV1MjUwQ0AldTAxNTcldTAzOTYrJTdDJXUwMTU3JXUyMjE5JXUyMDc0KytCJTBBJXUyMTkyJXUyNTkzQWExdyV1MjA0NCUzQmxHQiV1MjU2QzhhJXUyMDcwSSU3Ql8lM0QlN0QlQjkldTAzQzclM0ZhamslN0JqayU3RCV1MjA3MCV1MjE5MGExdyV1MjA0NCUzQmwyK0cyK0IwMCV1MjU2QzU_,inputs=JTIyKy0tLS0tLS0rJTVDbiU3QyUyMEhlbGxvJTIwJTdDJTVDbislMjAtLS0tLS0rJTIy)
+7 bytes (`⁰I{_=}¹χ`) because elementwise equals isn't implemented
+1 byte (`▓`)because input isn't guaranteed to be square
+1 byte (`A`) for me being lazy and not implementing typed inputs (so this expects input on the stack. For ease-of-use, the online link includes → so the input box can be used)
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 46 bytes
```
ẋ2jЀ
z©⁶”|çZṖ”-çµḢ⁾-+yWWçWẎZ
ḊṖZḊṖÇ
Ỵ®2ĿÇ⁼$?Y
```
[Try it online!](https://tio.run/##y0rNyan8///hrm6jrMMTHjWt4ao6tPJR47ZHDXNrDi@PerhzGpCle3j5oa0Pdyx61LhPV7syPPzw8vCHu/qiuB7u6AIqiIJQh9u5Hu7ecmid0ZH9h9sfNe5RsY/8//@/ti4caHPVeABty9dRAIIarhoQFZ5flJOiWMOFrAwA "Jelly – Try It Online")
[Answer]
# [Retina](https://github.com/m-ender/retina), ~~197~~ 195 bytes
```
+m`^((.)*)(¶(?<-2>.)*(?(2)$|(.)))
$1$#4$* $3$#2$*
%`^|$
|
^.(.*).
+$.1$*-+¶$&
.(.*).$
$&¶+$.1$*-+
^(\+-*\+)¶(\|\+-*\+\|)¶(\|\|.*\|\|¶)*\2¶\1$
¶$&¶
..(.*)..(?=(.|¶)*¶$)
$1
^¶-*¶-*¶|(\G|¶)-*¶-*¶$
```
[Try it online!](https://tio.run/##NU5LCsIwEN3PKSodyySxA40u1S71Bm5CqGAXQrVQXOZcOUAuFhNjB@bz3hvezDJ@nu97jOo1WCIWUlDw1B9bfU6AetICXeKFAOywPqCscI@1Th22g3UIDiwTS8GgkDuUrQoeGygcAjbBrwJYMqqVRol0w7gyG/dHjmWuwQtpdPCmQ8hOwQMXM6b@RPxbSEJ@CGzwrSzpyFyytmKEGK/jNM07qFLc5mV6bL4 "Retina – Try It Online") Explanation:
```
+m`^((.)*)(¶(?<-2>.)*(?(2)$|(.)))
$1$#4$* $3$#2$*
```
This stage is quite complicated in itself, so I'll break it down a bit. `+` means that the stage repeats until no more replacements can be found. `m`^` means that the stage matches at the start of any line. `((.)*)` then matches the whole line. Now `$1` is simply the matched line, but `$2` is a list of matches i.e. characters. `(¶` then matches the end of the line and therefore the start of the next line. `(?<-2>.)*` uses a .NET balancing group. The `<-2>` removes matches from `$2` as long as a character can be matched on the second line. At this point, one of three things can happen:
* There weren't enough characters on the second line. `$2` still has some matches left.
* The two lines were exactly the same length. `$2` has no matches left, and we are at the end of the line.
* The second line is longer, so there is at least one character left over.
`(?(2)$|(.)))` helps distinguish these using a condition. If `$2` still has some matches left, then we need this to be because the second line is too short, so we match the end of the line, but if `$2` has no matches left, then we want the second line to be longer, so we match a character (which goes into `$4` so that we know that the match happened). Otherwise the two lines are the same length and the match fails at this point (it might match again at a later line of course).
The replacement string is `$1$#4$* $3$#2$*`. The `$#4` evaluates to `1` if we matched an additional character on the second line, `0` if not. This means that `$#4$*` adds a space to the first line if the second line was longer. Similarly `$#2$*` adds spaces to the second line if the first line was longer. (In fact, it ends up adding exactly the right number of spaces. If we were only balancing two lines, a `+` could have been added to the fourth capture group to achieve this directly for the case of the longer second line too.)
The upshot of all this is that this stage pads out the input into a rectangle. We can now draw a box around it.
```
%`^|$
|
```
Place `|`s on each side.
```
^.(.*).
+$.1$*-+¶$&
```
Place `+-...-+` on the top.
```
.(.*).$
$&¶+$.1$*-+
```
And again on the bottom.
```
^(\+-*\+)¶(\|\+-*\+\|)¶(\|\|.*\|\|¶)*\2¶\1$
¶$&¶
```
See if we've created a double box. If so, extra blank lines are added at the top and bottom for the remaining stages to match to delete both boxes.
```
..(.*)..(?=(.|¶)*¶$)
$1
```
If there's a trailing blank line, remove two characters from the start and end of every line.
```
^¶-*¶-*¶|(\G|¶)-*¶-*¶$
```
If there's a leading blank line, delete it and the next two lines (which will be the `-`s remaining at the top of the box). If there's a trailing blank line, delete it and the previous two lines. The `(\G|¶)` deals with the case where there's only six lines (and therefore 5 `¶`s) because the box had no content.
] |
[Question]
[
I recently listed to the song [I'm a Textpert](https://m.youtube.com/watch?v=FWj42BxDXCU) about texting while driving and one particular line in the song inspired this challenge.
>
> I never stoop so low as to text photos / Instead I text the correct combo of ones and zeros
>
>
>
Now obviously, this would be an almost impossible thing to do in ones head and so you should help textperts world wide by coding a program to do the same thing.
Your job is to take the name of an image file with the dimensions `500x500` pixels and output the file as binary. You may also take an image as input, if you language supports it.
You may use image files with the extensions
* `.jpg`
* `.png`
* `.gif`
* `.bmp`
* `.svg`
Allow me to demonstrate how to convert an image into binary, for those who don't understand what I mean.
**Step 1**
Take the first pixel in the file and retrieve its RGB value as 3 decimal numbers: R, G and B. Let's assume, for example, that the first pixel is `255,0,0` (red).
**Step 2**
Convert each number into its 8-bit binary representation and concatenate into a single 24-bit number. For the example, this yields `111111110000000000000000`
**Step 3**
Add this 24-bit number to the final output. Therefore, the final output should be `6000000` digits long and should consist of entirely `1` and `0`
This is a [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") so shortest code wins!
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), ~~14~~ 13 bytes
*-1 byte thanks to [Erik the Outgolfer](https://codegolf.stackexchange.com/users/41024/erik-the-outgolfer) (`z` can be removed for implicit input).*
```
sm.[\08.Bd.n'
```
**Explanations**
```
sm.[\08.Bd.n'
' # Open the path/URL given as implicit input. Return list of color triples for color images: [(255, 125, 23), ...]
.n # Flatten the list
m .Bd # For each element of the list, convert to binary
.[\08 # Pad with zeros on the left up to 8 characters
s # Concatenate the list of bytes
```
Unfortunately, because of safety reasons, that cannot be tested with the [online interpreter](https://pyth.herokuapp.com/); you will have to clone Pyth to test it on your own computer.
[Answer]
# [MATL](https://esolangs.org/wiki/MATL), ~~13~~ 12 bytes
```
YiH&!8&YB!1e
```
Accepts a filename as a string as input. The output 24-bit numbers are displayed in row-major order.
Unfortunately this doesn't work in the online interpreters for security reasons. Here is a screenshot of it working on my local machine
[](https://i.stack.imgur.com/o1x14.gif)
Here is a [slightly modified version](https://matl.suever.net/?code=%25+Create+a+fake+RGB+Image%0A%5B255+255%3B0+0%5D+++%25+RED%0A%5B128+128%3B0+0%5D+++%25+GREEN%0A%5B0+0%3B+0+0%5D++++++%25+BLUE%0A3+4%24Xc++++++++++%25+Concatenate+into+2+x+2+x+3+image%0A%0AH%26%218%26YB%21le&inputs=&version=20.1.1) in which I manually create a 2 x 2 x 3 image and then use (almost) the same code to process it.
**Explanation**
```
% Implicitly grab input as a string
Yi % Read in as an M x N x 3 image
H&! % Permute the dimensions of the image to be 3 x N x M
8&YB % Convert to a binary string using 8 bits for each element
! % Transpose the result
1e % Reshape to a row vector
% Implicitly display the result
```
[Answer]
# Mathematica, 103 bytes
```
F=Flatten;Export["x.txt",FromDigits@F[IntegerDigits[#,2,8]&/@F[ImageData[Import["x.bmp"],"Byte"],1],2]]
```
takes an image x.bmp (or any other) and converts it to x.txt file
[Answer]
# C#, 309 bytes
My second code golf, if you can't tell.
Takes an image **x.jpg...**
```
using System;using System.Drawing;using System.Linq;class Program{static void Main(string[]a){Bitmap b=(Bitmap)Image.FromFile("x.jpg");Console.WriteLine(string.Join("",from i in Enumerable.Range(0,250000)select Convert.ToString(Convert.ToInt32(b.GetPixel((int)Math.Floor((double)i/500),i%500).Name,16),2)));}}
```
[Answer]
# Octave, 46 bytes
```
@(x)dec2bin(permute(imread(x),[3,1,2]),8)'(:)'
```
Creates an anonymous function named `ans` that can be called with either a filename (`ans('file.png')`) or a URL (`ans('http://image.png')`)
] |
[Question]
[
Given two lists that contain no duplicate elements `a` and `b`, find the crossover between the two lists and output an ASCII-Art Venn Diagram. The Venn Diagram will use a squarified version of the traditional circles for simplicity.
# Example
**Given:**
```
a = [1, 11, 'Fox', 'Bear', 333, 'Bee']
b = ['1', 333, 'Bee', 'SchwiftyFive', 4]
```
**Output (Order is 100% arbitrary, as long as the Venn Diagram is correct):**
```
+-----+----+-------------+
|11 |333 |SchwiftyFive |
|Fox |Bee |4 |
|Bear |1 | |
+-----+----+-------------+
```
The program may either consider `'1' == 1` or `'1' != 1`, up to your implementation. You may also choose to just handle everything as strings, and only accept string input.
---
**Given:**
```
a=[]
b=[1,2,3]
```
**Output (Notice how the two empty parts still have the right-pad space):**
```
+-+-+--+
| | |1 |
| | |2 |
| | |3 |
+-+-+--+
```
---
**Given:**
```
a=[1]
b=[1]
```
**Output:**
```
+-+--+-+
| |1 | |
+-+--+-+
```
# Rules
* Elements of the Venn Diagram are left-aligned and padded to the max length entry plus 1.
* The ordering of the elements within sub-sections of the Venn-Diagram are arbitrary.
* Corners of the Venn Diagram (where `|` meets `-`) must be represented by a `+`.
* You are garuanteed that `a.join(b).length() > 0`, if both are empty, you may do whatever.
+ You may even print a picture of Abe Lincoln, don't care.
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), [ascii-art](/questions/tagged/ascii-art "show questions tagged 'ascii-art'") and [set-theory](/questions/tagged/set-theory "show questions tagged 'set-theory'").
# Bonus
Charcoal renders boxes like this naturally, but the whole set theory part... Don't know how well it does that. +100 bounty for the shortest charcoal submission before I am able to add a bounty to the question (2 days from being asked).
[Answer]
# [Husk](https://github.com/barbuz/Husk), ~~72~~ 58 bytes
```
mṙ1₁Fz+m(₁TT' Ṡ:→S:öR'-→▲mL)TTømėF`-FnF-
Ṡz:(`:'+:'+R'|-2L
```
[Try it online!](https://tio.run/##yygtzv7/P/fhzpmGj5oa3aq0czWAdEiIusLDnQusHrVNCrY6vC1IXRfIejRtU66PZkjI4R25R6a7Jei65bnpcgFVVVlpJFipawNRkHqNrpHP////o6OVDJV0lAxBhFt@BZB0Sk0sAlLGxsZgTqpSrA5EDUJERyk4OaM8M62k0i2zDMQ1UYqNBQA "Husk – Try It Online")
Husk does not support arrays of multiple types, so the arguments must be string arrays.
I am not sure whether I want to explain this monstrosity.
Due to it's sheer size, it takes about 28 secs(due to type inference) for the first test case mentioned. Without some of the type inference issues, this could be a lot shorter.
-14 bytes with a lot of adjustments(I got better at Husk).
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), ~~106~~ ~~89~~ 87 bytes:
```
A⟦⟧ςA⟦⟧λA⟦⟧ρA⟦⟧τWS⊞ςιWS⊞⎇№ςιτριFς⊞⎇№τι⟦⟧λιF⟦λτρ⟧«Fι«↓Pκ»MLι↑←A⁺⌈EιLκ³ζURζ⁺⌈⟦LλLτLρ⟧²Mζ→
```
[Try it online!](https://tio.run/nexus/charcoal#hZDNioMwFIXX3qfI8gbswtqVs5ofCgMtlHZmJS6kRA1No8RE2w59didpxBlhYBYh5yTnuzlkeG5bXkpMs5Bo@gS/rJhbNbfG2r7ighF8l43RB624LJFSCHamrVCHhP8T@WBK5uqKr7WR2gN2rnvJs0WtCOq/08anfc8pjqnwEzJKviB4DOAPGWzrjmHyVvfSRq01QvPG9tF4cgd38IkNk6Wu0M1OPht348ENK9z3BOMP7IRpcZtf@Nmc7d4gD8mInii1cGzXzQF7dtS5LAXDW0hmWDoCrv8ozY9UNLNmSacKFk/2vKxcjfswRBBFsK4v8MJyBXEcW8EAokkejlXPC31d847BCoZFNyxa8Q0 "Charcoal – TIO Nexus") Note that link is to verbose code for explanatory purposes, with the `-sl` option that shows the equivalent native Charcoal code. Takes input as newline-separated strings with a blank line after each set.
Edit: Saved 11 bytes thanks to @ASCII-only. Previous version actually had a bug when the last word in the first set was not in the second set and also the first column was the tallest, which manifested as an apparently inability to optimise away a temporary. Saved 2 bytes by optimising two Move commands (the deverbosifier now does this automatically but the resulting code was always valid so the answer is still competing).
Edit: I don't think `Multiprint` used to work with multiline output but it does currently and making use of that would save 6 bytes, plus a further 4 bytes because current Charcoal preinitialises the `u` variable to the empty list: [Try it online!](https://tio.run/##hY87a8MwFIVn61eITFfgDK47pVMfBFpiCEk7uR6EkS1RRTKyZCcp/e2qHJs8oNBB6Bx0vqtzS05Nqan0/rFtRa0gL2JsyQO6svLWmmB7LiTD8KoaZ7fWCFUDIShau5aDjbH4J/LOjKLmAM/aKTsCMXbD6JGttMFg/067MT0WO8chl@OEguBvFGW6Y7B40b0Kz1HmpBVNqGDhTQsFIsazTzUjp7dT8qNZsWpYO5oWXUvXQkb3Yud24W4GZsVUbTl8ERL@TcM5DsCGlZaqWjI4xvgGyydgqDlJd5GGFMHcXUoEfLERNR9q/HifoCRBS71HT4walKZpEAyh5Cy3Je9FZQ9L0TF0j/y88/NW/gI "Charcoal – Try It Online")
[Answer]
# [Python 2](https://docs.python.org/2/), ~~221~~ ~~210~~ 212 bytes
```
m=map
A,B=m(set,input())
d=A-B,B&A,B-A
e=[max(m(len,s))+1for s in d]
p,i,n='+|\n'
o=b=p+p.join(m('-'.__mul__,e))+p+n
while sum(m(len,d)):o+=i+i.join(m(str.ljust,[len(s)and s.pop()or''for s in d],e))+i+n
print o+b
```
[Try it online!](https://tio.run/nexus/python2#TY3NboMwEITvfgqfura8ICF6quQDHPICPVKESHGUjfCPsGlSqe9OHZpKuexodme@3ay2Y2ANttqKaBKSC2sSUrJJN0WL7Us@FQ0zurPjTVgxG4dRSlWd/MIjJ8enngUkdBrUz4cD5vVRBxXKiyeXC1BAOQx2nYcBTS4G5dj1TLPhcbUP4CTlm1eaFP23YlrK@bLGhF0OiChHN/FYBh@E9AvA0/edSpkaFnKJe3Xctq6DCpBDtc@Dv92lNeNy17qu/6yBHh/Bp12W98/zlU7p@0Bfu3@Fvv8F "Python 2 – TIO Nexus")
[Answer]
# PHP>=7.1, 287 Bytes
```
<?for([$a,$b]=$_GET,$x=max(($m=array_map)(count,$r=[($d=array_diff)($a,$b),array_intersect($a,$b),$d($b,$a)]));$n<3;$n++)for(sort($r[+$n]),$i=-1;$i<=$x;$i++){$o[$i].="|+"[$b=$i<0||$i==$x].str_pad($b?"":$r[+$n][$i],max($m(strlen,$r[+$n]))+1," -"[$b]).("|+"[$b][$n<2]);}echo join("
",$o);
```
[Online Version](http://sandbox.onlinephpfunctions.com/code/fbb82938737cd455fb538b9de2bfb9d557b97c3b)
Expanded
```
for([$a,$b]=$_GET, # store input arrays in shorter variables
$x=max(($m=array_map)(count, # get maximum of
$r=[($d=array_diff)($a,$b),array_intersect($a,$b),$d($b,$a)])); #the set array
$n<3;$n++)
for(sort($r[+$n]),$i=-1;$i<=$x;$i++){ # sort array to remove keys
$o[$i].="|+"[$b=$i<0||$i==$x]. # concat line $b boolean for first and last line beginning char
str_pad($b?"":$r[+$n][$i] # string of item in array if not first or last line
,max($m(strlen,$r[+$n]))+1 # fill till maximum length of items in array
," -"[$b]) # with char depends on first/last line or item line
.("|+"[$b][$n<2]); # make end of string if last array is reach
}
echo join("
",$o); #Output
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 47 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
ʒå}©K®¹®Kr)õζ'|ìøε€SζøJ}ø'|δªðý¬„|+`:D¬мS'-:.ø»
```
[Try it online](https://tio.run/##yy9OTMpM/f//1KTDS2sPrfQ@tO7QzkPrvIs0D289t0295vCawzvObX3UtCb43LbDO7xqD@9Qrzm35dCqwxsO7z205lHDvBrtBCuXQ2su7AlW17XSO7zj0O7//6MNdRQMgVjJLb9CCUg5pSYWAWljY2MwJ1UplitayRBFBEgFJ2eUZ6aVVLplloH4JrEA) or [verify all test cases](https://tio.run/##yy9OTMpM/V@m5JlXUFpSbKWgZF@pw6XkX1oC5AJ5OpUJxaEu/09Niig@vLT20ErvQ@siDq3zLtI8vPXcNvWaw2sO7zi39VHTmuBz2w7v8Ko9vEO95tyWQ6sObzi899CaRw3zarQTrFwOrbmwJ1hd10rv8I5Du//rHNpm/z86OtpQR8EQiJXc8iuUgJRTamIRkDY2NgZzUpVidRSilQxRhIBUcHJGeWZaSaVbZhmIbxILUhYdqwM0zkjHGMIzBHFjY2MB).
**Explanation:**
```
ʒ # Filter the first (implicit) input-list by:
å # Check if the current item is in the second (implicit) input-list
}© # After the filter: store this overlap in variable `®` (without popping)
K # Pop and remove those items from the second (implicit) input-list
® # Push overlap `®`
¹ # Push the first input-list again
®K # Remove overlap `®`
r # Reverse the three lists on the stack
) # And wrap them into a list
ζ # Zip/transpose this list, swapping rows/columns,
õ # with "" as filler if the lists are of unequal length
'|ì '# Prepend an "|" in front of each inner string
ø # Zip/transpose back, swapping rows/columns
ε # Map over each row:
€ # Map over each string in this row:
S # Convert it to a list of characters
ζ # Zip/transpose, swapping rows/columns, with " " as default filler
ø # And then zip/transpose back
J # And join the strings back together
}ø # After the map: zip/transpose back
δ # Map over each row:
'| ª '# And append an "|" to it
ðý # Then join each inner-most list by spaces
¬ # Push the first row (without popping the list)
„|+`: # Replace all "|" with "+"
D # Duplicate this string
¬ # Push its first characters (without popping), which is a "+"
м # Remove all "+" from the duplicated string
S # Convert what remains to a list of characters
'-: '# Replace each character (except for "+") with "-"
.ø # Surround the list of rows with this string as leading/trailing items
» # And finally join the list by newlines
# (after which the result is output implicitly)
```
] |
[Question]
[
`tinylisp` is, in its essence, a very stripped-down version of Lisp, as the name suggests. It was made by @DLosc for an "interpret this language" challenge, which can be found [here](https://codegolf.stackexchange.com/questions/62886/tiny-lisp-tiny-interpreter). It features a small amount of builtins, which can be used to create practically anything.
There is a repository for the "official" tinylisp interpreter/documentation [here](https://github.com/dloscutoff/Esolangs/tree/master/tinylisp), and it is available to try online [here](https://tio.run/nexus/tinylisp).
What tips do you have for golfing (creating the shortest program possible) in tinylisp? This question is looking for tips to golf specifically in tinylisp, not general tips that can be applied to any language.
[Answer]
# Abuse builtins for type-checking
The official way to check the type of a value is with the `type` builtin, which returns one of `Int`, `List`, `Name`, or `Builtin`. However, `(e(type x)(q Int))` is pretty verbose, and `(type? x Int)` with the library isn't too much shorter.
The good news here is that errors in tinylisp generally aren't fatal--they just print a warning to stderr and return `()` (nil). So under certain circumstances, we can use the one-letter builtins in unintended ways to perform ad-hoc type-checking. Supposing we have some value bound to the name `x`:
* `(a x 1)` - truthy for all integers except -1; falsey for -1; error for any other type
* `(s x 1)` - same, but replace -1 with 1
* `(a x 0)` - same, but with 0
* `(t x)` - truthy for lists with more than 1 element; falsey for nil and single-element lists; error for any other type
* `(h x)` - truthy for nonempty lists with a truthy first element; falsey for nil and lists with a falsey first element; error for any other type
* `(c()x)` - truthy for lists; error for any other type
* `(l()x)` - truthy for nonempty lists; falsey for nil; error for any other type
* `(l 0 x)` - truthy for positive integers; falsey for 0 and negative integers; error for any other type
* `(v x)` - truthy for nonzero integers; falsey for 0 and nil; error for any list that's not a valid s-expression (including any nonempty list of integers); result varies for valid s-exprs and names
Even the string builtins, though longer, could be useful under certain circumstances:
* `(string x)` - truthy for integers, builtins, names, and lists of integers (including nil); error for lists containing anything other than integers
* `(chars x)` - truthy for nonempty names; falsey for empty name; error for any other type
For example, here's a function that adds all the integers in a ragged list such as `(1 2 (3 4 (5) 6))`:
```
(d S(q((L)(i L(i(e(type L)(q Int))L(a(S(h L))(S(t L))))0
```
(We could write `(type? L Int)` for the type-check if we loaded the library, but that costs more bytes unless we need the library for something else.)
By the time execution reaches `(e(type L)(q Int))`, we know that `L` is either a nonempty list or a nonzero integer. We want a test that's truthy if `L` is an integer and falsey/error if `L` is a list. `(a L 0)` fits the bill:
```
(d S(q((L)(i L(i(a L 0)L(a(S(h L))(S(t L))))0
```
But in this case, so does `(v L)`. That's because:
* `v` on any integer returns the integer unchanged, and we know the integer won't be zero, so it's always truthy
* `v` on any list tries to evaluate the list as tinylisp code
* Nil evaluates to itself, but we know the list is nonempty
* A nonempty list evaluates as a function call, where the first element of the list is the function or macro. An integer isn't a valid function or macro; neither is nil; and a nonempty list will get evaluated as a function call, simply trying the same thing one layer down. Upshot: `v` will always error on a nonempty ragged list of integers.
Total savings: 13 bytes.
```
(d S(q((L)(i L(i(v L)L(a(S(h L))(S(t L))))0
```
[Answer]
# Use lambdas instead of full functions
To save a few bytes, you can make your answer a lambda instead of a full function:
```
Predecessor function:
(q (
(n)
(s n 1)))
Golfed:
(q((n)(s n 1)))
```
This is only useful if the function doesn't recurse.
[Answer]
# Take advantage of parenthesis autocompletion
The tinylisp parser will fill in missing close parens at the end of each line, provided that each of your top-level expressions is on a single line (which it should be anyway for code golf). So instead of this:
```
(load library)(d D(q((M)(i(h M)(c(h(h M))(D(map t(t M))))()))))
```
you can write this, for a savings of 5 bytes:
```
(load library
(d D(q((M)(i(h M)(c(h(h M))(D(map t(t M))))(
```
(Just make sure that your test code in the header or footer is formatted the same way, or you may get some puzzling error messages.)
[Answer]
# Use the library
Although tinylisp itself has a small set of builtins, it also comes with a standard library that adds a lot of functionality. You can access any function in the library by running `(load library)`.
The names of library functions/constants are not golfy like the builtins are, so some of them aren't worth it. For example, there's no need to load the library just to use `inc` or `dec`, since `(a 1 x)` is the same length as `(inc x)` and `(a(some-expr)1)` is shorter than `(inc(some-expr))`. For others, it depends on the use case: using `reverse` is probably shorter than reimplementing it yourself, but you may be able to restructure your code to avoid using it at all. Others, like `*`, are indispensable (multiplication isn't built in, and reimplementing it would be prohibitively long).
One drawback: there's not really any documentation besides just [reading the code](https://github.com/dloscutoff/Esolangs/tree/master/tinylisp/lib).
[Answer]
# Try switching the order of expressions
When you have multiple atoms (names/integers) next to each other, they have to be separated by whitespace. In some cases, you can rearrange the expression to eliminate the whitespace. A common example is with addition:
```
(a 1(subexpression))
(a(subexpression)1)
```
A less obvious case is when you have a function with multiple arguments. Consider a function `F` with arguments `(A B)`. If you're calling the function like this:
```
(F A(s B 1))
```
then you may be able to save a byte by taking the arguments as `(B A)` instead:
```
(F(s B 1)A)
```
(These particular examples only work if they're not at the end of a line; in that case, parenthesis autocompletion would make both options the same length. But there are instances where switching the order helps even at the end of a line.)
Reordering can be especially helpful with conditionals. Frequently, you will have a recursive function with a body structured like this:
```
(i(condition)(recursive call)(base case))
```
In some instances, you can save bytes by inverting the condition and reversing the order of the truthy and falsey branches:
```
(i(inv-condition)(base case)(recursive call))
```
For example, here's a function `F` that returns [the length of a number's Collatz orbit](https://codegolf.stackexchange.com/q/12177/16766):
```
(load library
(d F(q((N)(i(l 1 N)(a(F(i(odd? N)(a(* 3 N)1)(/ N 2)))1)0
```
If we change the condition `(l 1 N)` (truthy if N is greater than 1, falsey if N is 1 or less) to `(l N 2)` (truthy if N is less than 2, falsey if N is 2 or greater), we can switch the truthy and falsey branches and save a byte thanks to parenthesis autocompletion:
```
(d F(q((N)(i(l N 2)0(a(F(i(odd? N)(a(* 3 N)1)(/ N 2)))1
```
In this particular case, we can then save more bytes by rewriting `(a(...)1` to `(a 1(...`:
```
(d F(q((N)(i(l N 2)0(a 1(F(i(odd? N)(a(* 3 N)1)(/ N 2
```
] |
[Question]
[
Tamagotchi and Giga Pets were small electronic devices which simulated a little virtual pet. This pet had several stats, like health, hunger, etc.
I recently wrote this example:
```
import msvcrt,os,sys;d=m=100;h=s=t=p=0;f=10
while 1:
os.system('cls'if os.name=='nt'else'clear');print("health:",d,"\nhunger:",h,"\nsleep:",s,"\nfood:",f,"\npotions:",p,"\nmoney:",m);t+=1
if msvcrt.kbhit():
k=ord(msvcrt.getch())
if k==102 and h>8 and f:f-=1;h-=9
if k==115:s=0
if k==112 and p:p-=1;d+=9
if k==98 and m>8:m-=9;p+=1
if k==116 and m>8:m-=9;f+=1
if t>99:
t=0;h+=1;s+=1
if s>80:s=0;h+=9
if h>80:d-=1
if d<1:sys.exit(0)
if d>79:m+=1
```
This is a bare-bones virtual pet in 467 bytes! I then wondered how well the **code golf pros** could do, so now, the challenge.
# The Challenge
Make a program that tracks 6 stats of a virtual pet, and updates them over time and in response to user input. The stats are: health and money (starting at 100), food (starting at 10), and hunger, sleep, and potions (starting at 0).
The program should update the values in response to the following events:
* While the program is receiving no input, it should perform updates at regular intervals (the interval between updates should not be shorter than half a second nor longer than one second). Each update does the following:
+ Hunger and Sleep each increase by 1.
+ If Hunger is 80 or above, Health decreases by 1.
+ If Sleep is 80 or above, it is reset to 0, and Hunger increases by an additional 9.
+ If Health is 80 or above, Money increases by 1.
+ If Health is 0, the program exits.
* The program must also respond immediately upon the following keypresses by the user (this means that you will need to use a language feature or library that can detect a key being pressed and respond to it immediately, rather than just reading from standard input), performing the following actions:
+ `f`: If Hunger is greater than 8 and Food is nonzero, then Food is decreased by 1 and Hunger is decreased by 9.
+ `s`: Sleep is reset to 0.
+ `p`: If Potions is greater than zero, Potions is decreased by 1 and Health is increased by 9.
+ `b`: If Money is greater than 8, then Money is decreased by 9 and Potions are increased by 1.
+ `t`: If Money is greater than 8, then Money is decreased by 9, and Food is increased by by 1.
Whenever the values of the stats change, they must be displayed on screen in the form `Stat: *value*`. All six stats must be displayed whenever any of them changes; and the stats within a display must be separated either by commas or by newlines.
This challenge follows normal [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") rules: the shortest program complying with the specification above wins. (Note that as usual, if the language is newer than the competition, the submission must be marked as non-competing.)
[Answer]
# C, 424 406 386 357 bytes
```
#define x(a,b,c)if(*#a==C){if(b>8){c-=9;}Z=0;}
L,M=100,H,S=-1,F=10,P,Z,C;t(){H++;S++;L-=H>79;if(S>79)S=0,H+=9;Z=1/L/2;alarm(1);}main(){nodelay(initscr(),L=M);signal(14,t);for(t(H=S);C=getch();Z=Z||printf("\rhealth: %d,hunger: %d,sleep: %d,food: %d,potions: %d,money: %d\n",L,H,S,F,P,M)){x(s,9,S=9;S)x(p,P+8,P--;L+=18;L)x(f,H,F--;H)x(b,M,P++;M)x(t,M,F++;M)}}
```
I appreciate the need for raw input and asynchronous updates in the problem spec. Even though that required some overhead from the ncurses setup and signal handlers, it's nice to have the occasional challenge that (hopefully) won't be automatically won by one of the dedicated golfing languages.
You didn't specify exactly how game over is indicated, so this one perishes with the traditional Tamagotchi death cry of "Floating point exception (core dumped)".
**Ungolfed**
```
/* Playing a bit fast and loose with the prototyping rules by omitting these;
* none of the functions I'm using from them *exactly* match the default
* prototype of `int f();`
*/
//#include <curses.h>
//#include <stdio.h>
//#include <signal.h>
//#include <unistd.h>
#define x(a,b,c)if(*#a==C){if(b>8){c-=9;}Z=0;}
L,M=100,H,S=-1,F=10,P,Z,C;
t() {
H++;
S++;
L-=H>79;
if(S>79)S=0,H+=9;
Z=1/L/2;//0 if L>0. otherwise the pet dies of a floating point error
alarm(1);
}
main(){
nodelay(initscr(),L=M);
signal(14,t);
for(t(H=S); C=getch(); Z=Z||printf("\rhealth: %d,hunger: %d,sleep: %d,food: %d,potions: %d,money: %d\n",L,H,S,F,P,M)){
x(s,9,S=9;S)
x(p,P+8,P--;L+=18;L)
x(f,H,F--;H)
x(b,M,P++;M)
x(t,M,F++;M)
}
}
```
[Answer]
# PHP, ~~396~~ 413 bytes
*(Dang, my first code golf entry that I had to edit up in byte count. Edited to remove sleep() call, as it wasn't really complying with rules-as-intended.)*
Requires a unix-ish OS for the non-blocking STDIN. Oddly, using switch/case versus cascading if/else produced shorter source code, but the subsequent compressed version was longer.
```
<?eval(gzinflate(base64_decode('bY5BT8MwDIXv/Ao0WWujtVJ7YmtITwiNAwhp3KutOE20pImWVGxa999J1IEAcbH87O892wlUqsEjtmnivD/d5rLd9qZPCHX+gFvdOPTNTpl2L/su3bw9PL1kBaEwMHAMLCsocFaGKhjo0BT0Q0iFaUnO4JmXGlPyPZI8TWHPeIe+nbIIGccJqsGTXbi4p4EKEEt4Qs6xH+rlfA6c5DnwEYacregFlcMvziUk/FLQnzN79drosiOIxV/X7kroeklAh9BxsQD7m/H/MXxi4iKoob5bxRuCTtpFHd8Jn8ab0S7iLOz0pO5LgkfpQ0wrzGyNW+VFBSJ7Nj2eKtDZozHvFfBsPfQdHioYso1CtBW47NV4aXpXgb2Z0csn')));
```
Ungolfed:
```
<?
shell_exec('stty -icanon');
stream_set_blocking(STDIN, 0);
$u = $s = $p =0;
$f = 10;
$h = $m = 100;
while(1) {
$t=time();
while(1)
if (($k = fgetc(STDIN)) || time() > $t)
break;
if ($k == 'f'){
if ($u > 8 && $f) --$f | $u -= 9;
} elseif ($k == 's')
$s = 0;
elseif ($k == 'p') {
if ($p) --$p | $h += 9;
} elseif ($k == 'b') {
if ($m > 8) $m -= 9 | ++$p;
} elseif ($k == 't') {
if ($m > 8) $m -= 9 | ++$f;
} else {
if (++$u > 79) --$h;
if (++$s > 79) $s = 0 | $u += 9;
if ($h > 79) ++$m;
if ($h < 1) exit;
}
echo"Health:$h,Money:$m,Food:$f,Hunger:$u,Sleep:$s,Potions:$p\n";
}
```
[Answer]
**Mathematica, 374 bytes**
```
h=m=100;f=10;g=s=p=0;RunScheduledTask[g++;s++;If[g>79,h--];If[s>79,s=0;g+=9];If[h>79,m++];If[h<1,Quit[]]];Dynamic@Row[{EventHandler[InputField[],"KeyDown":>Switch[CurrentValue@"EventKey","f",If[g>8&&f>0,f--;g-=9],"s",s=0,"p",If[p>0,p--;h+=9],"b",If[m>8,m-=9;p++],"t",If[m>8,m-=9;f++]]],"
Health: ",h,"
Money: ",m,"
Food: ",f,"
Hunger: ",g,"
Sleep: ",s,"
Potions: ",p}]
```
The line breaks are important because they are newline characters in the string so I could use `Row` instead of `Column`. If you evaluate this in a Mathematica notebook you should see something like this:
[](https://i.stack.imgur.com/3S75t.png)
You have to click in the input field and quickly (less than a second) type your character before `Dynamic` causes the input field to update. This headache could be avoided entirely if the `EventHandler` was in its own cell rather than being an element of `Row`, but that would require saving the program as a .nb file which would greatly increase the byte count.
[Answer]
# C#6, ~~567~~ 563 bytes
```
using System;using System.Threading;class T{int L,M,F=10,H,S,P;static void Main(){T t=new T();}T(){M=L=100;var W=new Thread(new ThreadStart(Q));W.Start();while(1>0){var r=Console.Read();bool B=0>1,K=1>0;if(r=='f'&H>8&F>0){F--;H-=9;B=K;}if(r=='s'){S=0;B=K;}if(r=='p'&P>0){P--;L+=9;B=K;}if(r=='b'&M>8){M-=9;P++;B=K;}if(r=='t'&M>8){M-=9;F++;B=K;}if(B)p();}}void Q(){while(1>0){H++;S++;if(H>79)L--;if(S>79){S=0;H+=9;}if(L>79)M++;L*=L/L;p();Thread.Sleep(500);}}void p(){Console.Write($"\nhealth: {L}\nhunger: {H}\nsleep: {S}\nfood: {F}\nmoney: {M}\npotions: {P}\n");}}
```
Ungolfed:
```
using System;
using System.Threading;
class T
{
int L,M,F=10,H,S,P;
static void Main()
{
T t=new T();
}
T()
{
M=L=100;
var W=new Thread(new ThreadStart(Q));
W.Start();
while(1>0)
{
var r=Console.Read();
var B=0>1;
if(r=='f'&H>8&F>0){F--;H-=9;B=1>0;}
if(r=='s'){S=0;B=1>0;}
if(r=='p'&P>0){P--;L+=9;B=1>0;}
if(r=='b'&M>8){M-=9;P++;B=1>0;}
if(r=='t'&M>8){M-=9;F++;B=1>0;}
if(B)p();
}
}
void Q()
{
while(1>0)
{
H++;S++;
if(H>79)L--;
if(S>79){S=0;H+=9;}
if(L>79)M++;
L*=L/L;
p();
Thread.Sleep(500);
}
}
void p()
{
Console.Write($"\nhealth: {L}\nhunger: {H}\nsleep: {S}\nfood: {F}\nmoney: {M}\npotions: {P}\n");
}
}
```
[Answer]
## Clojure, ~~1224~~ 702 bytes
## V2
Made all the atoms loose variables instead of being inside a state object. That alone got rid of a lot of code. I also created the shortcut functions `a!` and `s!` to add and subtract from the `atoms` easier (basically acting as `+=` and `-=`, since Clojure doesn't have those operators).
I realized that I could probably do away with `atom`s if I manage to integrate key input into a `loop`. I'll have to see.
```
(ns bits.golf.pet.v2.petms)(def h(atom 100))(def j(atom 0))(def s(atom 0))(def f(atom 10))(def p(atom 0))(def m(atom 100))(defn a[sa n](swap! sa #(+ % n)))(defn v[sa n](swap! sa #(- % n)))(defn c[](a j 1)(a s 1)(if(>=@j 80)(v h 1))(if (>=@s 80)(do(reset! s 0)(a j 9)))(if(>= @h 80)(a m 1)))(defn l[k](case k\f(if(> @j 8)(do(v f 1)(v j 9)))\s(reset! s 0) \p(if(>@p 0)(do(v p 1)(a h 9)))\b(if(> @m 8)(do(v m 9)(a p 1)))\t(if(>@m 8)(do(v m 9)(a f 1)))nil))(defn b[](.start(Thread.^Runnable(fn[](while(>@h 0)(l(first (read-line))))))))(defn -main[](b)(while(>@h 0)(Thread/sleep 500)(c)(println(str"Health: "@h"\nHunger: " @j"\nSleep: "@s"\nFood: "@f"\nPotions: "@p"\nMoney:"@m"\n")))(println"You died!\n"))
```
Ungolfed:
```
(ns bits.golf.pet.v2.pet)
; 100 0 0 10 0 100
(def he (atom 100))
(def hu (atom 0))
(def sl (atom 0))
(def fo (atom 10))
(def po (atom 0))
(def mo (atom 100))
(defn a! [sa n]
(swap! sa #(+ % n)))
(defn s! [sa n]
(swap! sa #(- % n)))
(defn apply-rules []
(a! hu 1)
(a! sl 1)
(if (>= @hu 80)
(s! he 1))
(if (>= @sl 80)
(do
(reset! sl 0)
(a! hu 9)))
(if (>= @he 80)
(a! mo 1)))
(defn handle-keypress [k]
(case k
\f (if (> @hu 8)
(do
(s! fo 1)
(s! hu 9)))
\s (reset! sl 0)
\p (if (> @po 0)
(do
(s! po 1)
(a! he 9)))
\b (if (> @mo 8)
(do
(s! mo 9)
(a! po 1)))
\t (if (> @mo 8)
(do
(s! mo 9)
(a! fo 1)))
nil))
(defn start-listener []
(.start
(Thread. ^Runnable
(fn []
(while (> @he 0)
(handle-keypress (first (read-line))))))))
(defn -main []
(start-listener)
(while (> @he 0)
(Thread/sleep 500)
(apply-rules)
(println (str
"Health: " @he "\n"
"Hunger: " @hu "\n"
"Sleep: " @sl "\n"
"Food: " @fo "\n"
"Potions: " @po "\n"
"Money:" @mo "\n")))
(println "You died!\n"))
```
---
## V1
Ohdeargod. Definitely room for improvement here. This kind of problem is easiest to do with side effects, and Clojure is functional, so I'm trying to abuse `atom`s to lessen the amount of code needed. Unfortunately, I didn't go in with a plan, so it's kind of haphazard right now. I've already gotten a few ideas to shrink I though.
It's a full program. It can be run by running `-main`.
```
(ns bits.golf.pet)(defrecord S[he hu sl fo po mo])(def new-state(->S 100 0 0 10 0 100))(def state(atom new-state))(defn update))(defn apply-rules[s](let [s' (atom s)u! #(update! s' %1 %2)g #(get @s' %)](u! :hu inc)(u! :sl inc)(if(>=(g :hu)80)(u! :he dec))(if(>= (g :sl)80)(do(u! :sl (fn[_]0))(u! :hu #(+ % 9))))(if(>=(g :he)80)(u! :mo inc))@s'))(defn get-input [](let [raw (read-line)](first raw)))(defn handle-keypress[s k](let [s'(atom s)u! #(update! s' %1 %2)g #(get @s' %)](case k\f(if (> (g :hu)8)(do(u! :fo dec)(u! :hu #(- % 9))))\s(u! :sl (fn [_] 0))\p(if(> (g :po)0)(do(u! :po dec)(u! :he #(+ % 9))))\b(if(>(g :mo))(do(u! :mo #(- % 9))(u! :po inc)))\t(if(>(g :mo)8)(do(u! :mo #(- % 9))(u! :fo inc)))nil@s')))(defn start-listener[](.start(Thread.^Runnable(fn[](while true(let[k(get-input)](swap! state #(handle-keypress % k))))))))(defn -main[](start-listener)(let[g #(get @%1 %2)](while true(Thread/sleep 500)(swap! state #(apply-rules %))(println(str"Health: "(g state :he)"\nHunger: "(g state :hu)"\n""Sleep: " (g state :sl)"\nFood: "(g state :fo)"\nPotions: "(g state :po)"\n""Money:"(g state :mo)"\n"))(if(<=(g state :he)0)(do(println"You died!\n")(reset! state new-state))))))
```
Ungolfed:
```
(ns bits.golf.pet)
(defrecord State [he hu sl fo po mo])
(def new-state (->State 100 0 0 10 0 100))
(def state (atom new-state))
(defn update! [sa k f]
(swap! sa #(update % k f)))
(defn apply-rules [s]
(let [s' (atom s)
u! #(update! s' %1 %2)
g #(get @s' %)]
(u! :hu inc)
(u! :sl inc)
(if (>= (g :hu) 80)
(u! :he dec))
(if (>= (g :sl) 80)
(do
(u! :sl (fn [_] 0))
(u! :hu #(+ % 9))))
(if (>= (g :he) 80)
(u! :mo inc))
@s'))
(defn get-input []
(let [raw (read-line)]
(first raw)))
(defn handle-keypress [s k]
(let [s' (atom s)
u! #(update! s' %1 %2)
g #(get @s' %)]
(case k
\f (if (> (g :hu) 8)
(do
(u! :fo dec)
(u! :hu #(- % 9))))
\s (u! :sl (fn [_] 0))
\p (if (> (g :po) 0)
(do
(u! :po dec)
(u! :he #(+ % 9))))
\b (if (> (g :mo))
(do
(u! :mo #(- % 9))
(u! :po inc)))
\t (if (> (g :mo) 8)
(do
(u! :mo #(- % 9))
(u! :fo inc)))
nil
@s')))
(defn start-listener []
(.start
(Thread. ^Runnable
(fn []
(while true
(let [k (get-input)]
(swap! state #(handle-keypress % k))))))))
(defn -main []
(start-listener)
(let [g #(get @%1 %2)]
(while true
(Thread/sleep 500)
(swap! state #(apply-rules %))
(println (str
"Health: " (g state :he) "\n"
"Hunger: " (g state :hu) "\n"
"Sleep: " (g state :sl) "\n"
"Food: " (g state :fo) "\n"
"Potions: " (g state :po) "\n"
"Money:" (g state :mo) "\n"))
(if (<= (g state :he) 0)
(do
(println "You died!\n\n\n\n\n")
(reset! state new-state))))))
```
] |
[Question]
[
In the examples below, `A` and `B` will be 2-by-2 matrices, and the matrices are one-indexed.
A [Kronecker *product*](http://mathworld.wolfram.com/KroneckerProduct.html) has the following properties:
```
A⊗B = A(1,1)*B A(1,2)*B
A(2,1)*B A(2,2)*B
= A(1,1)*B(1,1) A(1,1)*B(1,2) A(1,2)*B(1,1) A(1,2)*B(1,2)
A(1,1)*B(2,1) A(1,1)*B(2,2) A(1,2)*B(2,1) A(1,2)*B(2,2)
A(2,1)*B(1,1) A(2,1)*B(1,2) A(2,2)*B(1,1) A(2,2)*B(1,2)
A(2,2)*B(2,1) A(2,2)*B(1,2) A(2,2)*B(2,1) A(2,2)*B(2,2)
```
A [Kronecker sum](http://mathworld.wolfram.com/KroneckerSum.html) has the following properties:
```
A⊕B = A⊗Ib + Ia⊗B
```
`Ia` and `Ib` are the [identity matrices](http://mathworld.wolfram.com/IdentityMatrix.html) with the dimensions of `A` and `B` respectively. `A` and `B` are square matrices. Note that `A` and `B` can be of different sizes.
```
A⊕B = A(1,1)+B(1,1) B(1,2) A(1,2) 0
B(2,1) A(1,1)+B(2,2) 0 A(1,2)
A(2,1) 0 A(2,2)+B(1,1) B(1,2)
0 A(2,1) B(2,1) A(2,2)+B(2,2)
```
**Given two square matrices, `A` and `B`, calculate the Kronecker sum of the two matrices.**
* The size of the matrices will be at least `2-by-2`. The maximum size will be whatever your computer / language can handle by default, but minimum `5-by-5` input (5 MB output).
* All input values will be non-negative integers
* Builtin functions that calculate the Kronecker sum or Kronecker products are not allowed
* In general: Standard rules regarding I/O format, program & functions, loopholes etc.
**Test cases:**
```
A =
1 2
3 4
B =
5 10
7 9
A⊕B =
6 10 2 0
7 10 0 2
3 0 9 10
0 3 7 13
----
A =
28 83 96
5 70 4
10 32 44
B =
39 19 65
77 49 71
80 45 76
A⊕B =
67 19 65 83 0 0 96 0 0
77 77 71 0 83 0 0 96 0
80 45 104 0 0 83 0 0 96
5 0 0 109 19 65 4 0 0
0 5 0 77 119 71 0 4 0
0 0 5 80 45 146 0 0 4
10 0 0 32 0 0 83 19 65
0 10 0 0 32 0 77 93 71
0 0 10 0 0 32 80 45 120
----
A =
76 57 54
76 8 78
39 6 94
B =
59 92
55 29
A⊕B =
135 92 57 0 54 0
55 105 0 57 0 54
76 0 67 92 78 0
0 76 55 37 0 78
39 0 6 0 153 92
0 39 0 6 55 123
```
[Answer]
## CJam, ~~40~~ ~~39~~ 38 bytes
```
9Yb2/q~f{.{_,,_ff=?}:ffff*::.+:~}:..+p
```
Input format is a list containing `A` and `B` as 2D lists, e.g.
```
[[[1 2] [3 4]] [[5 10] [7 9]]]
```
Output format is a single CJam-style 2D list.
[Test suite.](http://cjam.aditsu.net/#code=qN%2F%7B%3AQ%3B%0A%0A9Yb2%2FQ~f%7B.%7B_%2C%2C_ff%3D%3F%7D%3Affff*%3A%3A.%2B%3A~%7D%3A..%2B%0A%0A%7Bs4Se%5B%7Df%25Sf*N*oNoNo%7D%2F&input=%5B%5B%5B1%202%5D%20%5B3%204%5D%5D%20%5B%5B5%2010%5D%20%5B7%209%5D%5D%5D%0A%5B%5B%5B28%2083%2096%5D%20%5B5%2070%204%5D%20%5B10%2032%2044%5D%5D%20%5B%5B39%2019%2065%5D%20%5B77%2049%2071%5D%20%5B80%2045%2076%5D%5D%5D%0A%5B%5B%5B28%2012%2059%2051%5D%20%5B68%2050%2023%2070%5D%20%5B66%2096%2076%2090%5D%20%5B17%2035%2026%2096%5D%5D%20%5B%5B55%2085%2093%2062%5D%20%5B14%2026%2035%2048%5D%20%5B15%2082%2020%2036%5D%20%5B26%2025%2026%2084%5D%5D%5D%0A%5B%5B%5B76%2057%2054%5D%20%5B76%208%2078%5D%20%5B39%206%2094%5D%5D%20%5B%5B59%2092%5D%20%5B55%2029%5D%5D%5D%0A%5B%5B%5B59%2092%5D%20%5B55%2029%5D%5D%20%5B%5B76%2057%2054%5D%20%5B76%208%2078%5D%20%5B39%206%2094%5D%5D%5D) (With more readable output format.)
### Explanation
This code is an exercise in compound (or infix) operators. These are generally useful for array manipulation, but this challenge exacerbated the need for them. Here is a quick overview:
* `f` expects a list and something else on the stack and maps the following *binary* operator over the list, passing in the other element as the second argument. E.g. `[1 2 3] 2 f*` and `2 [1 2 3] f*` both give `[2 4 6]`. If both elements are lists, the first one is mapped over and the second one is used to curry the binary operator.
* `:` has two uses: if the operator following it is unary, this is a simple map. E.g. `[1 0 -1 4 -3] :z` is `[1 0 1 4 3]`, where `z` gets the modulus of a number. If the operator following it is binary, this will *fold* the operator instead. E.g. `[1 2 3 4] :+` is `10`.
* `.` vectorises a binary operator. It expects two lists as arguments and applies the operator to corresponding pairs. E.g. `[1 2 3] [5 7 11] .*` gives `[5 14 33]`.
Note that `:` itself is always a unary operator, whereas `f` and `.` themselves are always binary operators. These can be arbitrarily nested (provided they have the right arities). And that's what we'll do...
```
9Yb e# Push the binary representation of 9, i.e. [1 0 0 1].
2/ e# Split into pairs, i.e. [[1 0] [0 1]]. We'll use these to indicate
e# which of the two inputs we turn into an identity matrix.
q~ e# Read and evaluate input, [A B].
f{ e# This block is mapped over the [[1 0] [0 1]] list, also pushing
e# [A B] onto the stack for each iteration.
.{ e# The stack has either [1 0] [A B] or [0 1] [A B]. We apply this
e# block to corresponding pairs, e.g. 1 A and 0 B.
_, e# Duplicate the matrix and get its length/height N.
,_ e# Turn into a range [0 1 ... N-1] and duplicate it.
ff= e# Double f on two lists is an interesting idiom to compute an
e# outer product: the first f means that we map over the first list
e# with the second list as an additional parameter. That means for
e# the remaining operator the two arguments are a single integer
e# and a list. The second f then maps over the second list, passing
e# in the the number from the outer map as the first parameter.
e# That means the operator following ff is applied to every possible
e# pair of values in the two lists, neatly laid out in a 2D list.
e# The operator we're applying is an equality check, which is 1
e# only along the diagonal and 0 everywhere else. That is, we've
e# created an NxN identity matrix.
? e# Depending on whether the integer we've got along with the matrix
e# is 0 or 1, either pick the original matrix or the identity.
}
e# At this point, the stack contains either [A Ib] or [Ia B].
e# Note that A, B, Ia and Ib are all 2D matrices.
e# We now want to compute the Kronecker product of this pair.
:ffff* e# The ffff* is the important step for the Kronecker product (but
e# not the whole story). It's an operator which takes two matrices
e# and replaces each cell of the first matrix with the second matrix
e# multiplied by that cell (so yeah, we'll end up with a 4D list of
e# matrices nested inside a matrix).
e# The leading : is a fold operation, but it's a bit of a degenerate
e# fold operation that is only used to apply the following binary operator
e# to the two elements of a list.
e# Now the ffff* works essentially the same as the ff= above, but
e# we have to deal with two more dimensions now. The first ff maps
e# over the cells of the first matrix, passing in the second matrix
e# as an additional argument. The second ff then maps over the second
e# matrix, passing in the cell from the outer map. We multiply them
e# with *.
e# Just to recap, we've essentially got the Kronecker product on the
e# stack now, but it's still a 4D list not a 2D list.
e# The four dimensions are:
e# 1. Columns of the outer matrix.
e# 2. Rows of the outer matrix.
e# 3. Columns of the submatrices.
e# 4. Rows of the submatrices.
e# We need to unravel that into a plain 2D matrix.
::.+ e# This joins the rows of submatrices across columns of the outer matrix.
e# It might be easiest to read this from the right:
e# + Takes two rows and concatenates them.
e# .+ Takes two matrices and concatenates corresponding rows.
e# :.+ Takes a list of matrices and folds .+ over them, thereby
e# concatenating the corresponding rows of all matrices.
e# ::.+ Maps this fold operation over the rows of the outer matrix.
e# We're almost done now, we just need to flatten the outer-most level
e# in order to get rid of the distinction of rows of the outer matrix.
:~ e# We do this by mapping ~ over those rows, which simply unwraps them.
}
e# Phew: we've now got a list containing the two Kronecker products
e# on the stack. The rest is easy, just perform pairwise addition.
:..+ e# Again, the : is a degenerate fold which is used to apply a binary
e# operation to the two list elements. The ..+ then simply vectorises
e# addition twice, such that we add corresponding cells of the 2D matrices.
p e# All done, just pretty-print the matrix.
```
[Answer]
# J - ~~38~~ ~~33~~ 31 bytes
```
i=:=@i.@#
[:,./^:2(*/i)+(*/~i)~
```
## Usage
```
f =: [:,./^:2(*/i)+(*/~i)~
(2 2 $ 1 2 3 4) f (2 2 $ 5 10 7 9)
6 10 2 0
7 10 0 2
3 0 9 10
0 3 7 13
(3 3 $ 28 83 96 5 70 4 10 32 44) f (3 3 $ 39 19 65 77 49 71 80 45 76)
67 19 65 83 0 0 96 0 0
77 77 71 0 83 0 0 96 0
80 45 104 0 0 83 0 0 96
5 0 0 109 19 65 4 0 0
0 5 0 77 119 71 0 4 0
0 0 5 80 45 146 0 0 4
10 0 0 32 0 0 83 19 65
0 10 0 0 32 0 77 93 71
0 0 10 0 0 32 80 45 120
(3 3 $ 76 57 54 76 8 78 39 6 94) f (2 2 $ 59 92 55 29)
135 92 57 0 54 0
55 105 0 57 0 54
76 0 67 92 78 0
0 76 55 37 0 78
39 0 6 0 153 92
0 39 0 6 55 123
```
[Answer]
# [Jelly](http://github.com/DennisMitchell/jelly), ~~26~~ ~~21~~ ~~20~~ 19 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
æ*9Bs2¤×€€/€S;"/€;/
```
Input is a list of two 2D lists, output is a single 2D list. [Try it online!](http://jelly.tryitonline.net/#code=w6YqOUJzMsKkw5figqzigqwv4oKsUzsiL-KCrDsv&input=&args=W1s3NiwgNTcsIDU0XSwgWzc2LCAgOCwgNzhdLCBbMzksICA2LCA5NF1dLCBbWzU5LCA5Ml0sIFs1NSwgMjldXQ) or [verify all test cases](http://jelly.tryitonline.net/#code=w6YqOUJzMsKkw5figqzigqwv4oKsUzsiL-KCrDsvCsOH4oKsR-KCrGrigJzCtsK2&input=&args=W1tbWzEsIDJdLCBbMywgNF1dLCBbWzUsIDEwXSwgWzcsIDldXV0sCiBbW1syOCwgODMsIDk2XSwgWzUsIDcwLCA0XSwgWzEwLCAzMiwgNDRdXSwgW1szOSwgMTksIDY1XSwgWzc3LCA0OSwgNzFdLCBbODAsIDQ1LCA3Nl1dXSwKIFtbWzc2LCA1NywgNTRdLCBbNzYsICA4LCA3OF0sIFszOSwgIDYsIDk0XV0sIFtbNTksIDkyXSwgWzU1LCAyOV1dXV0).
### How it works
```
æ*9Bs2¤×€€/€S;"/€;/ Main link.
Argument: [A, B] (matrices of dimensions n×n and m×m)
¤ Evaluate the four links to the left as a niladic chain.
9B Convert 9 to base 2, yielding [1, 0, 0, 1].
s2 Split into sublists of length 2, yielding [[1, 0], [0, 1]].
æ* Vectorized matrix power.
This yields [[A¹, B⁰], [A⁰, B¹]], where B⁰ and A⁰ are the
identity matrices of dimensions m×m and n×n.
/€ Reduce each pair by the following:
€€ For each entry of the first matrix:
× Multiply the second matrix by that entry.
S Sum the two results, element by element.
This yields the Kronecker sum, in form of a n×n matrix of
m×m matrices.
/€ Reduce each row of the outer matrix...
;" by zipwith-concatenation.
This concatenates the columns of the matrices in each row,
yielding a list of length n of n×nm matrices.
;/ Concatenate the lists, yielding a single nm×nm matrix.
```
[Answer]
# Julia, ~~60~~ ~~59~~ ~~58~~ 56 bytes
```
A%B=hvcat(sum(A^0),sum(i->map(a->a*B^i,A'^-~-i),0:1)...)
```
[Try it online!](http://julia.tryitonline.net/#code=QSVCPWh2Y2F0KHN1bShBXjApLHN1bShpLT5tYXAoYS0-YSpCXmksQSdeLX4taSksMDoxKS4uLikKClMoQSxCKSA9IEElQgoKZGlzcGxheShTKFsxICAgICAyCiAgICAgICAgICAgMyAgICAgNF0sCgogICAgICAgICAgWzUgICAgMTAKICAgICAgICAgICA3ICAgICA5XSkpCgpwcmludCgiXG5cbiIpCgpkaXNwbGF5KFMoWzI4ICAgIDgzICAgIDk2CiAgICAgICAgICAgIDUgICAgNzAgICAgIDQKICAgICAgICAgICAxMCAgICAzMiAgICA0NF0sCgogICAgICAgICAgWzM5ICAgIDE5ICAgIDY1CiAgICAgICAgICAgNzcgICAgNDkgICAgNzEKICAgICAgICAgICA4MCAgICA0NSAgICA3Nl0pKQoKcHJpbnQoIlxuXG4iKQoKZGlzcGxheShTKFs3NiAgICA1NyAgICA1NAogICAgICAgICAgIDc2ICAgICA4ICAgIDc4CiAgICAgICAgICAgMzkgICAgIDYgICAgOTRdLAoKICAgICAgICAgIFs1OSAgICA5MgogICAgICAgICAgIDU1ICAgIDI5XSkp&input=)
### How it works
* For matrices **A** and **B**, `map(a->a*B,A')` computes the Kronecker product **A⊗B**.
The result is a vector of matrix blocks with the dimensions of **B**.
We have to transpose **A** (with `'`) since matrices are stored in column-major order.
* Since bitwise NOT with two's complement satisfies the identity **~n = -(n + 1)** for all integers **n**, we have that **-~-n = -(~(-n)) = --((-n) + 1) = 1 - n**, so **-~-0 = 1** and **-~-1 = 0**.
This way the anonymous function `i->map(a->a*B^i,A'^-~-i)` applies the above map to **B⁰** (the identity matrix with **B**'s dimensions) and **A¹ = A** when **i = 0**, and to **B¹** and **A⁰** when **i = 1**.
* `sum(i->map(a->a*B^i,A'^-~-i),0:1)` sums over **{0,1}** with the above anonymous function, computing the Kronecker sum **A⊕B** as **A¹⊗B⁰ + A⁰⊗B¹**.
The result is a vector of matrix blocks with the dimensions of **B**.
* `sum(A^0)` computes the sum of all entries of the identity matrix of **A**'s dimensions. For an **n×n** matrix **A**, this yields **n**.
* Finally, `hvcat(sum(A^0),sum(i->map(a->a*B^i,A'^-~-i),0:1)...)` concatenates the matrix blocks that form **A⊕B**.
With first argument **n**, `hvcat` concatenates **n** matrix blocks horizontally, and the resulting (larger) blocks vertically.
[Answer]
# Ruby, 102
```
->a,b{r=0..-1+a.size*q=b.size
r.map{|i|r.map{|j|(i/q==j/q ?b[i%q][j%q]:0)+(i%q==j%q ?a[i/q][j/q]:0)}}}
```
**In test program**
```
f=->a,b{r=0..-1+a.size*q=b.size
r.map{|i|r.map{|j|(i/q==j/q ?b[i%q][j%q]:0)+(i%q==j%q ?a[i/q][j/q]:0)}}}
aa =[[1,2],[3,4]]
bb =[[5,10],[7,9]]
f[aa,bb].each{|e|p e}
puts
aa =[[28,83,96],[5,70,4],[10,32,44]]
bb =[[39,19,65],[77,49,71],[80,45,76]]
f[aa,bb].each{|e|p e}
puts
aa =[[76,57,54],[76,8,78],[39,6,94]]
bb =[[59,92],[55,29]]
f[aa,bb].each{|e|p e}
puts
```
Requires two 2D arrays as input and returns a 2D array.
There are probably better ways of doing this: using a function to avoid repetition; using a single loop and printing the output. Will look into them later.
[Answer]
# JavaScript (ES6), 109
Built upon the answer to [the other challenge](https://codegolf.stackexchange.com/questions/78797/calculate-the-kronecker-product/78802#78802)
```
(a,b)=>a.map((a,k)=>b.map((b,i)=>a.map((y,l)=>b.map((x,j)=>r.push(y*(i==j)+x*(k==l))),t.push(r=[]))),t=[])&&t
```
**Test**
```
f=(a,b)=>a.map((a,k)=>b.map((b,i)=>a.map((y,l)=>b.map((x,j)=>r.push(y*(i==j)+x*(k==l))),t.push(r=[]))),t=[])&&t
console.log=x=>O.textContent+=x+'\n'
function show(label, mat)
{
console.log(label)
console.log(mat.join`\n`)
}
;[
{a:[[1,2],[3,4]], b:[[5,10],[7,9]]},
{a:[[28,83,96],[5,70,4],[10,32,44]], b:[[39,19,65],[77,49,71],[80,45,76]]},
{a:[[76,57,54],[76,8,78],[39,6,94]], b:[[59,92],[55,29]]}
].forEach(t=>{
show('A',t.a)
show('B',t.b)
show('A⊕B',f(t.a,t.b))
show('B⊕A',f(t.b,t.a))
console.log('-----------------')
})
```
```
<pre id=O></pre>
```
] |
[Question]
[
Given a string of letters and a set of words, output an ordering of the words so
that they can be found in the string by dropping letters that are not needed.
Words may occur more than once in the word set. The input string and all words
will consist of 1 to 1000 lower case letters each. The letters to be dropped may occur inside words or between words.
Your program or function can accept the letter string and words as lists, a string, or from STDIN, and must output all words in a correct order as a list
or string output. If there is more than one correct solution, only output one of
them. If there is no possible correct solution, output an empty list or an empty
string.
Examples:
```
dogcatfrog cat frog dog
-> dog cat frog
xxcatfixsxhingonxgrapexxxfishingcxat cat grape catfish fishing
-> catfish grape fishing cat
dababbabadbaccbcbaaacdacdbdd aa bb cc dd ba ba ba ab ac da db dc
-> da ab ba ba ba cc bb aa ac dc db dd
flea antelope
->
(no solution)
```
This is code golf. Lowest number of bytes wins.
*Edit: Explained that extra characters can be inside words.*
[Answer]
# Pyth, ~~20~~ 24 bytes
My first attempt on Pyth :)
```
Jcw;FG.ptJI:hJj".*"G0jdG
```
How it works:
```
Jcw;FG.ptJI:hJj".*"G0jdG
Jcw assign("J",chop(input()))
FG.ptJ for G in permutations(tail(J)):
I:hJj".*"G0 if match(head(J),join(".*",G)):
jdG print(join(" ",G))
```
Notes: it takes a long time in the third example (`dababbabadbaccbcbaaacdacdbdd aa bb cc dd ba ba ba ab ac da db dc`).
[Answer]
# Pyth, 10 bytes
```
h@s./Myz.p
```
[Demonstration](https://pyth.herokuapp.com/?code=h%40s.%2FMyz.p&input=%5B%27cf%27%2C+%27g%27%2C+%27c%27%2C+%27fi%27%5D%0Acfigfic&debug=0)
This program is very much brute force. It first constructs every subset of the input, then every partition of the subsets, then checks for the first one which is a reordering of the word list. No possibilities is handled via erroring with no output to stdout, which is allowed by meta consensus. The error can be removed for 2 extra bytes.
Note that for many of the given test cases, the program will not complete in a reasonable period of time.
[Answer]
## JavaScript (ES6), 119 bytes
```
(s,a,t=``,...r)=>a[0]?a.find((w,i)=>(b=[...a],b.splice(i,1),f(s,b,w+t,w,...r)))&&q:~s.search(t.split``.join`.*`)&&(q=r)
```
Accepts a string and an array of words and returns an array of words or `undefined` on failure. Add 2 bytes if it must return the empty string on failure (`?q:```), in which case this alternative version is only 120 bytes and returns the empty string on failure, and can even save 2 bytes if it's allowed to return 0 on failure:
```
(s,a,t=``,...r)=>a[0]?a.reduce((q,w,i)=>q||(b=[...a],b.splice(i,1),f(s,b,w+t,w,...r)),0):~s.search([...t].join`.*`)?r:``
```
(After writing this I noticed that the algorithm is basically the same as @KennyLau's Pyth answer.)
Edited edit: updated after clarification of question, but is now *really* slow on the third test case; I set it off the night before last and this morning I've just noticed that it has actually found the solution, somewhere between 30 and 40 hours later. I was really mean though and fed the solution to it (it works best with the reversed solution, which it will verify instantly).
[Answer]
# Java 7, 256 bytes
```
import java.util.*;String c(String...a){Map s=new HashMap();int j,i=1,l=a[0].length();for(;i<a.length;i++)if((j=a[0].indexOf(a[i]))>-1)s.put(j,s.get(j)!=null?s.get(j)+" "+a[i]:a[i]);a[0]="";for(j=0;j<l;j++)a[0]+=s.get(j)!=null?s.get(j)+" ":"";return a[0];}
```
It should definitely be possible to golf this more by using a different approach, but this will do for now..
**Ungolfed & test code:**
[Try it here.](https://ideone.com/gUKEaU)
```
import java.util.*;
class M{
static String c(String... a){
Map s = new HashMap();
int j,
i = 1,
l = a[0].length();
for(; i < a.length; i++){
if((j = a[0].indexOf(a[i])) > -1){
s.put(j, s.get(j) != null
? s.get(j) + " " + a[i]
: a[i]);
}
}
a[0] = "";
for(j = 0; j < l; j++){
a[0] += s.get(j) != null
? s.get(j) + " "
: "";
}
return a[0];
}
public static void main(String[] a){
System.out.println(c("dogcatfrog", "cat", "frog", "dog"));
System.out.println(c("xxcatfixsxhingonxgrapexxxfishingcxat", "cat", "grape", "catfish", "fishing"));
System.out.println(
c("dababbabadbaccbcbaaacdacdbdd ", "aa", "bb", "cc", "dd", "ba", "ba", "ba", "ab", "ac", "da", "db", "dc"));
System.out.println(c("flea", "antelope"));
}
}
```
**Output:**
```
dog cat frog
cat grape fishing
da ab ba ba ba bb db ac cc aa dd
```
[Answer]
# Groovy (44 Bytes)
I can't believe nobody else used regexes for this...
```
{a,b->a.findAll(/${b.join('|')}/).join(" ")}
```
## Explanation
`/${b.join('|')}/` - Create a regex to find any of the words in a string.
`.findAll(...)` - Find and collect all occurrences in the string into an array.
`.join(" ")` - Join the array together with spaces.
Basically, if there aren't any occurrences, the array is empty and returns an empty string implicitly. If it does find occurrences, it returns an array object with the occurrences then flattens it into a string.
] |
[Question]
[
# Introduction
[Doppelkopf](https://en.wikipedia.org/wiki/Doppelkopf) is a traditional German card game for 4 players. The deck consists of 48 cards (9, 10, Jack, Queen, King, Ace of each suit while every card is in the game twice), so each player gets 12 at the start of a round.
There are always 2 teams which are determined by the distribution of the Queens of Clubs. The 2 players who are holding the Queens form a team and play against the other 2 players. The team with the Queens of Clubs are called the "Re"-team, the one without is the "Contra"-team.
At the start of the round noone knows who is on which team. The team distribution will be revealed in the progress of the round, which adds a lot of strategy to the game.
The game consists of 12 tricks. The players who wins a trick gets all the 4 cards in it. Every card has a certain value (King counts 4, Ace counts 11 for example), all cards together sum up to 240 points which is the highest possible result.
At the end of a round the points are counted and the team with the highest amount of points wins the round. Then then next round starts...
# The Challenge
Every round has a certain score which is determined by the amount of points the winning team got and potential announcements. You will have to write a program that takes the point distribution and potential announcements (see explanation below) as input and outputs the score of the round and the winner.
# The score calculation
As mentioned there is a Re- and a Contra-team. Also there is a maximum of 240 points possible in one round. The Re-team has to get 121 points to win, while the Contra-team only needs 120. There is also the possibility to announce "Re" or "Contra" at the start of the round if you think that you will win the game. By doing this you are raising the score.
Here are the scoring rules:
* +1 for winning the game
* +1 if the losing team has **less** than 90 points ("Keine 90")
* +1 if the losing team has **less** than 60 points ("Keine 60")
* +1 if the losing team has **less** than 30 points ("Keine 30")
* +1 if the losing team has 0 points ("Schwarz")
* +2 for an announcement of Contra
* +2 for an announcement of Re
* +1 if the Contra team won ("Gegen die Alten")
**Note:** Re/Contra-Announcements always apply, regardless of the winner. See examples in the testcases below.
# Input and Output
The input to the program will be the score of the Re-team and potential announcements of Re or Contra. Since there are always 240 points in the game you can easly calculate the score of the Contra-team.
The input will be a single string which has the score of the Re-team first, followed by the potential announcements, while "R" is for Re and "C" is for Contra. If both got announced, Re will always come first.
Output will be the score of the game followed by the winning team ("C" for Contra, "R" for Re)
# Rules
* Your submission can be a full program or a function. If you choose the latter include an example on how to invoke it.
* Input can be provided by function- or command line arguments or user input.
* Output can be provided as return value or printed to the screen.
* [Standard loopholes](http://meta.codegolf.stackexchange.com/questions/1061/loopholes-that-are-forbidden-by-default) apply.
* Lowest Byte-Count wins!
# Testcases
```
Input -> Output (Explanation)
145R -> 3R (Re won, +1 for winning, +2 for Re-Announcement)
120 -> 2C (Contra won, +1 for winning, +1 for winning as Contra)
80C -> 5C (Contra won, +1 for winning, +1 for no 90, +1 for winning as Contra, +2 for Contra-Announcement)
240R -> 7R (Re won, +1 for winning, +1 for no 90, +1 for no 60, +1 for no 30, +1 for no points for the losing team, +2 for Re-announcedment)
90 -> 2C (Contra won, +1 for winning, +1 for winning as Contra)
110RC -> 6C (Contra won, +1 for winning, +1 for winning as Contra, +2 for Re-Announcement, +2 for Contra-Announcement)
110R -> 4C (Contra won, +1 for winning, +1 for winnins as Contra, +2 for Re-Announcement)
184C -> 5R (Re won, +1 for winning, +1 for no 90, +1 for no 60, +2 for Contra-Announcement)
```
*Short note: I left out some rules (like solos and bonus points) on purpose to keep the challenge simple. So if you are already familiar with the game, don't be confused :)*
Happy Coding!
[Answer]
## CJam, ~~47~~ 46 bytes
```
L~]_,2*\0=:S121<:AS240S-e<_g3@30/-Te>--+A"RC"=
```
[Run all test cases.](http://cjam.aditsu.net/#code=qN%2F%7B'%20%250%3D%3AL%3B%0A%0AL~%5D_%2C2*%5C0%3D%3AS121%3C%3AAS240S-e%3C_g3%4030%2F-Te%3E--%2BA%22RC%22%3D%0A%0A%5DoNo%7D%2F&input=145R%20%20-%3E%203R%0A120%20%20%20-%3E%202C%0A80C%20%20%20-%3E%205C%0A240R%20%20-%3E%207R%0A90%20%20%20%20-%3E%202C%0A110RC%20-%3E%206C%0A110R%20%20-%3E%204C%0A184C%20%20-%3E%205R)
Hmm, conceptually this challenge is really simple, but it's surprisingly tricky to golf.
[Answer]
## [Labyrinth](https://github.com/mbuettner/labyrinth), ~~136~~ ~~103~~ ~~94~~ ~~92~~ ~~87~~ ~~84~~ ~~76~~ ~~74~~ ~~69~~ 61 bytes
```
(}?
;)
,)
`
2
0:
{
_-+}}82"
}" {{"(#0/#--!.@
-=-)}67 )
```
[Try it online!](http://labyrinth.tryitonline.net/#code=ICh9Pwo7KQosKQpgCjIKMDoKIHsKXy0rfX04MiIKfSIgICAgIHt7IigjMC8jLS0hLkAKIC09LSl9NjcgKQ&input=MTQ1Ug)
Ahh, it's been way too long since I used Labyrinth. It's always quite a joy to golf it. :)
### Explanation
*This is a bit outdated now. The overall structure of the program is still the same, but a few details have changed. I'll update this later. This is the previous solution, for reference:*
```
(}?
;)
,)
`
2
0 }82{_240{- ("
{ ; #;`"~#0/#--!.@
:}-"-))}67{{
;#
```
Let's break down the score a bit:
* If we count the characters after the number in the input, let's call it `M`, then there will be `2M+1` points in the final score, for winning, Re, and Contra.
* If the score is 120 or less, Contra wins and the score is incremented by `1`.
* Looking at the losing score, we can (integer) divide it by 30 to determine the additional points. That has three problems though: 1. the value increases in the wrong direction, so we need to subtract it from the score (and add 3 to it to correct for that). 2. This gives an additional point for a result of exactly 120, which we need get rid of. 3. It doesn't handle a result of 0 (for the losing side) yet, but we can include it by turning 0 into -1 (since Labyrinth's integer division rounds towards `-∞`).
That's pretty much how the code works. Sp3000 posted a good primer for Labyrinth today, so I decided to steal it. :)
* Labyrinth is stack-based and two-dimensional, with execution starting at the first recognised character. There are two stacks, a main stack and an auxiliary stack, but most operators only work on the main stack. Both stacks are bottomless, filled with zeroes.
* At every branch of the labyrinth, the top of the stack is checked to determine where to go next. Negative is turn left, zero is straight ahead and positive is turn right.
* Digits don't push themselves (as they do in Befunge, ><> or Prelude) - instead they "append themselves" to the top of stack, by multiplying the top by 10 and adding themselves.
So execution starts on the `(` in the first row, with the instruction pointer (IP) going right. `(` just turns the top of the main stack into `-1` and `}` shifts it off to the auxiliary stack, where we can forget about it. The program really starts with the `?` which reads the integer from STDIN. The IP then hits a dead end and turns around.
`}` shifts the input to the auxiliary stack and `(` decrements another zero to `-1`. This will be the final score. We now enter a very tight clockwise loop:
```
;)
,)
```
The `))` increments the score by two (so the first time we go through the loop, the score becomes `1`, the score for winning). Then `,` reads a character. As long as that's not EOF, the loop continues. `;` discards the character, because we don't care if it was `R` or `C` and `))` adds two to the score again. This will repeat 0, 1 or 2 times depending on the input.
We leave the loop, when we've hit EOF, the top of the stack will be `-1`. We then run this linear part:
```
`20{:}-
```
The ``` is unary negation, so we get `1`, then `20` turns it into a `120`. `{:}` gets a copy of the input integer from the auxiliary stack and `-` computes the difference with `120`. We can use the sign of this result to determine who won.
1. If the result is negative, Re won and we take the northern path, executing:
```
;}82{_240{-#;
```
`;` discards this result, `}` shifts the score away, `82` puts itself (character code of `R`) at the bottom of the main stack, `{` gets the score back on top, `_240{-` subtracts the integer input from 240 so we can work with Contra's (the losing side's) points.
The `#;` is just to ensure that we have a non-zero value on the stack so we can join up both paths reliably.
2. If the result is positive, Contra won and we take the southern path, executing:
```
;#"-))}67{{#;
```
The `#` pushes the stack depth which is `1`. This gets subtracted from the score before we add `2` with `))`. `67` puts itself (character code of `C`) at the bottom of the main stack. `{{` gets the other values back.
3. If the result is zero, Contra still won. However, that's the 120/120 case for which we need add an extra point to the final score (see above). That's why this path doesn't push a 1 with `#`, but instead just leaves the zero such that the `-` simply removes that zero from the stack.
The stacks are now joined back together and we've accounted for everything except the part where we divide by 30. But first, we need to turn a zero-score into -1. That's what this little detour does:
```
("
`"~
```
The ``` doesn't affect a zero, `"` is a no-op and `~` is bitwise negation. The bitwise NOT of `0` is `-1` as required. If the score was positive instead, then ``` makes it negative, `(` decrements it by `1` and `~` undoes both of those operations in one go.
```
#0/#--!.@
```
The stack depth is now 3 (the winning side's character, the total score so far, and the losing side's points), so `#` pushes `3`. `0` turns it into a `30`, `/` does the division. `#` pushes another `3` which is subtracted and that result is in turn subtracted from the final score. `!` prints it as an integer, `.` prints the winning side as a character and `@` terminates the program.
[Answer]
# JavaScript (ES6), 106
Around 100 bytes with a non golfing language.
```
x=>([,r,t]=x.match`(\\d+)(.*)`,t=1+t.length*2,w=r>120?(r=240-r,'R'):(++t,'C'),t+!r+(r<30)+(r<60)+(r<90)+w)
```
**Test**
```
f=x=>(
[,r,t]=x.match`(\\d+)(.*)`,
t=1+t.length*2,
w=r>120?(r=240-r,'R'):(++t,'C'),
t+!r+(r<30)+(r<60)+(r<90)+w
)
console.log=x=>O.textContent+=x+'\n'
test=[
['145R', '3R'], //(Re won, +1 for winning, +2 for Re-Announcement)
['120', '2C'], //(Contra won, +1 for winning, +1 for winning as Contra)
['80C', '5C'], //(Contra won, +1 for winning, +1 for no 90, +1 for winning as Contra, +2 for Contra-Announcement)
['240R', '7R'], //(Re won, +1 for winning, +1 for no 90, +1 for no 60, +1 for no 30, +1 for no points for the losing team, +2 for Re-announcedment)
['90', '2C'], //(Contra won, +1 for winning, +1 for winning as Contra)
['110RC','6C'], //(Contra won, +1 for winning, +1 for winning as Contra, +2 for Re-Announcement, +2 for Contra-Announcement)
['110R', '4C'], //(Contra won, +1 for winning, +1 for winnins as Contra, +2 for Re-Announcement)
['184C', '5R'], //(Re won, +1 for winning, +1 for no 90, +1 for no 60, +2 for Contra-Announcement)
]
test.forEach(t=>{
var i=t[0],k=t[1],r=f(i)
console.log((k==r?'OK ':'KO ')+i+' -> '+r+(k!=r?' (expected: '+k+')':''))
})
```
```
<pre id=O></pre>
```
[Answer]
## ES6, 92 bytes
```
s=>(p=s.match(/\d+|./g),n=+p[0],r=n>120,p.length*2-r+!(n%120)+3-((r?240-n:n)/30|0)+"CR"[+r])
```
`p.length*2` overestimates the score by 1 if Re wins so I have to subtract `r` again. `!(n%120)+3-((r?240-n:n)/30|0)` is what I came up with to encapsulate the rules for scoring "Keine"; I so wish the boundaries had been 31, 61 and 91 as that would have made the formula `4-((r?269-n:29+n)/30|0)`.
] |
[Question]
[
Two rows of a matrix are *orthogonal* if their inner product equals zero. Call a matrix with all rows pairwise orthogonal an *orthogonal matrix*. A [circulant matrix](https://en.wikipedia.org/wiki/Circulant_matrix) is one where each row vector is rotated one element to the right relative to the preceding row vector. We will only be interested in matrices where the entries are either `-1` or `1`.
**Task**
Write code to count as many different `n/2` by `n` orthogonal, circulant matrices as possible in 2 minutes (for even `n`).
**Input**
The code has no input. It can try any even values of `n` it likes. For example, the code could try all `n` that are multiplies of `4` starting from the smallest and also try `n = 2`.
**Output**
The number of orthogonal circulant matrices you have found. There should also be a simple switch in your code to enable it to output the matrices themselves.
**Score**
The number of circulant matrices you have found.
**Hints**
Orthogonal `n/2` by `n` circulant matrices only exist when `n` is a multiple of `4` or `n` is less than `4`.
An example orthogonal circulant matrix is:
```
-1 1 -1 -1
-1 -1 1 -1
```
**Tips for a naive approach**
The most naive approach is just to iterate over all possible matrices. This can be sped up using the following two observations.
* To test orthogonality of a circulant matrix we need only compare each row to the first one. This is implemented in the sample code.
* We can iterate over [Lyndon words](https://en.wikipedia.org/wiki/Lyndon_word) and then if we find an orthogonal matrix multiply by the number of possible rotations. This is idea as yet untested so may be buggy.
**Sample code**
This is a very simple and naive python answer. I ran it using `timeout 120`.
```
import itertools
def check_orthogonal(row):
for i in xrange(1,int(n/2)):
if (sum(row[j]*row[(j+i) % n] for j in xrange(n)) != 0):
return False
return True
counter = 0
for n in xrange(4,33,4):
for row in itertools.product([-1,1],repeat = n):
if check_orthogonal(row):
counter +=1
print "Counter is ", counter, ". n = ", n
```
**Correctness tests**
For `n = 4,8,12,16,20,24,28`, the number of distinct matrices you should get is `12,40,144,128,80,192,560`, respectively.
**Levels of awesomeness**
Judging by the sample code, I hereby present two levels of awesomeness that any answer can aspire to achieve.
* Silver level awesomeness is achieved by getting a score or *1156*.
* Gold level of awesomeness is to get higher than that.
**Languages and libraries**
You can use any language or library you like (that wasn't designed for this challenge). However, for the purposes of scoring I will run your code on my machine so please provide clear instructions for how to run it on Ubuntu.
**My Machine** The timings will be run on my machine. This is a standard Ubuntu install on an 8GB AMD FX-8350 Eight-Core Processor. This also means I need to be able to run your code.
**Leading answers**
* **332** by flawr in **Octave**
* **404** by R.T. in **Python**
* **744** by Sample Solution using **pypy**
* **1156** by Thomas Kwa using **Java**. Silver level awesomeness!
* **1588** by Reimer Behrends in **OCaml**. Gold level awesomeness!
[Answer]
# OCaml, 1588 (n = 36)
This solution uses the usual bit pattern approach to represent vectors of -1s and 1s. The scalar product is as usual calculated by taking the xor of two bit vectors and subtracting n/2. Vectors are orthogonal iff their xor has exactly n/2 bits set.
Lyndon words are not per se useful as a normalized representation for this, as they exclude any pattern that is a rotation of itself. They are also relatively expensive to compute. Therefore, this code uses a somewhat simpler normal form, which requires that the longest consecutive sequence of zeroes after rotation (or one of them, if there are multiples) must occupy the most significant bits. It follows that the least significant bit is always 1.
Observe also that any candidate vector must have at least n/4 ones (and at most 3n/4). We therefore only consider vectors with n/4 ... n/2 bits set, since we can derive others via complement and rotation (in practice, all such vectors seem to have between n/2-2 and n/2+2 ones, but that seems to also be difficult to prove).
We build these normal forms from the least significant bit up, observing the constraint that any remaining runs of zeroes (called "gaps" in the code) must follow our normal form requirement. In particular, as long as at least one more 1-bit has to be placed, there must be room for the current gap and another than that is at least as big as the current gap or any other gap observed so far.
We also observe that the list of results is small. Therefore, we do not try to avoid duplicates during the discovery process, but simply record the results in per-worker sets and calculate the union of these sets at the end.
It is worth noting that the runtime cost of the algorithm still grows exponentially and at a rate that is comparable to that of the brute-force version; what this buys us is essentially a reduction by a constant factor, and comes at the cost of an algorithm that is more difficult to parallelize than the brute-force version.
Output for n up to 40:
```
4: 12
8: 40
12: 144
16: 128
20: 80
24: 192
28: 560
32: 0
36: 432
40: 640
```
The program is written in OCaml, to be compiled with:
```
ocamlopt -inline 100 -nodynlink -o orthcirc unix.cmxa bigarray.cmxa orthcirc.ml
```
Run `./orthcirc -help` to see what options the program supports.
On architectures that support it, `-fno-PIC` may offer some small additional performance gain.
This is written for OCaml 4.02.3, but may also work with older versions (as long as they aren't too old).
---
UPDATE: This new version offers better parallelization. Note that it uses `p * (n/4 + 1)` worker threads per instance of the problem, and some of them will still run considerably shorter than others. The value of `p` must be a power of 2. The speedup on 4-8 cores is minimal (perhaps around 10%), but it scales better to a large number of cores for large `n`.
```
let max_n = ref 40
let min_n = ref 4
let seq_mode = ref false
let show_res = ref false
let fanout = ref 8
let bitcount16 n =
let b2 n = match n land 3 with 0 -> 0 | 1 | 2 -> 1 | _ -> 2 in
let b4 n = (b2 n) + (b2 (n lsr 2)) in
let b8 n = (b4 n) + (b4 (n lsr 4)) in
(b8 n) + (b8 (n lsr 8))
let bitcount_data =
let open Bigarray in
let tmp = Array1.create int8_signed c_layout 65536 in
for i = 0 to 65535 do
Array1.set tmp i (bitcount16 i)
done;
tmp
let bitcount n =
let open Bigarray in
let bc n = Array1.unsafe_get bitcount_data (n land 65535) in
(bc n) + (bc (n lsr 16)) + (bc (n lsr 32)) + (bc (n lsr 48))
module IntSet = Set.Make (struct
type t = int
let compare = Pervasives.compare
end)
let worker_results = ref IntSet.empty
let test_row vec row mask n =
bitcount ((vec lxor (vec lsr row) lxor (vec lsl (n-row))) land mask) * 2 = n
let record vec len n =
let m = (1 lsl n) - 1 in
let rec test_orth_circ ?(row=2) vec m n =
if 2 * row >= n then true
else if not (test_row vec row m n) then false
else test_orth_circ ~row:(row+1) vec m n
in if test_row vec 1 m n &&
test_orth_circ vec m n then
begin
for i = 0 to n - 1 do
let v = ((vec lsr i) lor (vec lsl (n - i))) land m in
worker_results := IntSet.add v !worker_results;
worker_results := IntSet.add (v lxor m) !worker_results
done
end
let show vec n =
for i = 0 to n / 2 - 1 do
let vec' = (vec lsr i) lor (vec lsl (n - i)) in
for j = 0 to n-1 do
match (vec' lsr (n-j)) land 1 with
| 0 -> Printf.printf " 1"
| _ -> Printf.printf " -1"
done; Printf.printf "\n"
done; Printf.printf "\n"; flush stdout
let rec build_normalized ~prefix ~plen ~gap ~maxgap ~maxlen ~bits ~fn =
if bits = 0 then
fn prefix plen maxlen
else begin
let room = maxlen - gap - plen - bits in
if room >= gap && room >= maxgap then begin
build_normalized
~prefix:(prefix lor (1 lsl (plen + gap)))
~plen:(plen + gap + 1)
~gap:0
~maxgap:(if gap > maxgap then gap else maxgap)
~maxlen
~bits:(bits - 1)
~fn;
if room > gap + 1 && room > maxgap then
build_normalized ~prefix ~plen ~gap:(gap + 1) ~maxgap ~maxlen ~bits ~fn
end
end
let rec log2 = function
| 0 -> -1
| n -> 1 + (log2 (n lsr 1))
let rec test_gap n pat =
if n land pat = 0 then true
else if pat land 1 = 0 then test_gap n (pat lsr 1)
else false
let rec test_gaps n maxlen len =
let fill k = (1 lsl k) -1 in
if len = 0 then []
else if test_gap n ((fill maxlen) lxor (fill (maxlen-len))) then
len :: (test_gaps n maxlen (len-1))
else test_gaps n maxlen (len-1)
let rec longest_gap n len =
List.fold_left max 0 (test_gaps n len len)
let start_search low lowbits maxlen bits fn =
let bits = bits - (bitcount low) in
let plen = log2 low + 1 in
let gap = lowbits - plen in
let maxgap = longest_gap low lowbits in
worker_results := IntSet.empty;
if bits >= 0 then
build_normalized ~prefix:low ~plen ~gap ~maxgap ~maxlen ~bits ~fn;
!worker_results
let spawn f x =
let open Unix in
let safe_fork () = try fork() with _ -> -1 in
let input, output = pipe () in
let pid = if !seq_mode then -1 else safe_fork() in
match pid with
| -1 -> (* seq_mode selected or fork() failed *)
close input; close output; (fun () -> f x)
| 0 -> (* child process *)
close input;
let to_parent = out_channel_of_descr output in
Marshal.to_channel to_parent (f x) [];
close_out to_parent; exit 0
| pid -> (* parent process *)
close output;
let from_child = in_channel_of_descr input in
(fun () ->
ignore (waitpid [] pid);
let result = Marshal.from_channel from_child in
close_in from_child; result)
let worker1 (n, k) =
start_search 1 1 n k record
let worker2 (n, k, p) =
start_search (p * 2 + 1) (log2 !fanout + 1) n k record
let spawn_workers n =
let queue = Queue.create () in
if n = 4 || n = 8 then begin
for i = n / 4 to n / 2 do
Queue.add (spawn worker1 (n, i)) queue
done
end else begin
for i = n / 2 downto n / 4 do
for p = 0 to !fanout - 1 do
Queue.add (spawn worker2 (n, i, p)) queue
done
done
end;
Queue.fold (fun acc w -> IntSet.union acc (w())) IntSet.empty queue
let main () =
if !max_n > 60 then begin
print_endline "error: cannot handle n > 60";
exit 1
end;
min_n := max !min_n 4;
if bitcount !fanout <> 1 then begin
print_endline "error: number of threads must be a power of 2";
exit 1;
end;
for n = !min_n to !max_n do
if n mod 4 = 0 then
let result = spawn_workers n in
Printf.printf "%2d: %d\n" n (IntSet.cardinal result);
if !show_res then
IntSet.iter (fun v -> show v n) result;
flush stdout
done
let () =
let args =[("-m", Arg.Set_int min_n, "min size of the n by n/2 matrix");
("-n", Arg.Set_int max_n, "max size of the n by n/2 matrix");
("-p", Arg.Set_int fanout, "parallel fanout");
("-seq", Arg.Set seq_mode, "run in single-threaded mode");
("-show", Arg.Set show_res, "display list of results") ] in
let usage = ("Usage: " ^
(Filename.basename Sys.argv.(0)) ^
" [-n size] [-seq] [-show]") in
let error _ = Arg.usage args usage; exit 1 in
Arg.parse args error usage;
main ()
```
[Answer]
## Java, 1156 matrices
This uses fairly naive bitmasking, and takes under 15 seconds for n=28 on my machine.
Circulant matrices are determined by their first rows. Therefore, I represent the first rows of the matrices as bit vectors: 1 and 0 represent -1 and 1. Two rows are orthogonal when the number of set bits when they're xor'd together is n/2.
```
import java.util.Arrays;
class Main {
static void dispmatrix(long y,int N)
{
int[][] arr = new int[N/2][N];
for(int row=0; row < N/2; row++)
{
for(int col=0; col < N; col++)
{
arr[row][col] = (int) ((y >>> (N+row-col)) & 1L);
}
}
System.out.println(Arrays.deepToString(arr));
}
public static void main(String[] args) {
int count = 0;
boolean good;
boolean display = false;
long y;
for(int N=4; N <= 28 ;N += 4)
{
long mask = (1L << N) - 1;
for(long x=0; x < (1L<<N); x++)
{
good = true;
y = x + (x << N);
for(int row = 1; row < N/2; row++)
{
good &= N/2 == Long.bitCount((y ^ (y >>> row)) & mask);
}
if(good)
{
if(display) dispmatrix(y,N);
count++;
}
}
System.out.println(count);
}
}
}
```
I can't get Eclipse to work right now, so this was tested on repl.it.
Here are the number of first rows that are orthogonal to the first r rows afterwards for n=28:
```
[268435456, 80233200, 23557248, 7060320, 2083424, 640304, 177408, 53088, 14896, 4144, 2128, 1008, 1008, 560]
```
Optimizations:
* Since orthogonality doesn't change with a cyclic rotation of both rows, we just need to check that the first row is orthogonal to the rest.
* Rather than manually do an N-bit cyclic shift N/2 times, I store the bits to be shifted in at the top of the `long`, and then use a single `and` with the lower N bits to extract the needed ones.
Possible further optimizations:
* Generate Lyndon words. According to my calculations this only makes sense if Lyndon words can be generated in less than ~1000 cycles each.
* If Lyndon words take too long, we can still only check the bit vectors that start in `00`, and use their rotations (and rotations of the NOT) when we find an orthogonal matrix. We can do this because `0101...01` and `1010...10` are not possible first rows, and all the others contain either a `00` or a `11`.
* Branch maybe halfway through when the matrix is probably orthogonal. I don't know how much branching will cost, though, so I'll need to test.
* If the above works, start with a row other than row 1?
* Maybe there's some mathematical way to eliminate some possibilities. I don't know what that would be.
* Write in C++, of course.
[Answer]
# Python (404 matrices on i5-5300U)
Mainly posting this as a starting point for others to improve on, this can be cleaned up a lot, parallelized, etc.
```
import numpy
import itertools
import time
def findCirculantOrthogonalRows(n, t1, timeLimit):
validRows = []
testMatrix = numpy.zeros((n//2, n))
identityMatrixScaled = n*numpy.identity(n//2)
outOfTime = False
for startingRowTuple in itertools.product([1, -1], repeat=n):
for offset in range(n//2):
for index in range(n):
testMatrix[offset][index] = startingRowTuple[(index-offset) % n]
if(numpy.array_equal(identityMatrixScaled, testMatrix.dot(testMatrix.transpose()))):
validRows.append(startingRowTuple)
if(time.clock() - t1 >= timeLimit):
outOfTime = True
break
return (validRows, outOfTime)
n = 4
validFirstRows = []
t1 = time.clock()
timeLimit = 120
fullOutput = True
while(True):
print('calling with', n)
(moreRows, outOfTime) = findCirculantOrthogonalRows(n, t1, timeLimit)
if(len(moreRows) > 0):
validFirstRows.extend(moreRows)
if(outOfTime == True):
break
n += 4
print('Found', len(validFirstRows), 'circulant orthogonal matrices in', timeLimit, 'seconds')
if(fullOutput):
counter = 1
for r in validFirstRows:
n = len(r)
matrix = numpy.zeros((n//2, n))
for offset in range(n//2):
for index in range(n):
matrix[offset][index] = r[(index-offset) % n]
print('matrix #', counter, ':\n', matrix)
counter += 1
input()
```
[Answer]
# Matlab/Octave, 381 / 328 matrices
Also just the naive approach, trying every possible combination.
```
counter = 0;
%ok: 2,4,8
%none:
tic
for n=[2,4,8,12,16,20];
m=n/2;
N=2^n-1;
for k=1:N
k/N; %remove ; in order to see progress
v=(dec2bin(k,n)-'0')*2-1; %first row
z=toeplitz([v(1) fliplr(v(m+2:n))], v); %create circulante matrix
w = z * z.';
if norm(w - diag(diag(w))) < eps
counter = counter+1;
%n %remove % in order to see the matrices
%z
end
if toc>120;
break;
end
end
end
counter
```
[Answer]
# Matlab, 431 matrices
Adjusted from [@flawr's answer](https://codegolf.stackexchange.com/a/69182/110802), using Parallel Pool technique
>
> Number of Parallel Pool workers: 6
>
> CPU: Intel(R) Core(TM) i7-10750H CPU @2.60GHz
>
> Memory: 16.0 GB
>
>
>
```
% Turn off the unnecessary warnings
warning('off', 'MATLAB:nearlySingularMatrix')
counter = 0;
main_timer = tic;
% Define the loop indices
loop_indices = [2,4,8,12,16,20,24,28,32,36,40,44,48,52,56,60];
% Use parfor instead of for to enable parallel computing
% Requires Parallel Computing Toolbox
parfor idx = 1:length(loop_indices)
n = loop_indices(idx);
m = n / 2;
N = 2^n - 1;
for k = 1:N
% Use toc with the main_timer to get elapsed time
if toc(main_timer) > 120
break;
end
% Use built-in de2bi function for better performance
v = (de2bi(k, n, 'left-msb') * 2) - 1;
z = toeplitz([v(1) fliplr(v(m+2:n))], v);
w = z * z.';
% Use normest for faster estimation of matrix norm
if normest(w - diag(diag(w))) < eps
counter = counter + 1;
end
end
end
counter
```
] |
[Question]
[
In this challenge, you need to parse morgue files from the roguelike game [Dungeon Crawl Stone Soup](http://crawl.develz.org) and output it to STDOUT.
## What are these morgue files??
When you die, a text file is generated with that character's data inside. You can see what equipment the character had, what happened during the last few turns, and how many monsters he has killed.
You can find a example morgue file [here](http://crawl.berotato.org/crawl/morgue/Ryuzilla/morgue-Ryuzilla-20150317-113750.txt)
## The challenge
Your job is to make a program that takes one of those files from STDIN, parses it, and outputs the data to STDOUT.
To make this challenge a bit easier, you only have to parse the first block of text. (up until `The game lasted <time> (<turns> turns).`
You need to parse and output the following information:
* The version number.
* The score.
* The character name, title, race and class.
* The character level.
* The cause of death/victory.
* The amount of turns the run lasted.
Example:
```
Dungeon Crawl Stone Soup version <version number> character file.
<score> <name> the <title> (level <level>, 224/224 HPs)
Began as a <race> <class> on Mar 16, 2015.
Was the Champion of the Shining One.
<cause of death/victory>
The game lasted 16:11:01 (<turns> turns).
```
## Test Cases
### Test case 1 - Victory
**[Input file](http://crawl.berotato.org/crawl/morgue/Ryuzilla/morgue-Ryuzilla-20150317-113750.txt)**
Example output - Victory:
```
Version: 0.16.0-8-gd9ae3a8 (webtiles)
Score: 16059087
Name: Ryuzilla the Conqueror
Character: Gargoyle Berserker
Level: 27
Cause of Death/Victory: Escaped with the Orb and 15 runes on Mar 17 2015!
Turns: 97605
```
### Test case 2 - Death
**[Input file](http://crawl.berotato.org/crawl/morgue/8Escape/morgue-8Escape-20150131-204710.txt)**
Example output - Death:
```
Version: 0.16-a0-3667-g690a316 (webtiles)
Score: 462
Name: 8Escape the Ruffian
Character: Bearkin Transmuter
Level: 6
Cause of Death/Victory: Slain by an orc wielding a +0 trident (3 damage) on level 4 of the Dungeon.
Turns: 3698
```
## Rules
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") so the shortest code wins.
* In the event of a tie, the oldest answer wins.
* No standard loopholes.
* File input must be taken from STDIN
* Output must be sent to STDOUT
* The labels before the output (ex. `Turns:`) are optional.
### [Ungolfed sample code for inspiration](http://pastebin.com/AeVmqML7)
### [Morgue file generation code in DCSS](https://github.com/crawl/crawl/blob/6199648b78d653beca72b6d47ebc822e34984531/crawl-ref/source/chardump.cc)
[Answer]
# Perl, 151 bytes
148 code + 3 switches (`-0, -l, -p`). I'm sure this can be improved :)
Takes input from STDIN and prints the result on receiving EOF.
```
perl -lp0e 's/\.{3}|\s/ /g;y/ //s;$_=join$\,(/(\d.*?).{15}\..(\d+).(.+?).\(.+?(\d+).+?\b(?:a|an) (.+?) o.+? ([^.!]+[.!])[^.!]*?(\d+)[^(]+\)..\3/)[0..2,4,3,5..7]'
```
Ungolfed:
```
use strict;
use warnings;
# set the input record separator to undef (the -0 switch)
$/=undef;
# read the text (the -l switch)
$_=<STDIN>;
# replace all '...' and spaces by a ' '
s/\.{3}|\s/ /g;
# squeeze all contiguous spaces into a single space
y/ //s;
# collect the captured groups into @p
my @p=
/(\d.*?).{15}\.. # version is the first string starting with a digit and ending 15 characters before the period
(\d+). # points is the next string with only digits
(.+?).\(.+? # name starts after a gap of one character
(\d+).+?\b(?:a|an)\s # level is inside the next open paranthesis
(.+?)\so.+?\s # race, class occur after the 'a' or 'an' and end before ' o' i.e. (' on')
([^.!]+[.!])[^.!]*? # cause of death is the a sentence ending with '.' or '!'
(\d+)[^(]+\)..\3 # turns is the next sentence with digits within parantheses, followed by 2 characters and the player's name
/x;
$_=join"\n",@p[0..2,4,3,5..7]; # the level and race lines need to be swapped
# print the output (the -p switch)
print $_;
```
[ideone.com](https://ideone.com/xbCNyS)
[Answer]
# F#, 377 bytes
```
open System.Text.RegularExpressions
let s=System.String.IsNullOrWhiteSpace>>not
let m f=Regex.Match((f+"").Split[|'\r';'\n'|]|>Seq.filter s|>Seq.take 8|>Seq.reduce(fun a z->a+z.Trim()), ".*n (.*) c.*\.([0-9]+) (.*) \(l.* (.*),.*a (.*) o.*\.(?:(S.*)|W.*(E.*)).*.T.*\((.*) .*\).").Groups|>Seq.cast<Group>|>Seq.skip 1|>Seq.map(fun z ->z.Value)|>Seq.filter s|>Seq.iter(printfn"%s")
```
[Answer]
# Javascript (ES6), ~~297~~ 230 bytes
For now, this is a test-driven regular expression.
It simply replaces the unwanted info and keeps the important stuff.
It creates an anonymous function that simply returns the wanted text.
```
_=>_.replace(/^.+version(.*) character file\.([\n\r]+)(\d+)([^\(]+) \([^\d]+( \d+),.+\n\s+.+as a(.+) on.+\n\s+(?:Was.+One\.\n)?((?:.|\n)+[!.])\n(?:.|\n)+\((\d+)(?:.|\n)+$/,'$1\n$3\n$4\n$6\n$5\n$7\n$8').replace(/\s+(\.{3} ?)?/,' ')
```
Isn't it a beast?
---
Thanks for [sysreq](https://codegolf.stackexchange.com/users/46231/sysreq)'s tip about the labels being optional. That saved me **67 bytes**!
---
You can test the resulgar expression on: <https://regex101.com/r/zY0sQ0/1>
[Answer]
# Python3, 472 bytes
I thought I'd be able to get this far shorter. Not surprised I beat my own submission, though.
Run it like `python3 dcss.py morgue-file.txt`.
```
import sys
n="\n"
s=" "
f=open(sys.argv[1],'r').read().split(n)[:11]
m=range
a=len
d=","
for i in m(a(f)):
f[i]=f[i].split(s)
for x in m(a(f[i])):
f[i][x]=f[i][x].strip()
h=f[0]
g=f[10]
k=f[2]
def r(j,u):
j=list(j)
while u in j:
j.remove(u)
return"".join(j)
def l(x):
c=s
for i in m(a(x)):
c+=x[i]+s
return c.strip()
print(h[6]+s+h[7]+n+k[0]+n+g[0]+s+g[1]+s+g[2]+n+r(g[3],"(")+s+r(g[4],")")+n+r(k[5],d)+n+r(l(f[4])+l(f[5])+l(f[6])+l(f[7]),".")+n+r(g[17],d))
```
[Answer]
# Go, ~~589~~ ~~502~~ ~~489~~ 487 bytes
```
package main;import(."fmt";."io/ioutil";"os";."strings");func d(z,ch string)string{return Map(func(r rune)rune{if IndexRune(ch,r)<0{return r};return -1},z)};func main(){x:=Split;f,_:=ReadFile(os.Args[1]);n:="\n";l:=" ";m:=",";h:=".";q:=x(string(f),n)[:11];k:=x(q[0],l);y:=x(q[10],l);u:=x(q[2],l);g:="";for _,e:=range Fields(d(q[4],n+h)+l+d(q[5],n+h)+l+d(q[6],n+h)+l+d(q[7],n+h)){g=g+e+l};Print(k[6]+l+k[7]+n+u[0]+n+y[0]+l+y[1]+l+y[2]+n+d(y[3]+l+y[4],"()")+n+d(u[5],m)+n+g+n+d(y[17],m))}
```
after running `go fmt`, `go fix`, and `go vet` here is the "ungolfed" version:
```
package main
import (
. "fmt"
. "io/ioutil"
"os"
. "strings"
)
func d(z, ch string) string {
return Map(func(r rune) rune {
if IndexRune(ch, r) < 0 {
return r
}
return -1
}, z)
}
func main() {
x := Split
f, _ := ReadFile(os.Args[1])
n := "\n"
l := " "
m := ","
h := "."
q := x(string(f), n)[:11]
k := x(q[0], l)
y := x(q[10], l)
u := x(q[2], l)
g := ""
for _, e := range Fields(d(q[4], n+h) + l + d(q[5], n+h) + l + d(q[6], n+h) + l + d(q[7], n+h)) {
g = g + e + l
}
Print(k[6] + l + k[7] + n + u[0] + n + y[0] + l + y[1] + l + y[2] + n + d(y[3]+l+y[4], "()") + n + d(u[5], m) + n + g + n + d(y[17], m))
}
```
*Edit:* using dot-imports helps a lot.
Pretty self-explanatory but I can explain if need be. This is my first 'real' Go program and I'm still a beginner at codegolf so tips are welcome!
*Edit:* you said "take a file from STDIN", and you can run this script (if you have go installed) by running `go install <foldername>` and then `<binaryname> morgue-file.txt` or `go run main.go morgue.txt`
] |
[Question]
[
The [*Ship of Theseus*](http://en.wikipedia.org/wiki/Ship_of_Theseus) is an old question that goes something like:
>
> If a ship has had all of its original parts replaced, is it still the same ship?
>
>
>
For this golf, we're going to slowly replace "parts" on a "ship", and see how long it takes to get a whole new ship.
### Task
A ship is comprised of at least two parts. The parts are given as an array of positive (non-zero) integers, representing the part's condition.
On each cycle, [randomly choose](http://meta.codegolf.stackexchange.com/a/1325/14215) one part from the list in a uniform fashion. That part's condition will be reduced by one. When a part's condition reaches zero, it is replaced by a new part. The new part starts with the same condition value as the original did.
On the first cycle where all parts have been replaced (at least) once, stop and output the number of cycles it took.
For example (assume I'm choosing parts randomly here):
```
2 2 3 <- starting part conditions (input)
2 1 3 <- second part reduced
2 1 2 ...
2 1 1
2 2 1 <- second part reduced to zero, replaced
1 2 1
1 2 3 <- third part replaced
1 1 3
2 1 3 <- first part replaced
```
Output for this example would be `8`, since it took eight cycles for all parts to be replaced. Exact output should differ for each run.
### I/O
The only input is the list/array of integers for part condition. The only output is a number of cycles. You can take/give these values in any of the usual ways: STDIO, function arguments/returns, etc.
### Test Cases
Since output is not fixed, you could use whatever you want to test, but here's a couple for standardization purposes:
```
1 2 3 4
617 734 248 546 780 809 917 168 130 418
19384 74801 37917 81706 67361 50163 22708 78574 39406 4051 78099 7260 2241 45333 92463 45166 68932 54318 17365 36432 71329 4258 22026 23615 44939 74894 19257 49875 39764 62550 23750 4731 54121 8386 45639 54604 77456 58661 34476 49875 35689 5311 19954 80976 9299 59229 95748 42368 13721 49790
```
[Answer]
## GolfScript (26 24 bytes) / CJam (20 18 bytes)
GolfScript:
```
~{$)*}{.,rand{(+}*((+}/,
```
[Online demo](http://golfscript.apphb.com/?c=OyJbMiAyIDNdIgoKfnskKSp9ey4scmFuZHsoK30qKCgrfS8sCg%3D%3D)
CJam (same idea but slightly different implementation):
```
q~{_mr((+_$)*}g;],
```
[Online demo](http://cjam.aditsu.net/#code=q~%7B_mr((%2B_%24)*%7Dg%3B%5D%2C&input=%5B2%202%203%5D)
Input is on stdin in the form `[2 2 3]`.
This is one of those rare occasions where GolfScript's *unfold* operator is useful. It allows us to accumulate the states which the ship passes through, and then count them at the end. Note that the array which is counted includes the initial (input) state but not the final state in which the last element has been reduced to 0.
However, although CJam doesn't have *unfold* its ability to shuffle an array uniformly for only 2 chars counts for a lot and allows it to come out on top.
[Answer]
# Pyth, 12 bytes
```
f!eSXOUQQtZ1
```
[Demonstration.](https://pyth.herokuapp.com/?code=f!eSXOUQQtZ1&input=%5B2%2C%202%2C%203%5D&debug=0)
How it works:
This is based around Pyth's infinite filter, which tests an expression with increasing inputs until it returns something truthy, then returns the input which caused this to happen. However, the expression that will be tested will not use the input value.
Instead, the expression will modify the input list by decrementing a random entry. This is accomplished via the expression `XOUQQtZ`. This means increase the index `OUQ` in the list `Q` by `tZ`. `OUQ` is a random index in the length of `Q`, and `tZ` is -1. `Q` is initialized to the input list.
After modifying `Q` in this fashion, we take its current value, which `X` returns, take its maximum entry with `eS`, and take the logical not of that value with `!`. This returns a truthy value for the first time when every element of `Q` has been reduced to `0` or below for the first time.
To ensure that the number returned will be exactly the number of times that `Q` was modified, we will start the count at `1`, indicating the the first time this is called, there has been 1 modification. To see what `Q` looks like after each iteration of the code, check out the version [here](https://pyth.herokuapp.com/?code=f!eS%2BXOUQQtZpbQ1&input=%5B2%2C%202%2C%203%5D&debug=0).
[Answer]
# Python 3, ~~91~~ 71 bytes
20(!) bytes saved thanks to @xnor.
```
from random import*
def f(p):shuffle(p);p[0]-=1;return max(p)<1or-~f(p)
```
Recursive function calling itself with smaller piece-values until all piece-values are 0 or negative and every function returns the return value of its child + 1 and the lastly called one returns 1.
[Answer]
# Python 3, 175 bytes
```
import random
p,t=input().split(),0;f,r=[int(i)for i in p],[0]*len(p)
while 0 in r:
f[random.randint(0,len(f)-1)]-=1;t+=1
for x in range(len(f)):
r[x]=int(f[x]<1)
print(t)
```
*Not especially well golfed*.
Try it online [here](http://repl.it/lfq)
] |
[Question]
[
# Introduction
You are a friend of a curator for an art museum, who has had the recent delight of getting modern art from four artists (*some of which may give the curator zero pieces of art, young scoundrels*). As this is modern art, all of any given artist's pieces look exactly the same. Your friend wants to use a computer to help decide which order to place these pieces in.
# Program Requirements
Your program must take five integers (passed to a function or inputted through stdin (or someway else)). The first four are the number of paintings supplied by each of the four artists. The last value is an permutation index `i` (counting from 1, not 0). The curator wishes to see the `i`th permutation by lexicographic order of the paintings.
Your program must output this permutation in any reasonable format: e.g. `abbccd` or `[0 1 1 2 2 3]`. The runtime for input totalling fewer than ten paintings must take less than an hour (this should hopefully be no problem).
**You are not allowed to use any in-built functions to work out permutations**
# Examples
Input: 0 1 2 0 2
Given that we have one painting by artist B and two by artist C (and they all look the same), the permutations in lexicographic order are:
>
> ['bcc', '**cbc**', 'ccb']
>
>
>
The highlighted permutation would be the correct output, because it is the second in lexicographic order.
Input: 1 2 0 1 5
>
> ['abbd', 'abdb', 'adbb', 'babd', '**badb**', 'bbad', 'bbda', 'bdab', 'bdba', 'dabb', 'dbab', 'dbba']
>
>
>
## Testing
Here are some tests that should be correct.
```
1 2 4 1 5 - ABBDCCCC
2 2 3 1 86 - ABBCACDC
4 1 2 0 24 - AACACBA
1 4 3 2 65 - ABBCBBDCDC
```
A short piece of code in Python3 that should randomly generate inputs and outputs is available here (not valid for entry, this uses the Python import of permutations):
```
from itertools import permutations
from random import randint
a,b,c,d,n = randint(1,2),randint(1,2),randint(1,3),randint(1,3),randint(1,15)
print(str(a) + " " + str(b) + " " + str(c) + " " + str(d) + " " + str(n) + " - " + str(sorted(set([''.join(p) for p in permutations(a * "a" + b * "b" + c * "c" + d * "d")]))[n-1]))
```
# Scoreboard
```
Optimizer - CJam - 39 - Confirmed - Bruteforce
EDC65 - JavaScript - 120 - Confirmed - Bruteforce
Jakube - Python2 - 175 - Confirmed - Algorithmic
```
[Answer]
# Python 2: ~~175~~ 163 chars
This is not a serious golfing answer. With a different algorithm I reached 138 byte.
Just wanted to post this here, because it doesn't use brute force. Complexity is Theta(#pictures).
```
f=lambda x:0**x or x*f(x-1)
def g(Q,n):
while sum(Q):
for j in 0,1,2,3:
p=f(sum(Q)-1)*Q[j]
for k in Q:p/=f(k)
if p<n:n-=p
else:print j;Q[j]-=1;break
```
## Usage:
```
g([1, 4, 3, 2], 65)
```
## edit:
Same algorithm, just some golfing: don't import the factorial method and little changes in the order of the calculations.
# Pyth translation: 61 characters
```
Lu*GhHUb1WsPQV4J*@QNytsPQFZPQ=J/JyZ)I<JeQ XQ4-eQJ)EN XQNt@QNB
```
Nothing special here, exact translation of my python code. Way too long though. I had too use a few ugly (long) things. The first 9 letter alone is the definition of the factorial.
```
Lu*GhHUb1 def y(b): G=1; for H in range(b): G*= H+1; return G
```
Also stuff like `Q[j]-=1` is way too long: `XQNt@QN` (1 character more than Python!!!)
## Usage:
Try it here: [Pyth Compiler/Executor](https://pyth.herokuapp.com/). Disable debug mode and use `[2, 2, 3, 1, 86]` as input.
[Answer]
# CJam, ~~50 43~~ 39 bytes
```
q~(])\{W):Wa*}%s:X{Xm*:s_&}X,(*{$X=},$=
```
This can be golfed a lot.
Takes input from STDIN in following format:
```
4 1 2 0 24
```
Outputs the painting. For example for above input:
```
0020210
```
[Try it online here](http://cjam.aditsu.net/)
Do note that the online compiler gives up for larger painting sizes. You will have to try larger inputs on the [Java version](http://sourceforge.net/p/cjam/wiki/Home/)
[Answer]
# JavaScript (ES6) 120 ~~138 147~~
As a function with the required five parameters, output via console.
Using symbols 0,1,2,3. I calc the total of symbols, then build and check every base 4 number having the required number of digits. Numbers with the wrong number of any digit are discarded.
Note: with JavaScript 32 bit integer this works for up to 15 paintings.
**Edit** Shorter (avoid .toString) and way faster (modified exit condition). Time for each test below 1 sec.
**Edit2** no algorithm change, golfed more (indentation added for readability)
```
F=(w,x,y,z,n)=>{
for(a=0;n;n-=l=='0,0,0,0')
for(l=[w,x,y,z],t=w+x+y+z,v='',b=a++;t--;b/=4)--l[d=b&3],v=d+v;
console.log(v)
}
```
**Ungolfed** And no FireFox required
```
F=function(w,x,y,z,n) {
for(a=0; n; a++) // exit when solution found (if wrong parameters, run forever)
{
l=[w,x,y,z]; // required number of each symbol
t=w+x+y+z; // total of digits
v=''; // init output string
for(b=a;
t--; // digit count down
b >>= 2) // shift for next digit
{
d = b & 3; //get digit
--l[d]; // decrement for the current digit
v = d + v; // add to output string
}
l[0]|l[1]|l[2]|l[3] // if digits ok
||--n // decrement counter
}
console.log(v) // when found, exit for and print the answer
}
```
**Test** In FireBug/FireFox console
```
F(1, 2, 4, 1, 5)
F(2, 2, 3, 1, 86)
F(4, 1, 2, 0, 24)
F(1, 4, 3, 2, 65)
```
*Output*
```
01132222
01120232
0020210
0112113232
```
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), 20
```
@fqPQm/TdU4^U4sPQteQ
```
[Try it here.](https://pyth.herokuapp.com/)
Input is in Python list form, e.g. `[1, 2, 4, 1, 5]`
Output is also in Python list form, e.g. `[0, 1, 1, 3, 2, 2, 2, 2]` for the above input.
The solution is brute force, and takes about 10 seconds, worst case, on my machine.
How it works:
```
@fqPQm/TdU4^U4sPQteQ
^U4sPQ All permutations of [0, 1, 2, 3] with length equal to the number
of paintings.
m/TdU4 Find the count (/) of paintings by painter in the input list.
fqPQ Filter the permutations on the counts being the desired counts
in the input.
This gives all possible orderings of the paintings.
@ teQ Index into this list at the given location - 1. (0-indexing)
```
] |
[Question]
[
After your [disastrous canoe ride](https://codegolf.stackexchange.com/questions/36337/extreme-whitewater-canoeing), you ended up falling off a waterfall at the end of the river rapids. Your canoe exploded, but you managed to survive the explosion. However, your river journey went completely off the map - you have now found yourself lost in the midst of a forest. Luckily, you still have your programming skills, so you decide to carve a program into the side of a tree to help you find your way through the forest. However, there is not much surface area on the tree, so you must make your program as short as possible.
The forest can be described as a `n` by `n` (`n > 5`) square of characters, which will only consist of the lowercase letters `a-z`. An example forest:
```
anehcienwlndm
baneiryeivown
bnabncmxlriru
anhahirrnrauc
riwuafuvocvnc
riwnbaueibnxz
hyirorairener
ruwiiwuauawoe
qnnvcizdaiehr
iefyioeorauvi
quoeuroenraib
cuivoaisdfuae
efoiebnxmcsua
```
You may have noticed that in this forest, there is a diagonal line of `a` characters running through it from the top left corner to the bottom right corner. This is a "path" through the forest which will lead you somewhere if you follow it. Your task is to write a program which will find the singular path. I will now more specifically describe what connotates a "path" in this challenge.
A "path", in this challenge, is defined as a line similiar to one which might have been generated with a [Bresenham algorithm](http://en.wikipedia.org/wiki/Bresenham's_line_algorithm), but with the added requirements that:
* The line must be a minimum 6 characters long
* Each collinear (completely adjacent) group of characters in the line *must be the same length*.
* It will begin at one edge of the forest and end at the opposite edge (see [my comment here](https://codegolf.stackexchange.com/questions/36404/the-forest-path#comment81469_36404) for elaboration)
To explain the second requirement more clearly, consider the following line:
```
aaa
aaa
aaa
aaa
aaa
```
This line is composed of collinear "segments" of characters, each of which are exactly three characters long. It qualifies as a path. Now consider this line:
```
a
aa
a
aa
a
aa
```
This line is composed of collinear "segments" that are not all exactly the same length of characters (some of them are 1 character long and some of them are 2). Thus, this one does not qualify as a path.
Your program, given a map of the forest, identify the characters used in the path. Input is to whatever is convienient (e.g. command line argument, STDIN, `prompt()`, etc.). It cannot be pre initialised into a variable. The first part of the input is a single integer `n` representing the size of the forest (the forest is always a square). After that is a space and then the entire forest as a single string. For instance, the example forest would be presented, as an input, like this:
```
13 anehcienwlndmbaneiryeivownbnabncmxlriruanhahirrnraucriwuafuvocvncriwnbaueibnxzhyirorairenerruwiiwuauawoeqnnvcizdaiehriefyioeorauviquoeuroenraibcuivoaisdfuaeefoiebnxmcsua
```
The output for this would be:
```
a
```
because the path is formed using the letter `a`. There will only be one path in the forest. This is code golf, so the lowest number of characters wins. If you have questions, ask in the comments.
[Answer]
# Lua - ~~506~~ 380 - bytes
I felt kinda bad that you hadn't received any submission for your well thought out challenge, so I threw this together. It was quit fun inferring what the minimum distinguishable properties the path must have from the information you gave. I hope I got it right... AND correctly implemented it.
```
a=io.read"*l"n=a:match("%d+")+0 m=a:match"[a-z]+"o=""for i=1,n do for k=1,n^2,n do o=o..m:sub(i+k-1,i+k-1)end end q={m,o}for g=1,n^2 do for u=1,2 do l=q[u]:sub(g,g)for r=1,n do i=1 t=0 e=0 while i do s,e=q[u]:find(l:rep(r),e+1)if s then x=s-(e-s)-i-1 print(s,i,r,n,r)if x==n or x==n-2 or t==0 then t=t+1 i=s end else i=nil end end if t*r==n then print(l)os.exit()end end end end
```
It can be tested with:
```
lua divisorPath.lua "input"
```
~~If a wild challenger appears, I'll look to golf my code for what it's worth.~~
**Update**: golfed in honour of those who will rise above us. While I was at it I had to fix my code to recognized path going from right to left. Oops.
[Answer]
## APL (Dyalog 14) (70)
```
⎕ML←3⋄Z/⍨1=≢¨Z←∪¨(↓⍉F),(↓F),{(⍳≢⍵)⌷¨↓⍵}¨(⊂F),⊂⌽F←⊃{⍵⍴⍨2/⍎⍺}/I⊂⍨' '≠I←⍞
```
Explanation:
* `⎕ML←3`: set `ML` to `3`, meaning `⊂` has its APL2 meaning.
* `I←⍞`: read a line from the keyboard and store it in `I`
* `I⊂⍨' '≠I`: split `I` on the spaces
* `{`...`}/`: apply this function to the two resulting strings:
+ `2/⍎⍺`: evaluate the left argument and replicate it twice, giving the matrix size
+ `⍵⍴⍨`: format the right argument using that size
* `F←⊃`: unbox it and store it in `F`.
* `{(⍳≢⍵)⌷¨↓⍵}¨(⊂F),⊂⌽F`: get the diagonals: from each row in both `F` and `⌽F` (vertically mirrored `F`), get the value at column X, where X is its row number
* `(↓⍉F),(↓F),`: get the rows and columns of `F`
* `Z←∪¨`: find the unique values on each row, column and diagonal and store them in `Z`.
Since the 'forest' is rectangular, if there is a valid path it means one of these will consist of only one character, which is the path character, so:
* `Z/⍨1=≢¨Z`: take those subarrays from `Z` that have only one element.
This will display the characters for all valid paths, but since there should be only one that doesn't matter.
[Answer]
# MATLAB - 270 characters
The following defines a function `x` that accepts a forest string as an argument and returns the character representing the valid "path" through the forest subject to the given rules.
```
function F=x(s),A=sscanf(s,'%d%s');n=A(1);A=reshape(A(2:end),n,n);for c=A(:)',B=A==c;for i=1:n,if~mod(n,i),C=[kron(eye(i),ones(n/i,1)),zeros(n,n-i)];for j=0:n-i,f=@(B)sum(sum(B&circshift(C,[0,j]))==n;D=fliplr(B);if f(B)|f(B')|f(D)|f(D'),F=char(c);end;end;end;end;end;end
```
The non-minified version is
```
function F = x(s)
A = sscanf( s, '%d %s' );
n = A(1);
A = reshape( A(2:end), n,n );
for c = A(:)'
B = A==c;
for i = 1:n
if ~mod( n, i )
C = [kron( eye(i), ones( n/i,1 ) ), zeros( n,n-i )];
for j = 0:n-i
f = @(B) sum(sum( B & circshift( C, [0 j] ))) == n;
D = fliplr(B);
if f(B) | f(B') | f(D) | f(D')
F = char(c);
end
end
end
end
end
end
```
The basic premise is to construct a boolean mask for every possible valid path and return any character whose index function in the matrix covers any mask. To accomplish this, only vertical or top-to-bottom backslash-shaped masks are created, but the forest matrix is compared in all four orientiations: identity, flipped, rotated 90°, flipped rotated 90°.
The function runs for any `n`. An example of it being invoked on the commandline is
```
x('13 anehcienwlndmbaneiryeivownbnabncmxlriruanhahirrnraucriwuafuvocvncriwnbaueibnxzhyirorairenerruwiiwuauawoeqnnvcizdaiehriefyioeorauviquoeuroenraibcuivoaisdfuaeefoiebnxmcsua')
ans =
a
```
[Answer]
## Python - ~~384~~ ~~325~~ 275
This Algorithm basically checks the first and last row of the matrix for matching characters and then calculates the length of each line segment
```
012345
------
aaVaaa|0
aaVaaa|1
aaaVaa|2
aaaVaa|3
aaaaVa|4
aaaaVa|5
```
In the Example above:
The V in the first row is at index 2, the V in the last row at index 4.
So the length of each line segment would be n / (4-2)+1 = 2 with n=6.
It then checks if the line is valid.
In order to find a path from left to right, it swaps rows with columns and does the same thing again.
**Edit:** Can't quite get to 270 (Damn you Python and your damn indentation!!)
```
n,m=raw_input().split()
n,r=int(n),range
t=r(n)
a=[m[i:i+n]for i in r(0,n*n,n)]
for v in a,["".join([a[i][j]for i in t])for j in t]:
for i in t:
for j in t:
p=1-2*(j-i<0);d,c=p*(j-i)+1,v[0][i]
if 6<=sum([v[z][i+(z/(n/d))*p*(n%d==0)]==c for z in t])==n:print c;exit()
```
] |
[Question]
[
Your mission is to write a program that accepts a date in the formats `2014-02-27` (calendar date) and `2014-W09-4` (week date) from standard input and outputs the date in the format it wasn't entered in (to standard output with a trailing newline). The dates must conform to the standard ISO 8601, i.e. with weeks that starts on Mondays and where the first week in a (week) year is the one that contains the first Thursday in the calendar year. You are not allowed to use any libraries, built-in functions or operators that relates to the handling of dates and time.
For example:
```
>./aprogramnamethatmostprobablyrelatestobutterfliesandbiscuits
2014-02-27
2014-W09-4
>./aprogramnamethatmostprobablyrelatestobutterfliesandbiscuits
2014-W09-4
2014-02-27
>./aprogramnamethatmostprobablyrelatestobutterfliesandbiscuits
2008-12-30
2009-W01-2
>./aprogramnamethatmostprobablyrelatestobutterfliesandbiscuits
2009-W53-7
2010-01-03
>
```
Years prior to 1583 and after 9999 need not yield the correct answer.
The shortest answer (in characters, not bytes) will be declared the winner and therefore accepted in 19½ days.
A nice resource: [ISO week date](http://en.wikipedia.org/wiki/ISO_week_date)
[Answer]
# Javascript: 422 characters
Originally this had 825 characters, and was still a bit comprehensible and legible, beside the fact of being golfed. I was sure that it could be reduced in something between 10% to 20%. This answer passed by tons of edits from me and got suggestions from @Ismael Miguel and specially from @DocMax resulting in an extremely-golf-crushed source down to 422 characters, with the side-effect of making it heavily obfuscated, a reduction of almost 49%. Really thanks for both, I wish that you two could get a badge for this. I did not thought that it could be reduced by so much.
Here is the code, 422 characters:
```
x=prompt(E=eval);W=x[f=5]=='W';A=x.match(/\d+/g);y=+A[a=0];for(t="'012011223445569'[z]-30+30*z";q=a%4<1&(a%100>0|a%400<1),a++<y;f=(f+1+q)%7)v=f;z=w=+A[1]-W;r=+A[2];if(W){w+=f>3;h=7*w+r-f;for(z=1;h-q*(z>2)>=E(t);++z);w=1+(10+z--)%12;d=h-q*(z<3)-E(t);y+=z?z>12:-1}else{g=r+E(t)-(w>1&&!q+w-2?2-q:2);d=(f+g)%7;w=0|g/7+(f<4);w=w>11&r-d>26?(++y,1):w<1?(--y,53^v>3):w}alert(y+(W?'-':'-W')+(w>9?'':0)+w+'-'+(!W|++d>9?'':0)+d+'\n')
```
Pretty complex. Here a (somewhat long) partially-ungolfed (but still badly obfuscated) and commented version:
```
x = prompt(E = eval); // Receives input, but has a side-effect of having a strange message in the prompt box.
// Year 0 of the Gregorian calendar (if such thing existed) would start on a 5=Friday. (0=Monday, 6=Sunday)
W = x[f = 5] == 'W'; // Checks if there is a W in the sixth char.
A = x.match(/\d+/g); // Divide the input in 3 numbers.
y = +A[a = 0]; // Parse the year.
// The t variable is used to create a table with cumulative months length starting from December of the previous year, this table is acessed by using the eval() function.
// Calculate the weekday of 01/01 of the year in the f variable. Do that by counting Gregorian calendar years from 0 until now.
// Count 2 weekdays for leap years and 1 for non-leap years.
// The variable q defines if the year is a leap year.
// The v variable stores the weekday of 01/01 of the prevoius year.
// The % 7 ensures that the weekday are kept in the interval 0-6, where 0 is Monday and 6 is Sunday.
for (t = "'012011223445569'[z] - 30 + 30 * z"; q = a % 4 < 1 & (a % 100 > 0 | a % 400 < 1), a++ < y; f = (f + 1 + q) % 7)
v = f;
z = w = +A[1] - W; // Parse the second number, might be the week number or the month, accordingly to the W.
r = +A[2]; // Parse the third number, might be the week day or the day in the month, accordingly to the W.
// Converts week date to calendar date.
if (W) {
// The expression "7 * (f > 3) - f" maps the offset between the calendar date and the week date in the following manner:
// {0Mon:1, 1Tue:0, 2Wed:-1, 3Thu:-2, 4Fri:4, 5Sat:3, 6Sun:2}
// Obtain the day within the year and store it in h.
w += f > 3;
h = 7 * w + r - f;
// Finds the day offset in the table to the corresponding month.
for (z = 1; h - q * (z > 2) >= E(t); ++z);
// This calculates the day in the month and the month.
w = 1 + (10 + z--) % 12;
d = h - q * (z < 3) - E(t);
// Fix-up the year, if needed.
y += z ? z > 12 : -1
// Converts calendar date to week date.
} else {
// Calculate how many days passed since 01/01
g = r + E(t) - (w > 1 && !q + w - 2 ? 2 - q : 2);
// Knowing the week day in which the year started and how many days passed since 01/01, calculate the week day of the given date.
d = (f + g) % 7;
// Calculates how many weeks passed since 01/01 and add one week if the year started on Monday, Tuesday, Wednesday or Thursday.
w = 0 | g / 7 + (f < 4);
// If we are in the last 3 days of the year, and 01/01 will fall on Monday, Tuesday, Wednesday or Thursday,
// then we advance to the first week of the next year.
// Do this by checking r + 3 - (d - 2) > 31, where:
// r is the date;
// (d - 2) is the weekday (d=1 for monday, 7 for sunday);
// (3 - (d - 2)) is the number of days until the week's Thursday and;
// > 31 means January of the next year.
// r + 3 - (d - 2) > 31 is simplified to r - d > 26.
w = w > 11 & r - d > 26 ? (++y, 1)
// If we are at the 0th week of the year, go back to the last week of the previous year.
// If the last year started on Friday, Saturday or Sunday this would be the 52nd week. It is the 53rd otherwise.
: w < 1 ? (--y, 53 ^ v > 3)
// Neither of the previous two cases.
: w
}
// Output it.
alert(y + (W ? '-' : '-W') + (w > 9 ? '' : 0) + w + '-' + (!W | ++d > 9 ? '' : 0) + d + '\n')
```
The prompt box comes with the message with the serialization of the `eval` function. Ignore this message, it is just a side-effect of golfing some chars.
It passes for all provided test cases. If given invalid input, the behaviour is undefined.
Here are the test cases, had some bugs in previous versions (specially with the last two lines):
```
2014-02-27 <--> 2014-W09-4
2008-12-30 <--> 2009-W01-2
2010-01-03 <--> 2009-W53-7
2011-04-23 <--> 2011-W16-6
2012-01-01 <--> 2011-W52-7
```
In case you are curious, here it is the original, 825 characters code:
```
p=parseInt;x=prompt();y=p(x.substr(0,4));f=6;j="a%4<1&(a%100>0|a%400<1)";for(a=1583;a<y;a++)f+=eval(j)?2:1;f%=7;q=eval(j);if(x.contains('W')){w=p(x.substr(6,2))-1;r=p(x.substr(9))-1;u=f<1?3:f<5?1-f:f-4;h=w*7+r+u+1;e=q?1:0;d=h<1?(m=12,y--,h+31):h<32?(m=1,h):h<60+e?(m=2,h-31):h<91+e?(m=3,h-59-e):h<121+e?(m=4,h-90-e):h<152+e?(m=5,h-120-e):h<182+e?(m=6,h-151-e):h<213+e?(m=7,h-181-e):h<244+e?(m=8,h-212-e):h<274+e?(m=9,h-243-e):h<305+e?(m=10,h-273-e):h<335+e?(m=11,h-304-e):h<366+e?(m=12,h-334-e):(m=1,y++,h-365-e);alert(y+'-'+(m<10?'0':'')+m+'-'+(d<10?'0':'')+d+'\n')}else{m=p(x.substr(5,2));d=p(x.substr(8));g=d-1;for(b=1;b<m;b++)g+=[31,q?29:28,31,30,31,30,31,31,30,31,30,31][b-1];v=(f+g)%7;w=~~(g/7)+(f>0&f<5?1:0);if(v<1)w--,v=7;if(m>11&d>28&32-d+f>3)w=1,y++;if(w<1)w=53,y--;alert(y+'-W'+(w<10?'0':'')+w+'-'+(v<1?7:v)+'\n')}
```
[Answer]
# C: 286 characters
In a quite unorthodox fashion I will give an entry to my own challenge (but I will not accept this answer even if it is the shortest when the time comes), just to show another (much less elegant than the JS-solution) way to attack the problem.
```
I[9],C[9],W[9],Y,M=5,D,y,w,d;main(){for(gets(I);sprintf(C,"%d-%02d-%02d",Y,M,D),sprintf(W,"%d-W%02d-%d",y,w,d),(strcmp(I,C)||puts(W)<0)&&(strcmp(I,W)||puts(C)<0);++D>28+(M^2?M+(M>7)&1^2:!(Y&3)&&(Y%25||!(Y&15)))&&(D=1,M=M%12+1)<2&&Y++,(d=d%7+1)<2&&(M>11&&D>28||M<2&&D<5?(w=1,y++):w++));}
```
I simply simulate the calendars day by day, increasing the month, week, year and week-year as needed. When either the week date or calendar date is equal to what was inputted I output the date in the format it wasn't inputted in (so if the input is invalid it will simply loop forever).
In a slightly more readable form:
```
I[9],C[9],W[9],Y,M=5,D,y,w,d;
main(){
for(
gets(I);
sprintf(C,"%d-%02d-%02d",Y,M,D),
sprintf(W,"%d-W%02d-%d",y,w,d),
(strcmp(I,C)||puts(W)<0)&&
(strcmp(I,W)||puts(C)<0);
++D>28+(M^2?M+(M>7)&1^2:!(Y&3)&&(Y%25||!(Y&15)))&&
(D=1,M=M%12+1)<2&&Y++,
(d=d%7+1)<2&&
(M>11&&D>28||M<2&&D<5?(w=1,y++):w++)
);
}
```
] |
[Question]
[
Assuming A=1, B=2... Z=26, and the value of a word is the sum of these letter values, it is possible to split some words into two pieces such that they have equal values.
For example, "wordsplit" can be broken into two pieces like so: ordsl wpit, because o+r+d+s+l = w+p+i+t.
This was a challenge given to us by my computing teacher - it is an old Lionhead Studios challenge, apparently. I have solved it in Python, and will post my answer shortly.
**Challenge:** The shortest program which can list **all** the possible splits which have equal scores. Note that it only has to list one for each group of letters - ordsl wpit is the same as rdosl wtip, for example. It is easier to list them in the order they come in the word.
**Bonus:**
* If you highlight pairs where both words are valid English words (or some permutation of the letters is), using a word list of some kind. (This could be done by placing an asterisk next to each or some other method, but make it clear.)
* Adding the option for removing duplicates (this should not be the default.)
* Supporting more than two splits, for example, three, four or even n-way splits.
[Answer]
# Perl, 115 ~~118~~ ~~123~~
```
@_=~/./g;for$i(1..1<<@_){$l=$
r;$i&1<<$_?$l:$r+=64-ord$_[$_
]for 0..$#_;$l-$r||$i&1<<$_&&
print$_[$_]for 0..$#_;say""}
```
Run with `perl -nE '<code goes here>'`. That 'n' is counted in the code size.
## Respaced:
```
@_ = /./g;
for $i (1 .. 1<<@_) {
$l = $r;
$i & 1<<$_ ? $l : $r -= 64 - ord $_[$_] for 0 .. $#_;
$l - $r ||
$i & 1<<$_ &&
print $_[$_]
for 0 .. $#_;
say ""
}
```
## With comments and variable names:
```
# split a line of input by character
@chars = /./g;
# generate all binary masks of same length
for $mask (1 .. 1<<@_) {
# start at "zero"
$left_sum = $right_sum;
# depending on mask, choose left or right count
# 1 -> char goes left; 0 -> char goes right
$mask & 1<<$_ ? $left_sum : $right_sum
-= 64 - ord $chars[$_] # add letter value
for 0 .. $#chars; # for all bits in mask
# if left = right
$left_sum - $right_sum ||
# if character was counted left (mask[i] = 1)
$mask & 1<<$_ &&
# print it
print $chars[$_]
# ...iterating on all bits in mask
for 0 .. $#chars;
# newline
say ""
}
```
## Some of the tricks used:
* `1..1<<@_` covers the same bit range as `0..(1<<@_)-1` , but is shorter. (note that considering the problem from further away, including the range boundaries multiple times wouldn't result in a wrong output anyway)
* $left\_range and $right\_range aren't reset to actual "0" numeric zero: since we just accumulate and compare them in the end, all we need is them to start at the same value.
* subtracting `64-ord$_[$_]` instead of adding `ord$_[$_]-64` wins an invisible character: since it ends with a delimiter, it makes the space before `for` unnecessary.
* Perl lets you assign to a variable determined by the ternary conditional operator: `cond ? var1 : var2 = new_value`.
* boolean expressions chained with `&&` and `||` are used instead of proper conditionals.
* `$l-$r` is shorter than `$l!=$r`
* will output a newline even on splits that don't balance. Empty lines are ok by the rules! I asked!
[Answer]
## J (109)
```
~.(/:{[)@:{&a.@(96&+)&.>>(>@(=/@:(+/"1&>)&.>)#[),}.@(split~&.>i.@#@>)@<@(96-~a.&i.)"1([{~(i.@!A.i.)@#)1!:1[1
```
Output for `wordsplit`:
```
┌─────┬─────┐
│lorw │dipst│
├─────┼─────┤
│diltw│oprs │
├─────┼─────┤
│iptw │dlors│
├─────┼─────┤
│dlors│iptw │
├─────┼─────┤
│oprs │diltw│
├─────┼─────┤
│dipst│lorw │
└─────┴─────┘
```
Explanation:
* `1!:1[1`: read a line from stdin
* `([{~(i.@!A.i.)@#)`: get all permutations
* `"1`: for each permutation:
* `(96-~a.&i.)`: get letter scores
* `}.@(split~&.>i.@#@>)@<`: split each permutation of the scores at each possible space, except before the first and after the last number
* `>(>@(=/@:(+/"1&>)&.>)#[)`: see which permutations have matching halves and select these
* `{&a.@(96&+)&.>`: turn the scores back into letters
* `~.(/:{[)`: remove trivial variations (e.g. `ordsl wpit` and `ordsl wpti`)
[Answer]
## c99 -- 379 necessary characters
```
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int s(char*w,int l,int m){int b,t=0;for(b=0;b<l;++b){t+=(m&1<<b)?toupper(w[b])-64:0;}return t;}
void p(char*w,int l,int m){for(int b=0;b<l;++b){putchar((m&1<<b)?w[b]:32);}}
int main(){char w[99];gets(w);int i,l=strlen(w),m=(1<<l),t=s(w,l,m-1);
for(i=0;i<m;i++){if(s(w,l,i)==t/2){p(w,l,i);putchar(9);p(w,l,~i);putchar(10);}}}
```
The approach is pretty obvious. There is a function which sums a words according to a mask and one that prints it also according to a mask. Input from the standard input. One oddity is that the printing routine inserts spaces for letter not in the mask. A tab is used to separate the groups.
I do none of the bonus items, nor is it easily converted to support them.
**Readable and commented:**
```
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int s(char *w, int l, int m){ /* word, length, mask */
int b,t=0; /* bit and total */
for (b=0; b<l; ++b){
/* printf("Summing %d %d %c %d\n",b,m&(1<<b),w[b],toupper(w[b])-'A'-1); */
t+=(m&1<<b)?toupper(w[b])-64:0; /* Add to toal if masked (A-1 = @ = 64) */
}
return t;
}
void p(char *w, int l, int m){
for (int b=0; b<l; ++b){
putchar((m&1<<b)?w[b]:32); /* print if masked (space = 32) */
}
}
int main(){
char w[99];
gets(w);
int i,l=strlen(w),m=(1<<l),t=s(w,l,m-1);
/* printf("Word is '%s'\n",w); */
/* printf("...length %d\n",l); */
/* printf("...mask 0x%x\n",m-1); */
/* printf("...total %d\n",t); */
for (i=0; i<m; i++){
/* printf("testing with mask 0x%x...\n",i); */
if (s(w,l,i)==t/2) {p(w,l,i); putchar(9); p(w,l,~i); putchar(10);}
/* (tab = 9; newline = 10) */
}
}
```
**Validation**
```
$ wc wordsplit_golf.c
7 24 385 wordsplit_golf.c
$ gcc -std=c99 wordsplit_golf.c
$ echo wordsplit | ./a.out
warning: this program uses gets(), which is unsafe.
or sp w d lit
wor l dsp it
ords l w p it
w p it ords l
dsp it wor l
w d lit or sp
```
[Answer]
# Ruby: 125 characters
```
r=->a{a.reduce(0){|t,c|t+=c.ord-96}}
f=r[w=gets.chomp.chars]
w.size.times{|n|w.combination(n).map{|s|p([s,w-s])if r[s]*2==f}}
```
Sample run:
```
bash-4.2$ ruby -e 'r=->a{a.reduce(0){|t,c|t+=c.ord-96}};f=r[w=gets.chomp.chars.to_a];w.size.times{|p|w.combination(p).map{|q|p([q,w-q])if r[q]*2==f}}' <<< 'wordsplit'
[["w", "o", "r", "l"], ["d", "s", "p", "i", "t"]]
[["w", "p", "i", "t"], ["o", "r", "d", "s", "l"]]
[["o", "r", "s", "p"], ["w", "d", "l", "i", "t"]]
[["w", "d", "l", "i", "t"], ["o", "r", "s", "p"]]
[["o", "r", "d", "s", "l"], ["w", "p", "i", "t"]]
[["d", "s", "p", "i", "t"], ["w", "o", "r", "l"]]
```
[Answer]
# Mathematica 123 111
Finds all subsets of word that have 1/2 the "ascii total" of the word, `d`. Then finds the complements of those subsets.
d = "WORDSPLIT"
```
{#, Complement[w, #]}&/@Cases[Subsets@#,x_/;Tr@x==Tr@#/2]&[Sort[ToCharacterCode@d - 64]];
FromCharacterCode[# + 64] & /@ %
```
>
> {{"IPTW", "DLORS"}, {"LORW", "DIPST"}, {"OPRS", "DILTW"}, {"DILTW",
> "OPRS"}, {"DIPST", "LORW"}, {"DLORS", "IPTW"}}
>
>
>
[Answer]
# J, 66 chars
Using digits of base2 numbers to select every possible subset.
```
f=.3 :'(;~y&-.)"{y#~a#~(=|.)+/"1((+32*0&>)96-~a.i.y)#~a=.#:i.2^#y'
f 'WordSplit'
┌─────┬─────┐
│Worl │dSpit│
├─────┼─────┤
│Wdlit│orSp │
├─────┼─────┤
│Wpit │ordSl│
├─────┼─────┤
│ordSl│Wpit │
├─────┼─────┤
│orSp │Wdlit│
├─────┼─────┤
│dSpit│Worl │
└─────┴─────┘
```
[Answer]
My solution is below. It is an almost anti-golf in its size, but it works very well. It supports n-way splits (although computational time becomes very long for any more than about 3 splits) and it supports removing duplicates.
```
class WordSplitChecker(object):
def __init__(self, word, splits=2):
if len(word) == 0:
raise ValueError, "word too short!"
if splits == 0:
raise ValueError, "splits must be > 1; it is impossible to split a word into zero groups"
self.word = word
self.splits = splits
def solve(self, uniq_solutions=False, progress_notifier=True):
"""To solve this problem, we first need to consider all the possible
rearrangements of a string into two (or more) groups.
It turns out that this reduces simply to a base-N counting algorithm,
each digit coding for which group the letter goes into. Obviously
the longer the word the more digits needed to count up to, so
computation time is very long for larger bases and longer words. It
could be sped up by using a precalculated array of numbers in the
required base, but this requires more memory. (Space-time tradeoff.)
A progress notifier may be set. If True, the default notifier is used,
if None, no notifier is used, and if it points to another callable,
that is used. The callable must take the arguments as (n, count,
solutions) where n is the number of iterations, count is the total
iteration count and solutions is the length of the solutions list. The
progress notifier is called at the beginning, on every 1000th iteration,
and at the end.
Returns a list of possible splits. If there are no solutions, returns
an empty list. Duplicate solutions are removed if the uniq_solutions
parameter is True."""
if progress_notifier == True:
progress_notifier = self.progress
solutions = []
bucket = [0] * len(self.word)
base_tuple = (self.splits,) * len(self.word)
# The number of counts we need to do is given by: S^N,
# where S = number of splits,
# N = length of word.
counts = pow(self.splits, len(self.word))
# xrange does not create a list in memory, so this will work with very
# little additional memory.
for i in xrange(counts):
groups = self.split_word(self.word, self.splits, bucket)
group_sums = map(self.score_string, groups)
if len(set(group_sums)) == 1:
solutions.append(tuple(groups))
if callable(progress_notifier) and i % 1000 == 0:
progress_notifier(i, counts, len(solutions))
# Increment bucket after doing each group; we want to include the
# null set (all zeroes.)
bucket = self.bucket_counter(bucket, base_tuple)
progress_notifier(i, counts, len(solutions))
# Now we have computed our results we need to remove the results that
# are symmetrical if uniq_solutions is True.
if uniq_solutions:
uniques = []
# Sort each of the solutions and turn them into tuples. Then we can
# remove duplicates because they will all be in the same order.
for sol in solutions:
uniques.append(tuple(sorted(sol)))
# Use sets to unique the solutions quickly instead of using our
# own algorithm.
uniques = list(set(uniques))
return sorted(uniques)
return sorted(solutions)
def split_word(self, word, splits, bucket):
"""Split the word into groups. The digits in the bucket code for the
groups in which each character goes in to. For example,
LIONHEAD with a base of 2 and bucket of 00110100 gives two groups,
"LIHAD" and "ONE"."""
groups = [""] * splits
for n in range(len(word)):
groups[bucket[n]] += word[n]
return groups
def score_string(self, st):
"""Score and sum the letters in the string, A = 1, B = 2, ... Z = 26."""
return sum(map(lambda x: ord(x) - 64, st.upper()))
def bucket_counter(self, bucket, carry):
"""Simple bucket counting. Ex.: When passed a tuple (512, 512, 512)
and a list [0, 0, 0] it increments each column in the list until
it overflows, carrying the result over to the next column. This could
be done with fancy bit shifting, but that wouldn't work with very
large numbers. This should be fine up to huge numbers. Returns a new
bucket and assigns the result to the passed list. Similar to most
counting systems the MSB is on the right, however this is an
implementation detail and may change in the future.
Effectively, for a carry tuple of identical values, this implements a
base-N numeral system, where N+1 is the value in the tuple."""
if len(bucket) != len(carry):
raise ValueError("bucket and carry lists must be the same size")
# Increase the last column.
bucket[-1] += 1
# Carry numbers. Carry must be propagated by at least the size of the
# carry list.
for i in range(len(carry)):
for coln, col in enumerate(bucket[:]):
if col >= carry[coln]:
# Reset this column, carry the result over to the next.
bucket[coln] = 0
bucket[coln - 1] += 1
return bucket
def progress(self, n, counts, solutions):
"""Display the progress of the solve operation."""
print "%d / %d (%.2f%%): %d solutions (non-unique)" % (n + 1, counts, (float(n + 1) / counts) * 100, solutions)
if __name__ == '__main__':
word = raw_input('Enter word: ')
groups = int(raw_input('Enter number of required groups: '))
unique = raw_input('Unique results only? (enter Y or N): ').upper()
if unique == 'Y':
unique = True
else:
unique = False
# Start solving.
print "Start solving"
ws = WordSplitChecker(word, groups)
solutions = ws.solve(unique)
if len(solutions) == 0:
print "No solutions could be found."
for solution in solutions:
for group in solution:
print group,
print
```
Sample output:
```
Enter word: wordsplit
Enter number of required groups: 2
Unique results only? (enter Y or N): y
Start solving
1 / 512 (0.20%): 0 solutions (non-unique)
512 / 512 (100.00%): 6 solutions (non-unique)
dspit worl
ordsl wpit
orsp wdlit
```
[Answer]
# Lua - 195
```
a=io.read"*l"for i=0,2^#a/2-1 do z,l=0,""r=l for j=1,#a do b=math.floor(i/2^j*2)%2 z=(b*2-1)*(a:byte(j)-64)+z if b>0 then r=r..a:sub(j,j)else l=l..a:sub(j,j)end end if z==0 then print(l,r)end end
```
input must be in caps:
```
~$ lua wordsplit.lua
>WORDSPLIT
WDLIT ORSP
DSPIT WORL
WPIT ORDSL
```
[Answer]
Python - 127
```
w=rawinput()
for q in range(2**len(w)/2):
a=[0]*2;b=['']*2
for c in w:a[q%2]+=ord(c)-96;b[q%2]+=c;q/=2
if a[0]==a[1]:print b
```
and here a n-split Version with 182 bytes without duplicates:
```
n,w=input()
def b(q):
a=[0]*n;b=['']*n
for c in w:a[q%n]+=ord(c)-96;b[q%n]+=c;q/=n
return a[0]==a[1] and all(b) and frozenset(b)
print set(filter(None,map(b,range(n**len(w)/n))))
```
Input is e.g.:
```
3, 'wordsplit'
```
] |
[Question]
[
[The Universal Crossword](https://www.puzzlesociety.com/crosswords) has a set of [guidelines](https://docs.google.com/document/d/1ORNpKwGG7RedypfnYwgOfkTUc0jNZ7FKRRTVWDmTfl8/edit) for crossword puzzle submissions.
In this challenge we are going to be concerned with their rules for hidden word themes. A hidden word clue consists of a clue and a word. It can either be a
"word break" or a "bookend".
For a word break the word must not appear as a contiguous substring of the clue, but if all the spaces are removed from the clue, then it is a contiguous substring with a non-empty prefix and suffix. Some examples:
* `POOR HOUSE`, `RHO`: is valid. Solution: `POO***R HO***USE`
* `IMPROPER USE`, `PERUSE`: is not valid. It appears separated by a space: `IMPRO***PER USE***`, but the suffix is empty.
* `SINGLE TRACK`, `SINGLET`: is not valid. It appears separated by a space: `***SINGLE T***RACK`, but the prefix is empty.
* `PLANE TICKET`, `ET`: is not valid. The word appears separated by a space: `PLAN***E T***ICKET`, but it also appears contiguously: `PLANE TICK***ET***`.
For a bookend the word must appear as a combination of a non-empty prefix and a non-empty suffix of the clue, but is not a contiguous substring. Bookends may span word breaks, but are not required to. The clue must not appear as a contiguous substring to be a valid bookend.
* `SINGLE TRACK`, `SICK`: is valid. Solution: `***SI***NGLE TRA***CK***`
* `YOU MUST DOT YOUR IS AND CROSS YOUR TS`, `YURTS`: is valid. Solution: `***Y***OU MUST DOT YOUR IS AND CROSS YO***UR TS***`
* `STAND CLEAR`, `STAR`: is valid, even though there are two solutions: `***STA***ND CLEA***R***` and `***ST***AND CLE***AR***`
* `START A WAR`, `STAR`: is not valid since the word is a prefix of the clue.
* `TO ME`, `TOME`: is valid. It can be split multiple ways including ways with empty prefixes and suffixes.
* `TWO BIRDS WITH TWO STONE`, `TONE`: is not valid since the word is a suffix of the clue
* `IMPROPER USE`, `PERUSE`: is not valid. It appears as a suffix and is not a contiguous substring: `IMPRO***PER USE***`, but the prefix needs to be non empty for a bookend.
You will take as input a word (consisting of letters `A`-`Z`) and a clue (consisting of letters `A`-`Z` and spaces) and you must determine if the word is a valid solution to the clue by the above rules.
If the input is a valid pair you must output one consistent value, if it is not you must output a distinct consistent value.
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") so the goal is to minimize the size of your source code as measured in bytes.
## Test cases
Valid:
```
POOR HOUSE, RHO
SINGLE TRACK, SICK
YOU MUST DOT YOUR IS AND CROSS YOUR TS, YURTS
STAND CLEAR, STAR
TO ME, TOME
IN A PICKLE, NAP
```
Invalid:
```
IMPROPER USE, PERUSE
SINGLE TRACK, SINGLET
PLANE TICKET, ET
START A WAR, STAR
TWO BIRDS WITH ONE STONE, TONE
```
[Answer]
# [Retina 0.8.2](https://github.com/m-ender/retina/wiki/The-Language/a950ad7d925ec9316e3e2fb2cf5d49fd15d23e3d), 41 bytes
```
|^(.+)¶.*\1
^(.+)(.+)¶(\1.*\2$|.+\1\2.)
```
[Try it online!](https://tio.run/##ZY09asNAEIX7PcUrFJDjRSDdYCMt1mJZI2ZGCIMwSeEiTYqQ0ufyAXwxZSRDmjRv5n3z876vP59fH8tL/p4X@53Hqi6rHvesXHC7rPZxL17n0rnNPEE@l8aq7Fbs53Kuit2yDESMlkaJHtySk9QfugjlUB89JNVHd6YRp1EUDSnMMJIg9A1qJpEnUfE4j6ziRLdRFwPbvQZ26TQwDZGxhVhj9V/O6tQNXegNWmpUDwPrA0XA9PdNJ8Jb4kYwJW1Bti9q6rHqLw "Retina 0.8.2 – Try It Online") Takes input as the word and clue on separate lines but link is to test suite that splits on comma and exchanges the word and clue. Explanation:
```
|^(.+)¶.*\1
```
Delete spaces in the clue, but delete the word if is is a contiguous substring of the clue, which prevents the following match from succeeding.
```
^(.+)(.+)¶(\1.*\2$|.+\1\2.)
```
Check that the word either bookends or is now contained in the clue.
[Answer]
# JavaScript (ES6), 74 bytes
*A significantly shorter version suggested by [Nick Kennedy](https://codegolf.stackexchange.com/users/42248/nick-kennedy) and using [Neil's regular expression](https://codegolf.stackexchange.com/a/266140/58563).*
Expects `(clue)(word)`. Returns a Boolean value.
```
c=>w=>c.match(w)</^(.+)(.+),(\1.*\2$|.+\1\2.)/.test([w,c.split` `.join``])
```
[Try it online!](https://tio.run/##jZBRT8IwEMff@RSXxodWsASehaTAIo2wLm0nEIbZMkBH5kbcAi9@99kOHzRD40P7v7v@cnf/HqJTVMTvybG8y/LtrtoPqngwPA@GMX2LyvgVn8l99xnTNrGng4MevQ36Nx@0HfSCPiVdWu6KEq/PnZgWxzQpQwjpIU@yMNyQKs6zIk93NM1fMFo/RWmy3SDS@l7eY@QJIWEqfOUggpGcCkQajOLuw8wBLdn40VKKW21gK@HD3FcaJkKDSSRwBcydwFgKpS4VrWyDlS9t0Byka3zmMFnP0VYblBYwr7fVwipp/QBQkK15dvrFLp97UniOhC/DJqyjf3i2ub5CejPmGtD8iX3G6CpkrWhgsPjb2ULAiMuJggXXUxCmr9Lmvph1r@3JliNYji3ARkZI9Qk "JavaScript (Node.js) – Try It Online")
---
# JavaScript (ES6), 86 bytes
Expects `(clue)(word)`. Returns a Boolean value.
The "bookend" test is based on the method used by Deadcode [in this answer](https://codegolf.stackexchange.com/a/197425/58563).
```
c=>w=>c.match(w)</^(.+)(.+),\1.*\2$/.test([w,s=c.split` `.join``])+!!s.match(`.${w}.`)
```
[Try it online!](https://tio.run/##jZBRT8IwEMff@RRnw0MrWKLPjmTAIo2wLm0nEMBsGaAjcyNuYQ/Gzz7bwYNmaHxo/3ftr3f37z48hnn0Hh@KmzTbbKudVUVWv7T6EX0Li@gVl@S@94xph5jVXd3S69Vdu0eLbV7gZdnNrYjmhyQuAgjoPovTIFiTztVVfn4e0PZH@UkDUkVZmmfJlibZC0bLpzCJN2tEWt@Pdxh5nAsYc186iGAkxhyRBiOZ@zBxQAl7@GgoyYw2sAX3YepLBSOuQCcCmATbHcFQcClPJ0qaAgtfmKDZSNX4xLFF3UcZbVCKw7SeVnGjpPUDQKt0ydLjL3bZ1BPccwScDeuwjv7h2eTqAulNbFeD@k/MNUYXIWNFgQ2zv53NOAyYGEmYMTUGrutKpfeTWffSnPZ8APOhAeyBFlJ9AQ "JavaScript (Node.js) – Try It Online")
### Commented
```
c => // outer function taking c = clue
w => // inner function taking w = hidden word
c.match(w) // look for w in c; the comparison will succeed
< // if this is null and the right side is > 0
/^(.+)(.+),\1.*\2$/ // regular expression for the "bookend" test
.test([ // applied to this array coerced to a string:
w, // the word, followed by a comma
s = c.split` ` // followed by s,
.join`` // which is c without spaces
]) + // end of test()
!!s.match(`.${w}.`) // for word breaks, we look for w in s with at
// least one char. before and one char. after
```
[Answer]
# [R](https://www.r-project.org), 77 bytes
```
\(x,y,`/`=grepl)"^((.+)(.+)) (\\2.*\\3$|.+\\1.)"/paste(y,gsub(" ","",x))&!y/x
```
[Attempt This Online!](https://ato.pxeger.com/run?1=ZVDBasJAEKXX_YrpUspuXSPaSy8WogYNJrthd4OIsWhLIoJYiREi9E96sYV-VPs1nRhoKT3szsybN28e8_qWn96z7sehyJp3n2HCSnEUi9aiu8rT3YbTB8acBq8eB5YkHecmSW6vXpxGkrQdTlu75b5I2VGs9odHRoEKSkXJ-fXlsVXWol8Xq7Ts7ot8v9usC_aT0EgpDSMVG0-AHilifDkMPLDa7Y8FGL8_JlMVQxgbCwNlAQsNvgFXDqCvlTE1Yo2AaaytIcaeW4Hnapy3riZWQYjqVoUe8SW4EKFqgIh0I9LTsVSgXQlDT9pgKkBhMURmGGkVeRrO1jDB-M9dVVkSBa5EEFU9KwCBaq3FRZNfDxMFPV8PDEx8OwKFfGPxr2xJDw-WbCmfzdrzuaACKCfZc85KWG8hLfnTsmBl3cTQqTjNeyqyvyCvRep7n051_AY)
A function taking two character arguments and returning a logical value. Inspired by [@Neil’s Retina answer](https://codegolf.stackexchange.com/a/266140/42248) so be sure to upvote that one too! The regular expression here is slightly different because of R’s requirement to escape backslashes.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 19 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
Uses some of [Unrelated String](https://codegolf.stackexchange.com/users/85334/unrelated-string)'s [answer to *Is it a circumfix?*](https://codegolf.stackexchange.com/a/194947/53748) saving bytes over using the "outfix quick", `ÐƤ`.
```
ḲFŒṖḢ;ṪƊ€;ṖḊẆƊƲḟẆ{i
```
A dyadic Link that accepts the clue on the left and the answer on the right and yields a positive integer (truthy) if valid or zero (falsey) otherwise.
**[Try it online!](https://tio.run/##ZY2xSsRAFEX7@YrbCgN@wKI4xtENm82ENy8s@QCLXfYHxGa1sEipYKUIWghitSgkChbK5j8mPzK@bGFjc9@9l8t5i9Pl8izG0KyPN9ehvQ3N4yi0L13dX76OtrkOH1dd3a1D8yDufB7D59v3@@YmtE/9xZfGz/OuPlj0qzvs7aNf3e9UMRbOEcau9FaDxk75ND/JLJhMMtHwaTJRlSsxLT3DQyyBvUZVEnvl2eRHSDJrSLZsSKXTglxhCVugGLn/mENiVWQml1I@WNaQYgAwDGZ/NJ45HMLJzLOoxqC/ "Jelly – Try It Online")** (Some tests have been shortened in the middle since the algorithm is inefficient.)
### How?
```
ḲFŒṖḢ;ṪƊ€;ṖḊẆƊƲḟẆ{i - Link: Clue, Answer
Ḳ - split {Clue} on space characters
F - flatten -> Squished
Ʋ - last four links as a monad - f(Squished):
ŒṖ - all partitions (no empty parts)
Ɗ€ - for each: last three links as a monad - f(Partition):
Ḣ - head (remove first part and yield it)
Ṫ - tail (remove last part of that and yield it ...
...or integer zero* if nothing left)
; - concatenate
-> Bookends (plus an invalid one with a trailing zero*)
Ɗ - last three links as a monad - f(Squished):
Ṗ - pop (remove the tail character)
Ḋ - dequeue (remove the head character)
Ẇ - all sublists
-> Hiddens
; - {Bookends} concatenate {Hiddens} -> Potential Answers
Ẇ{ - sublists of {Clue}
ḟ - {Potential Answers} filter discard {Clue sublists}
-> Valid Answers (plus an invalid bookend with a trailing zero*)
i - 1-indexed index of {Answer} in* {Valid Answers} ...
...or zero if not found
* Integer zero wont match a zero character
```
[Answer]
# [Ruby](https://www.ruby-lang.org/), 95 bytes
Bookends code is a slight tweak of my old answer to [Is it a circumfix?](https://codegolf.stackexchange.com/a/194939)
```
->s,w{t=s.tr' ','';(t=~/.#{w}./||(1...~-z=w.size).any?{w==t[0,_1]+t[_1-z..]}&&z<t.size)&&!s[w]}
```
[Attempt This Online!](https://ato.pxeger.com/run?1=ZU_bTsJAEH3frxijaQG3C7yZaDULNNJw2WZ3m4Y0TeOlCAkioUsayuVHfCFGP4r4M26p8cWXMzNn5syZef9crh7Xh4-x_bVSY-vqGFu3Kc42yk6JWppgYtO8rih7Xyfnm2xH6tttpUkI2Vu5nZF0midV8jBf320y21ZhA8fN6FKFcdPKCYl2hpHfqHLKMM7SMIt2vza1bDKdJfCSqBTBAsZh7SImT5O31wVJF7OpqpgYzGqEkvlzqTgcvz3GOHSZLxwMvMuQcIf3fQckp-0eBuG2e2jEfBj4QkKHSdAFB1cAHXagzZkQJSMFhpHPpUBCnlp9h3Ktl5QjSoHSFtZAkTvwOPMcDidDnej4z7OoJPL6dKhJfYEjMWiiWCaBQvC3WQYMWi7vCAhc2QWm54XUiKHA8scf)
[Answer]
# [J](https://www.jsoftware.com), 52 51 45 bytes
```
-.@rxin*[e.((]#~#@[>:#\@](-.|."{[),&#)-.&' ')
```
[Attempt This Online!](https://ato.pxeger.com/run?1=dZDRTsIwGIXj7Z7ihyZ0JbTKjZFGzQYMWBzr0nYhBHZhDASN0QQh0Si8iDd44UPh09huw8REL5rmP-f09GvfP-52-6xV4c3stMJbGDtxm4HrTmbM3TBvwz33mCNGPPecI7JF0zdWfUVTgjJCWQ0DJvUmXT7fPjhVhudwwQFDA06Am0UZdGTU-1yv5vRsTynzbLBuq90MbZE3ueRo6mUuZbZ1Qho1dGgtDn0d9Ykzu1k8AtbL9WrxgstJDgSGOeBECAkDkarg4Kiwc5VbKoz7UQBa-kYozXEqtcrdsUhhmCoNXaHBDBJCBX7cNcRCqUIx0UOp9mVRqvNMFJjZKc3e9f3TD1gSSAtjs-EwkcLM8IvOQul_AUsrifzYOOYpRviDQWrwYWQZys8RcXGnHgloh7KrYBTqARgZVG4W_7nbFfs3)
This approach allows us to avoid treating the two cases of bookends and word breaks as separate:
* `-.@rxin*` Not in the unaltered string
* `*` And...
* `-.&' '` Remove spaces from haystack
* `#\@]` Create the integers 1..n (where n is length of haystack)
* `,&#` Create the integers n and m, the lengths of needle and the haystack. I'll explain why below.
* `-.` Remove n and m from 1..n (again, why below). Call this our "rotation list".
* `|."{[` Do every rotation of 1..n in our rotation list. The rotations we are leaving out are precisely the ones where our haystack abuts the left or right side, which are the illegal ones. We now have a matrix, with each row representing a legal rotation.
* `#@[>:` In every row, change the numbers 1..m (where m is length of needle) to 1 and the rest to 0, so now we have a matrix of the legal rotations of, eg, `1 1 1 0 0 0 0 0` (if the needle had length 3).
* `]#~` Now use the rows of legal 0-1 masks to filter the no-spaces input. These represent all possible bookends and word breaks.
* `[e.` Is the needle in any of those?
# [J](https://www.jsoftware.com), 52 bytes
```
-.@rxin*[((rxin g)+.[e.-~&#(g=.}:@}.)@(]\.)])' '-.~]
```
[Attempt This Online!](https://ato.pxeger.com/run?1=dZHdTsIwHMXjLU9xkEg3YEUTY2QBsyFDFse6tF0IgV0Yw4fGaIKQ6AW8iDd44UPhtQ9i94FBgxdr-z_n319Pu7f3-_XmqJY3T6KzvFkjJHdIyRgNEwQVHMNUn0Fxyb32x2I-Ns43pwa1Zi93j6WBpsUzJnqZDkbUWBUL2qRBl6a1pLqlRUOqRzoBMegqSvd-HnzpOb9JEWFgqqE-RKVIL6pqQRN9H7puKXixUhha0S6-vovf3YwSBijTqqVBc-hEV9dQCMQMxBD8pSDSseWMbqdPIHK2mE9fSVbxDiMYgwSMcXRYKJytI9zL68QSrn_lOZDcVkJm9kMuReL2WYhuKCRaTEIVHK6A7bfUqzIhUkW1bqHS5ilUJj2eo-pcZrZvHp5_ggUOj8PEvW434EzV-JUuDiX_DZhZgWf7ylFXUcKeDFzCRi_OkD0O89MzZY-h6fKWQM-VHSgZIjHTn71ep_M3)
Another nice candidate for J's outfix adverb. Reading through other answers I was reminded that this approach is similar to my answer on [Is it a cirumfix](https://codegolf.stackexchange.com/a/194934/15469) as well.
* `-.@rxin` Does not appear in unaltered string
* `*` and...
* `(rxin g)` Does appear in the no-spaces `' '-.~]` string, after that string has its first and last elements removed `g=.}:@}.`
* `+.` or...
* `-~&#(g=.}:@}.)@(]\.)` Matches one of the outfixes (of appropriate length `-~&#`) after the set of all such outfixes has its first and last elements removed `}:@}.`.
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 123 bytes
```
x=>y=>(z=x.split` `.join``,g=i=>z[i]==y[i]?g(i+1):y[i]&&i*z.endsWith(y.slice(i))||eval(`/.${y}./`).test(z))(0)&&!x.match(y)
```
[Try it online!](https://tio.run/##ZVBRT8IwEH7vrzgTs7RSi75iipmwyAJS0hYXYowbY8ySuRG2EJj422eHxhdfvrv77r77LreJ9lEZ78y2us6LVdKseXPg/SPv45ofWLnNTBVCyDaFycOQptzwfv1iXjk/WrxPsenckl6bO465qlmSr8rAVO/4yMrMxAk2hJxOyT7KcNhll5/HL9YNCauSssI1IfiGOM7FgX1EVWw1pLmLi7wssoRlRYrD5ygzqx5CMyEkjMRceRTkSCDlTx8nHmjpDsYUlD8Yo4WYw9NcaRgKDbaQ4Ctwp0MYSKHUD6MVhcVcaoWUPrcmniutXrsSIT/f/7r5TzMpZp6Es59NbPxn2VYazSbu1JL2AE9TsES7S4MLwd9iHQh48OVQQeDrEQg7r7RFCi2ikO2SbRbZT3Ux6xAKLXZTit9oRJeE99c4InhJCEHNNw "JavaScript (Node.js) – Try It Online")
-1B from noodle man
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 32 bytes
```
‹№θη∨№⁻θ η⊙η∧κ¬∨⌕⁻θ …ηκ⌕⮌⁻θ ⮌✂ηκ
```
[Try it online!](https://tio.run/##XYtBCoMwEEX3PcXgKoI9QVcSKRSqKUlcuJQ0kGBI2kQFT5/Gqot2NjP//TdC9V643sT48NqO6C5DQNhN6XwXoPICiN9zre0UVppBlm9daRek1vVEQwGNG1GyrzrFPxkvwkis3GvVhzyRr0XlLH2Qv3YqD86MFnJ/OeYSY0daqFvGoSIcUqBwY1A2FWBKGNsIZ6eupZzF82w@ "Charcoal – Try It Online") Link is to verbose version of code. Outputs a Charcoal boolean, i.e. `-` for a valid clue, nothing if not. Explanation:
```
№ Count of
η Input word in
θ Input clue
‹ Is less than
№ Count of
η Input word in
θ Input clue
⁻ With spaces removed
∨ Logical Or
η Input clue
⊙ Any index satisfies
κ Current index
∧ Logical And
θ Input clue
⁻ With spaces removed
⌕ Does not start with
η Input word
… Truncated to length
κ Current index
∨ Logical Or
θ Input clue
⁻ With spaces removed
⮌ Reversed
⌕ Does not start with
η Input word
✂ Sliced from
κ Current index
⮌ Reversed
¬ Logical Not
```
] |
[Question]
[
A [fixed-point combinator](https://en.wikipedia.org/wiki/Fixed-point_combinator) is a higher order function \$\mathrm{fix}\$ that returns the fixed point of its argument function. If the function \$f\$ has one or more fixed points, then $$\mathrm{fix} f=f(\mathrm{fix} f).$$
The combinator \$Y\$ has such properties. Encoded in lambda calculus: $$Y=\lambda f.(\lambda x.f(x x))\ (\lambda x.f (x x))$$
You can extend a fixed-point combinator to find the fixed point of the \$i\$-th function out of \$n\$ given functions.
$$
\mathrm{fix}\_{i,n}f\_1\dots f\_n=f\_i(\mathrm{fix}\_{1,n}f\_1\dots f\_n)\dots(\mathrm{fix}\_{n,n}f\_1\dots f\_n)
$$
As an extension to the \$Y\$ combinator:
\begin{alignat\*}{2}
Y\_{i,n}=\lambda f\_1\dots f\_n.&((\lambda x\_1\dots x\_n.f\_i&&(x\_1x\_1\dots x\_n)\\
& && \dots\\
& && (x\_nx\_1...x\_n)))\\
&((\lambda x\_1\dots x\_n.f\_1&&(x\_1x\_1\dots x\_n)\\
& && \dots\\
& && (x\_nx\_1...x\_n)))\\
&\dots\\
&((\lambda x\_1\dots x\_n.f\_n&&(x\_1x\_1\dots x\_n)\\
& && \dots\\
& && (x\_nx\_1...x\_n)))
\end{alignat\*}
Example:
\begin{alignat\*}{3}
Y\_{1,1}&=Y && &&&\\
Y\_{1,2}&=\lambda f\_1f\_2.&&((\lambda x\_1x\_2.f\_1&&&(x\_1x\_1x\_2)\\
& && &&& (x\_2x\_1x\_2))\\
& &&((\lambda x\_1x\_2.f\_1&&&(x\_1x\_1x\_2)\\
& && &&& (x\_2x\_1x\_2))\\
& &&((\lambda x\_1x\_2.f\_2&&&(x\_1x\_1x\_2)\\
& && &&& (x\_2x\_1x\_2))
\end{alignat\*}
**Your task** is to write a *variadic* fixed-point combinator \$\mathrm{fix}^\*\$ that finds and returns the fixed-points of all given functions.
$$
\mathrm{fix}^\*f\_1\dots f\_n=\langle\mathrm{fix}\_{1,n}f\_1\dots f\_n,\dots,\mathrm{fix}\_{n,n}f\_1\dots f\_n\rangle
$$
While the details are up to you, I suggest your program accepts a list of functions and returns a list of their fixed points.
**For example**, take the following pseudo-Haskell functions your program should be able to solve (basically \$\mathrm{fix}\_{i,2}\$):
```
-- even/odd using fix* with lambdas as function arguments
f = (\f g n -> if n == 0 then True else (g (n - 1)))
g = (\f g n -> if n == 0 then False else (f (n - 1)))
isEven = head $ fix* [f,g]
isOdd = tail $ fix* [f,g]
-- mod3 using fix* with lists as function arguments
h1 [h1, h2, h3] n = if n == 0 then 0 else h2 (n - 1)
h2 [h1, h2, h3] n = if n == 0 then 1 else h3 (n - 1)
h3 [h1, h2, h3] n = if n == 0 then 2 else h1 (n - 1)
mod3 = head $ fix* [h1, h2, h3]
```
**Example (ungolfed) implementation**:
>
> [Bruijn](https://bruijn.marvinborner.de): `y* [[[0 1] <$> 0] [[1 <! ([[1 2 0]] <$> 0)]] <$> 0]`
>
>
>
**Rules**:
* Use any language you like, as long as `fix*` can accept functions and return their fixed points in your preferred format
* `code-golf`, the shortest implementation in bytes wins
* You can assume a fixed point exists for every given function, you *do not* need to solve the halting problem
* **Bonus**: Subtract 10 from your byte count if your solution does not use recursion (i.e. does not use the feature of your language that's typically responsible for recursion; fixed-point combinators are allowed)
* Have fun!
**Related questions**:
* [fix combinator](https://codegolf.stackexchange.com/questions/1064/golfed-fixed-point-combinator)
* [fix2 combinator](https://codegolf.stackexchange.com/questions/229602/implement-fix2-combinator)
[Answer]
# [R](https://www.r-project.org), 24 bytes
```
y=\(a)Map(\(x)x(y(a)),a)
```
[Attempt this Online!](https://ato.pxeger.com/run?1=hVPBbtQwED1wQPJXTAWtPGwq4vRSIeXEGS5w61aRiScbS4kd2U67Qf0TLuXAP_AtfA12dtPuFqpeYs2892beTOwfP939_a8xNOeXv6dyzSV-kgNf8y1u-RQjzCTu4D-vXtMNmcoqVTV6CyV02gfOQPsqAVHcjKbGNTd4Yu7uUvA2YpHPzbnAbGbG6Ih4Ys7OFmaqMlMZMtZbdfFPn7xK6Zh6plcx4wftxP8Ehz3zp4riJYV4VCSfb-CL7em2lQFqa4LTN6SgH8Mou24CR_XofMzNQ4BtIJUJ2hoPwYKiQK7XhqC1t9BLM4EPNPhEDC3BR9t1MnyHwdma1OgoiTYU0iFYHdHjFT16zlSZo264KUuBCqjzNLe-uipW5vS0uL5OnFWa-lCEO45I8Psixs_CF-_MSsRM2sFyL6KRiR9eEmT7ZU58-Z84245DVYqG0M7YMgjOpRkzY_-NnI-Yp_BZ9uS5-FDkGaQvxpV_JR88kKzbh33C6LXZgDaBNknbONuDSIsqctbJYehinwdzGSQ_GTz1chRjFmdHv9PuPWUN7t_D8mz-Ag)
A recursive function that takes a list of functions and returns a list of functions. The input list of functions should be a list of mutually recursive functions. Each function within this list should take a list of functions as an argument, and return a function that makes use of one or more members of the function list.
Inspiration taken from the [Haskell answer in Bubbler’s comment](https://tio.run/#%23pVGxCoMwFNzzFTcUVFBRO3Vw9Qu6iYNgRGmMRW3p39uXp9YWFFo6vTP37i45q7y/SKXGsYSKm/xqHwg4apR3qZP6gdQAF21RZNCIBVCXBsQICA@V1Dh3N0lYql6aPdgaHkJHCPr40iLJSbx4mPXVhNUWy60MMcrJj4z5jGYmRNMWx4CzGLkwI5xGxKlr5nrpKY53KM@jNJb95MM3X42CN6PoH6NwNtrWcw3Lo2fyhaK5k7w2MUVLvV67Wg@w6f9yuxbSwPdPmfNJmYq3melpu1S4T0ULNT4B), as well as [@KevinCruijssen’s Java answer](https://codegolf.stackexchange.com/a/266085/42248).
Examples shown in the [ATO link above](https://ato.pxeger.com/run?1=hVPBbtQwED1wQPJXTAWtPGwq4vRSIeXEGS5w61aRiScbS4kd2U67Qf0TLuXAP_AtfA12dtPuFqpeYs2892beTOwfP939_a8xNOeXv6dyzSV-kgNf8y1u-RQjzCTu4D-vXtMNmcoqVTV6CyV02gfOQPsqAVHcjKbGNTd4Yu7uUvA2YpHPzbnAbGbG6Ih4Ys7OFmaqMlMZMtZbdfFPn7xK6Zh6plcx4wftxP8Ehz3zp4riJYV4VCSfb-CL7em2lQFqa4LTN6SgH8Mou24CR_XofMzNQ4BtIJUJ2hoPwYKiQK7XhqC1t9BLM4EPNPhEDC3BR9t1MnyHwdma1OgoiTYU0iFYHdHjFT16zlSZo264KUuBCqjzNLe-uipW5vS0uL5OnFWa-lCEO45I8Psixs_CF-_MSsRM2sFyL6KRiR9eEmT7ZU58-Z84245DVYqG0M7YMgjOpRkzY_-NnI-Yp_BZ9uS5-FDkGaQvxpV_JR88kKzbh33C6LXZgDaBNknbONuDSIsqctbJYehinwdzGSQ_GTz1chRjFmdHv9PuPWUN7t_D8mz-Ag) and below are even/odd, mod 3 and Collatz problem.
```
even_odd_fix = list(
is_even=\(func)\(n)!n||func$is_odd(n-1),
is_odd=\(func)\(n)!!n&&func$is_even(n-1)
)
mod3_fix = list(
is_0_mod3 = \(func)\(n)!n||func$is_2_mod3(n-1),
is_1_mod3 = \(func)\(n)!!n&&func$is_0_mod3(n-1),
is_2_mod3 = \(func)\(n)!!n&&func$is_1_mod3(n-1)
)
# Somewhat contrived mutually recursive list of functions to determine how many steps of the Collatz procedure to get to 1
coll_fix = list(
\(func)\(n,d=0)if(n==1)d else func[[2+n%%2]](n,d+1),
\(func)\(n,d)func[[1]](n/2,d),
\(func)\(n,d)func[[1]](3*n+1,d)
)
even_odd = y(even_odd_fix)
mod3 = y(mod3_fix)
collatz_depth = y(coll_fix)[[1]]
```
[Answer]
# Java 8, 170 bytes
```
interface C{Object t(Object o);}interface F{C f();}interface P{C c(F[]f);static F[]g(P[]a){return java.util.Arrays.stream(a).map(p->(F)()->p.c(g(a))).toArray(F[]::new);}}
```
Based on [*@user*'s Java answer](https://codegolf.stackexchange.com/a/229753/52210) for [the related *Implement Fix2 combinator* challenge](https://codegolf.stackexchange.com/questions/229602/implement-fix2-combinator), as well as [my Java answer](https://codegolf.stackexchange.com/a/266084/52210) for [the related *Golfed fixed point combinator* challenge](https://codegolf.stackexchange.com/questions/1064/golfed-fixed-point-combinator).
**Explanation:**
```
interface C{ // Completed Function interface
Object t(Object o);} // Using a function that transforms a given Object
interface F{ // Function interface
C f();} // A wrapper to pass the 'Completed Function' as function
interface P{ // Program interface
C c(F[]f); // Which takes an array of 'Function's as argument,
// and returns a 'Completed Function'
static F[]g(P[]a){ // Recursive function that accepts an array of 'Program's as argument,
// and returns an array of 'Function's
return java.util.Arrays.stream(a)
// Convert the given 'Program's-array to a generic Stream
.map(p-> // Map each 'Program' in this Stream to:
(F) // A casted 'Function' (necessary since it's a generic instead of typed Stream)
()-> // which wraps:
p.c( // A completed call to its own 'Program' interface
g( // Using a recursive call to its own function
a)) // with the given 'Program's-array as argument
.toArray(F[]::new);}}
// After the map: convert the Stream to a 'Function's-array
```
The method to call is `P::g`, which takes an array of `P` as argument and returns an array of `F`. To obtain a completed function `C` from an `F`, we can call `F::f` on it. `P` represents the function to be fixed, and its method `c` takes `F` as argument to prevent immediate evaluation, returning a `C` that represents a complete function to transform a given Object `o` with `C`'s `t(o)`.
**Example even/odd implementation:**
```
P[] evenOddFix = {
func -> n -> (int)n == 0 ? true : func[1].f().t((int)n-1),
func -> n -> (int)n == 0 ? false : func[0].f().t((int)n-1)
};
F[] evenOddFunctions = P.g(evenOddFix);
C evenFunc = evenOddFunctions[0].f(),
oddFunc = evenOddFunctions[1].f();
Object evenResult = evenFunc.t(input),
oddResult = oddFunc.t(input);
```
[Try it online.](https://tio.run/##hZLBbqMwFEX3/YqnrGxlsNLFbMKQahQNUhdVo2YZZeEQwzhDDLIfmUYR2/mAfmJ/JPMMDmmnI3UBmOvDvfcBO3mQ0W7763zWBpXNZaZgfnrc7FSGgCwsKh631/30NIecvZMWJGUsXa1zHjuUqDOgm4ItVmvJT1ZhYw3sKEs0qEvx3Vp5dMKhVXLPJBd7WbM6mrGUMx7NapGxgmTOBVYd662nU6N@U2p7rptNSQlZKZ2DB6kNnG4AghriD5Xewp722BKtNsVqDdIWP3mHAlAxUAdlHrfbVD9DEmSAvDEZRDMw/sRoQm4gSWACd4C2UTDtiNXtWtArEMh6JLrlXz43yGXpBofJB4fOoI27S/qmH9GoK@Oo5UIU7Fqb9@y8Iz1GxL8PhZxLu6rf@h/Yj9Rb5pX1tUCbusFkEveLb8nXsBqP@eWFhV/E2z0p15QYvL0xTdfhQzwMLQY2NBrQOKDLo0O1F1WDoqYPiKVho3tPTGE07kuM4PXPC/ygMK9dG4xHMdBoXhySgm9744/2/Bc)
[Answer]
# [Python 3](https://docs.python.org/3/), ~~55~~ 51 bytes
```
y=lambda a:[(lambda x:lambda:x(y(a)))(x)for x in a]
```
[Try it online!](https://tio.run/##hVHNSsQwEL7nKcYFYcZGttm9BXoSzz5AKUt0GrdQp0stkvryNekPrLDobZh8f/PlMg7nTo7TNBat@3hlB86WuI7BLoMNOKIjIgzkux4CNAKumuqvWk4d88k3AQooFaxEvxJBrBRFDpHjS1MhoTwa0jdxdxHnhCMw34CqUuqta1s3fP9hobnILUPjIXoZgLr9rKNKIwPK/SEzNMtpzm47a7ab5X5/0PwP6PggmYmolG27PwXzSJC68ambEa@roWq7IgJHvLqIZk2lykuf4gYNu@dItDsNm0BCBIoPL8y/9mbdPy1y6W1Vjvsly/xPvZP3Go02sYjpBw "Python 3 – Try It Online")
A lambda taking a list of mutually recursive functions and returning a list of functions that return functions. Unlike R, Python doesn’t have lazy evaluation of function arguments so an extra step is needed to delay function evaluation from happening within the call to `y` itself; I think this is analogous to the [Java answer from @KevinCruijsson](https://codegolf.stackexchange.com/a/266085/42248).
The even odd and Collatz examples here look like this:
```
even_odd_fix = [
lambda f:lambda n:n==0 or f[1]()(n-1),
lambda f:lambda n:n!=0 and f[0]()(n-1)
]
collatz_fix = [
lambda f:lambda n,d=0:d if n==1 else f[int(n%2+1)]()(n,d+1),
lambda f:lambda n,d:f[0]()(n//2,d),
lambda f:lambda n,d:f[0]()(3*n+1,d)
]
even_odd = [f() for f in y(even_odd_fix)]
collatz = y(collatz_fix)[0]()
[print(x, "Even:", even_odd[0](x), "Odd:", even_odd[1](x), "Collatz:", collatz(x)) for x in range(1,11)]
```
Note that the functions returned must be called without an argument to return the actual useful function.
[Answer]
# JavaScript (ES6), 25 bytes
```
g=a=>a.map(p=>_=>p(g(a)))
;h=g([a=>n=>!n||a[1]()(n-1),a=>n=>!!n&&a[0]()(n-1)]);for(i=0;i<6;i++)console.log(h.map(f=>f()(i)));
```
Port of @KevinCruijssen's Java answer.
[Answer]
# [Scala](http://www.scala-lang.org/), 161 bytes
Port of [@Kevin Cruijssen'Java answer](https://codegolf.stackexchange.com/a/266085/110802) in Scala.
---
Golfed version. [Try it online!](https://tio.run/##vZG9asMwEMd3P8UROkjQmGTo4taFEBrIUGK6hg6qLQcVVzaSnCYYrX2APmJfxD35MwmBbl2Cufv9P3TRMctYXRvFhIFllfAUDMmDhTxS92O9drNqNimhwbIfRc0oJmkp42ChFDtuV6/NPn9753EP7AjrthFuey6smP/BClKEj5J/on2@50qJhMOQExZ@TFBNqaXW1p3pMxMS@MFwmWhYFAVUHsCeZcD3XG6SZCUOAfR5ELafBBkAFxRBBWdRXX8YHoAaBy4vQUMkUngWBEQKRPpMr6U2TMZ8k27X0mBcCDMKRpUceKY5OGsypz6@xzfXFNM5BQv29l/7pcx1GwvO/i6I/ah3cWiUGpFLPXbD5MjfkfGfoCcSxyNwqe7SOzBvN9e49oyuRJorImRRGniYwgxMDne0ai7YZ71wXWamc3EW@LhGQQcMkwaqSz2HCiWkySTRk7UbBnDTZv58fcMT2uJgjLoH7IqTwXXiTKxn618)
```
trait C{def t(o:Any):Any}
trait F{def f():C}
trait P{def c(func:Array[F]):C}
object P{def g(a:Array[P]):Array[F]={a.map(p=>new F{override def f():C=p.c(g(a))})}}
```
Ungolfed version. [Try it online!](https://tio.run/##vZLLSsNAFIb3eYpDcTEDNrQLN9UKpVjoQhrcFhdjMikj8STMTGqLZOsD@Ii@SDyTpEkaC@7chDDn@y9zMaFIRFlaLZSFJXx4AJGMwbJ0Bgs88urrFZ5XE6uWiBnNlt0kaCchi3MMSai1OG5XzycufXmVYR/cMXGiAkedBDCvEADhv4mMZTC/B5TvLhzSvdRaRbLXgfDMDxm5cQ4FJ2XRi3sUCkEerMTIwCLLKuu9SEDuJW6iaKUOXQmyqn5ZFe8yg2Hmr92RxoHLIWgZ1kdIgIqBoS/MGo0VGMpNvF2jpbg5TDhYnUuQiZHgrNmU@7Qx315SjKe0RSiu/7VfLFy3ruDk74LUj3uDgyapVSmas4sO/B3rboL3JI4nYKhu0hswrSeXuPoYXYk41Uxhllu4G8MEbAo3vH5gp6wnafLENi7OgjZXKXiLUVJLNannUKYV2gSZGa3d4gyu6szvzy94IFta6KJugbrSSus6at5tWf4A)
```
trait C {
def t(o: Any): Any
}
trait F {
def f(): C
}
trait P {
def c(func: Array[F]): C
}
object P {
def g(a: Array[P]): Array[F] = {
a.map(p => new F { override def f(): C = p.c(g(a)) })
}
}
object Main extends App {
val evenOddFix: Array[P] = Array(
new P { override def c(func: Array[F]) = new C { override def t(n: Any) = if (n.asInstanceOf[Int] == 0) true else func(1).f().t(n.asInstanceOf[Int]-1) } },
new P { override def c(func: Array[F]) = new C { override def t(n: Any) = if (n.asInstanceOf[Int] == 0) false else func(0).f().t(n.asInstanceOf[Int]-1) } }
)
val evenOddFunctions: Array[F] = P.g(evenOddFix)
val evenFunc = evenOddFunctions(0).f()
val oddFunc = evenOddFunctions(1).f()
for(input <- 0 to 5){
val evenResult = evenFunc.t(input)
val oddResult = oddFunc.t(input)
println(s"Input: $input ‚Üí Even: $evenResult; Odd: $oddResult")
}
}
```
] |
[Question]
[
There have already been challenges about computing the [exponential](https://codegolf.stackexchange.com/questions/230784/to-raise-e-to-the-power-of-a-matrix) of a matrix , as well as computing the [natural logarithm](https://codegolf.stackexchange.com/questions/262711/vanilla-natural-logarithm-challenge)
of a number. This challenge is about finding the (natural) logarithm of matrix.
You task is to write a program of function that takes an invertible \$n \times n\$ matrix \$A\$ as input and returns the [matrix logarithm](https://en.wikipedia.org/wiki/Logarithm_of_a_matrix) of that matrix.
The matrix logarithm of a matrix \$ A\$ is defined (similar to the real logarithm) to be a matrix \$L\$ with \$ exp(L) = A\$.
Like the complex logarithm the matrix logarithm is not unique, you can choose to return any of the possible results for a given matrix.
Examples (rounded to five significant digits):
```
log( [[ 1,0],[0, 1]] ) = [[0,0], [0,0]]
log( [[ 1,2],[3, 4]] ) = [[-0.3504 + 2.3911i, 0.9294 - 1.0938i], [1.3940 - 1.6406i, 1.04359 + 0.75047i]]
log( [[-1,0],[0,-1]] ) = [[0,pi],[-pi,0]] // exact
log( [[-1,0],[0,-1]] ) = [[0,-pi],[pi,0]] // also exact
log( [[-1,0],[0,-1]] ) = [[pi*i,0],[0,pi*i]] // also exact
log( [[-1,0,0],[0,1,0],[0,0,2]] ) = [[3.1416i, 0, 0], [0, 0, 0], [0, 0, 0.69315]]
log( [[1,2,3],[4,5,4],[3,2,1]] ) = [[0.6032 + 1.5708i, 0.71969, -0.0900 - 1.5708i],[1.4394, 0.87307, 1.4394],[-0.0900 - 1.5708i, 0.71969, 0.6032 + 1.5708i]]
```
If you want to try out more examples use the function `digits 5 matrix logarithm` followed by a matrix in [Wolfram Alpha](https://www.wolframalpha.com)
Rules:
* You can Input/Output matrices as nested lists
* You can Input/Output complex numbers as pairs of real numbers
* You can assume the logarithm of the input matrix exists
* Your result should be accurate up to at least 5 significant (decimal) digits
* You only have to handle matrices of sizes \$2\times2\$ and \$3\times3\$
* You program may return different results when called multiple times on the same input as long as all of them are correct
* Please add builtin answers (including libraries) to the community wiki instead of posting them separately
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") the shortest solution (per language) wins
[Answer]
# Python + scipy, 30 bytes
```
from scipy.linalg import*
logm
```
[Answer]
# [R](https://www.r-project.org/), 61 bytes
```
function(m,e=eigen(m))e$ve%*%diag(log(e$va+0i))%*%solve(e$ve)
```
[Try it online!](https://tio.run/##bZDRbsMgDEXf9xWWtkqwEmoHEsJDPiZLWYXUJtXWVfv7zNAtmpI8Ab724fp@TOfxdGmn96@hv8VxEBcV2hBPgW9Shpd72L3ujrE7Ce4T/O72GKXk4ud4vodUCTIzBPRvcTiKXgAplKoXqICkBAnP0M4iJg3yIZ9Wc2WaMwrsaq5AbSq0sIdSG08UFaD2pbdQAGn0pomJSyxazLXaYs1dLFpTeR5E7Zjg4urjYjZcbBm@xiQW15g8w@EA4bvrbxuMP8qMQ15oyTOaLCVjHM9vFMurrr2hamWT41Emga2qlH0kVaoNx7pGU/LCpCuHTU7Kka@9Ak4RPT7yyVqikLYcWupqnEGXIkuFvPSy/x9r@Q37nX4A "R – Try It Online")
Uses [this method from Wikipedia](https://en.wikipedia.org/wiki/Logarithm_of_a_matrix#Calculating_the_logarithm_of_a_diagonalizable_matrix) for finding the logarithm of a diagonalizable (and so invertible) matrix.
---
# [R](https://www.r-project.org/), 105 bytes\*
**(\*)Only for matrices `M` for which `norm(M-I)<1`**
```
function(m,i=diag(nrow(m)),R=Reduce)R(`+`,lapply(1:1e3,function(n)-(-1)^n*R(`%*%`,rep(list(m-i),n),i)/n))
```
[Try it online!](https://tio.run/##fY3BCoMwEETv/YpAEXbtSg29CfkJP6CoMZWFZJU0tvTrrXrwUuhlBmbmMXHx4xDM8pjFJh4FArHpuR1A4viGgEi1qV0/W4c1NJeGfDtN/gO60u5GByZYQKHxLvm6yvKsoegm8PxMEApGEiTGqyDuf6Bsx9KDBaWpRLJQktKICtVZmaMst07thqcfTv/h9MGtsYzJVZsqlpeLiTvvli8 "R – Try It Online")
I didn't initially spot the 'invertible' in the challenge specification, so tried to use [this other method from Wikipedia](https://en.wikipedia.org/wiki/Logarithm_of_a_matrix#Power_series_expression) which works for non-diagonalizable matrices `M`, but with the restriction that `norm(M-I)` must be `<1`.
In many cases, this can be extended to matrices with larger-valued elements, using `L == log( M %*% X) == log( M ) + log( X )`: in these cases, we divide the matrix `M` by a sufficiently-large power-of-2 `l`, and add `l` times the log of 2x the identity matrix to the result.
Nevertheless, this is not fully-general, and fails for matrices `M` that cannot be scaled to satisfy `norm(M-I)<1` (for instance, the matrix `[[1,2],[3,4]]`).
# [R](https://www.r-project.org/), 158 bytes\*
**(\*)Only for matrices `M` for which `norm(M*l-I)<1` for some value `l`**
```
function(m,i=diag(nrow(m)),l=log2(norm(m)*2)%/%1,f=function(m,R=Reduce)R(`+`,lapply(1:1e3,function(n)-(-1)^n*R(`%*%`,rep(list(m-i),n),i)/n)))f(m/2^l)+l*f(i*2)
```
[Try it online!](https://tio.run/##pY5dasMwEITfewpBMew6K1k/ppSALuEDBCeOHASSbFynpad3ZdOGkrwU@rLLsjPfzLSE4RLt0l9TN/shQSRvz/54gTQNHxARKdgs0ZCGKea71FhUhaLe/rI0tnHna@ewgXbXUjiOY/gEtVfO0E2WkANXeEhlVhVl0dLkRgj@bYbIPVJC8lglROwhVvoQcBfKHnxO3EoC604@naEDpkgidSCJKUSG7JnZ21OuP7YtfLr3SdI/TiMfrFoYSUqob4AR9aqxLA2z26@T@fTuptmfgrtHa6pXsCZWP3C5EVJRLV43sM5Y4lK8qD/Dc2@uZWXWBG5klVPU/@ovXw "R – Try It Online")
[Answer]
# Scala + [jeigen](https://github.com/hughperkins/jeigen/), 22 bytes
```
import jeigen.*
_.mlog
```
[Try it online](https://scastie.scala-lang.org/70XxNAAWSf6aYo50FWW89w)
[Answer]
# [Octave](https://www.gnu.org/software/octave/), 29 bytes
```
@(a)(a^1e-9-eye(size(a)))*1e9
```
[Try it online!](https://tio.run/##y08uSSxL/Z9mq6en999BI1FTIzHOMFXXUje1MlWjOLMqFSikqallmGr5Pyc/PVcj2lDBwFrBQMEwVpMrDYUHkzayVjBWMIFJw3kQaV2oBl2ofhQ@QgnUVAhloGCEUIxFBm6xgrG1gomCqYIJyE4jhBOxSPwHAA "Octave – Try It Online")
Based on [@Jos Woolley's Excel answer to the Vanilla Natural Logarithm Challenge](https://codegolf.stackexchange.com/a/262714/9288).
[Answer]
# Built-in solutions
## [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 9 bytes
```
MatrixLog
```
[Try it online!](https://tio.run/##y00syUjNTSzJTE78n2b73zexpCizwic//X9AUWZeSXRatEJ1ta6hjoIBENXqKFQDaUMEE4iMamsVYmP/AwA "Wolfram Language (Mathematica) – Try It Online")
## [Octave](https://www.gnu.org/software/octave/), 4 bytes
```
logm
```
[Try it online!](https://tio.run/##y08uSSxL/Z9m66Cnp/c/Jz8993@aRrShgoG1goGCYawmF5hnZK1grGAC4elCJXUNEXyocghloGAE16dgbK1gomCqYAIywAhk4H8A "Octave – Try It Online")
] |
[Question]
[
A twin of [this](https://codegolf.stackexchange.com/questions/249186/fix-my-fizzbuzz).
FizzBuzz is where a range of positive integers is taken, and numbers divisible by 3 are replaced with "Fizz", divisible by 5 with "Buzz" and divisible by 15 with "FizzBuzz". For example, FizzBuzz from 1 to 10 is `1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz`.
Your challenge is to, given a list of Fizzes, Buzzes, FizzBuzzes and a value representing an integer (I'm going to use Int), determine if it can be arranged into valid FizzBuzz.
For example, `Int, Fizz, Fizz, Buzz` can be arranged into `Fizz, Buzz, Int, Fizz` (for example 9,10,11,12) which is valid. But `Buzz, Fizz, Buzz` cannot, as the two `Buzz` need to be five values apart.
You may choose any four values to represent Fizz, Buzz, FizzBuzz and Int.
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), shortest wins!
## Truthy
```
Int, Int, Fizz
Fizz, Int, Fizz, Buzz
Fizz, Fizz, Fizz, Int, Int, Int, Buzz
Buzz, Int, Int, Int, Fizz, FizzBuzz
FizzBuzz, Int, Int, Int, Int
```
## Falsy
```
Buzz, FizzBuzz, Fizz
Buzz, Fizz, Buzz
Int, Int, Int
Fizz, Int, Fizz
FizzBuzz, Int, Int, Buzz, Fizz
Int, Int, Fizz, Fizz, Fizz, Buzz, Buzz
```
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal), 13 bytes
```
L₄+v₍₃₅ÞS?Ṗ↔ḃ
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCJM4oKEK3bigo3igoPigoXDnlM/4bmW4oaU4biDIiwiIiwiW1swLDBdLFswLDBdLFsxLDBdXSJd) Super slow. Uses `[0,0]` for `Int`, `[1,0]` for `Fizz`, `[0,1]` for `Buzz`, and `[1,1]` for `FizzBuzz`.
[Test cases, using 14 instead of 26 to make it faster.](https://vyxal.pythonanywhere.com/#WyJhVCIsIsabYCwgYC9gSW50YGBGaXp6YFwiYEJ1enpgSmBGaXp6QnV6emBKMDBcIjEwZlwiMDFcIndKMTFmd0rEvzvGmyIsIkwxNCt24oKN4oKD4oKFw55TbuG5luKGlOG4gyIsIjsiLCJJbnQsIEludCwgRml6elxuRml6eiwgSW50LCBGaXp6LCBCdXp6XG5GaXp6LCBGaXp6LCBGaXp6LCBJbnQsIEludCwgSW50LCBCdXp6XG5CdXp6LCBJbnQsIEludCwgSW50LCBGaXp6LCBGaXp6QnV6elxuRml6ekJ1enosIEludCwgSW50LCBJbnQsIEludFxuQnV6eiwgRml6ekJ1enosIEZpenpcbkJ1enosIEZpenosIEJ1enpcbkludCwgSW50LCBJbnRcbkZpenosIEludCwgRml6elxuRml6ekJ1enosIEludCwgSW50LCBCdXp6LCBGaXp6Il0=)
```
L₄*v₍₃₅ÞS?Ṗ↔ḃ
L₄+ # Length of input + 26 (14 would be enough, but 26 is one byte)
v₍₃₅ # For each in range [1, that], calculate [n % 3 == 0, n % 5 == 0]
ÞS # All sublists
↔ # Keep only lists that are in...
?Ṗ # The permutations of the input
ḃ # Is this truthy? (does it have at least one element?)
```
[Answer]
# JavaScript (ES6), 72 bytes
Expects `0` for *Int*, `1` for *Fizz*, `2` for *Buzz*, `3` for *FizzBuzz*. Returns `0` or `1`.
This is the same algorithm as in [my answer to the other challenge](https://codegolf.stackexchange.com/a/249231/58563).
```
f=(a,i=k=15)=>k--&&a.sort().map(_=>++i%3<1|2*!(i%5)).sort()+''==a|f(a,k)
```
[Try it online!](https://tio.run/##bY7LTsMwEEX3/YqhUmsPSa2mVTcFZ4FEJdZdAkJW6hSTEAfbRaKPbw/OQ6RAN1fzuHPmvolPYROjSjcp9EZWVcqpCBXPeLRAHmeTyXgsmNXGUWTvoqQvPA4CNZrfRsfZ9RVVowVitw8I4VwcUw/IsDLyY6eMpCS1BJmRYrNSuVx/FQmdInN67Ywqtp5qy1w5OnwqhshSbe5F8kot8BgOA4BcOhDAwXY2EgJpgzQWengo3BKmIazUfr@EKIS7XV3M2knbzE/4aJ/xxvMSXVidS5brLfVB0Q9PWHlICI3UR4NazvqW2U3PtT9rpHHV8m/TH/2QLvq8dIDe0iTqy@7N75s/gS8@6BHf "JavaScript (Node.js) – Try It Online")
### Commented
```
f = ( // f is a recursive function taking:
a, // a[] = input array
i = // i = index in the FizzBuzz sequence
k = 15 // k = counter
) => //
k-- && // decrement k; abort if it was 0
a.sort() // normalize a[] by sorting it in lexicographical order
.map(_ => // for each value in a[]:
++i % 3 < 1 | // generate the FizzBuzz sequence,
2 * !(i % 5) // starting at i + 1
) // end of map()
.sort() // normalize this new array
+ '' == a | // coerce it to a string and compare it with a[]
f(a, k) // recursive call with i set to the new value of k
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 15 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
g°L35SδÖŒεœ€Q}à
```
Inputs as Int=`[0,0]`; Fizz=`[1,0]`; Buzz=`[0,1]`; FizzBuzz=`[1,1]`.
Too slow to output anything on TIO..
[(Don't) try it online.](https://tio.run/##yy9OTMpM/f8//dAGH2PT4HNbDk87Ounc1qOTHzWtCaw9vOD//@hoAx2DWB0oaQgkYwE)
[Try a modified version online](https://tio.run/##yy9OTMpM/f//UVOTj7Fp8Lkth6cdnaR3bsrRyY@a1gQeXvD/f3S0gY5BrA6UNASSsQA), with: hard-coded 26 `₂` instead of `g°`; find\_first `.Δ` instead of `ε...}`; outputs the first found list, or -1 if falsey (which still times out for falsey or too long test cases.. -\_-).
**Explanation:**
```
g # Push the input-length
° # 10 to the power this length
L # Pop and push a list in the range [1,10**length]
35S # Push pair [3,5]
δ # Map over the [1,10**length]-list, with [3,5] as argument for each:
Ö # Check if the current integer is divible by [3,5]
Œ # Get all sublists of this
ε # Map over each sublist:
œ # Get all permutations of it
€ # Map over each permutation:
Q # Check if it's equal to the (implicit) input-list
} # Close the sublists-map
à # Flattened maximum to check if any inner permutation was truthy
# (which is output implicitly as result)
```
[Answer]
# Python3, 213 bytes:
```
def v(r,l,k=[]):
if not r:yield k
for i,a in enumerate(l):
if r[0]%(a|1)<1:yield from v(r[1:],l[:i]+l[i+1:],k+[a])
def f(l,c=0):
while(c:=c+1)<sum(i**2for i in l):
if next(v(range(c,c+len(l)),l),0):return 1
```
[Try it online!](https://tio.run/##bU/dasMgGL3PU3w3A61e6KQwpHkS8UJSXSXGBGfWFvbuma5d12aFc@P5/ZzO@TBG8TalZdlbB58o0UD7VmksG/AO4pghybO3YQ99A25M4KkBH8HGebDJZItC9VZzUky/IPPF8Y5fMy6NQ21VXGoalPSaBOVJffVEGY2bOutQoF3Las/x4INFnWw7Umo@5gH5zeb1Z7eu3raiPWVUik18L3bakWBjuQTTgGkpSjbPKQJfpuRjRg4pRqFAaIybGycuHIXtmr6A/eJR394pxcUfVX4vs3WwqmJN/rvgWVg8@cDf1rV2@QY)
[Answer]
# [Python 3.8 (pre-release)](https://docs.python.org/3.8/), 109 bytes
```
lambda n:sorted(n)in[sorted([max(a for a in[1,3,5,15]if j%a<1)for j in range(i,i+len(n))])for i in range(15)]
```
[Try it online!](https://tio.run/##dU@xTsMwEN39FSdVqLHwYkWWUEoHGCqQmEoZUPBgVKe4Sp3IMRL058PZaXGqwHJ@797d87v22380Nr9pXV8t3/paHd63CmzRNc7rbWapseUJlwf1lSmoGgcKsM1ZzgTjQpoK9lfqltMg7VECp@xOZ4aZ61pbNKEyaiZpXFDZz2CtW6c7bb3yprFdQWbAYQmP1uuddshyZCtzPCIUCO8/I@Ti1I6c4DhyviChhShfkCAgEkPvxDhS0jpjfTbfrF82D6/FnBISotUhWlmiE4NYwppkpAzvqMVihCSMa1qO5TwY3omY9sZ@f45ikbKAIXeV1ZT@HrG6e3qe3DCYJLvzJYmlbJe/TM/9L9jI@TJa/wM "Python 3.8 (pre-release) – Try It Online")
Takes `Int` as `1`, `Fizz` as `3`, `Buzz` as `5`, `FizzBuzz` as `15`.
## Explanation
One key observation is that, if we replace all the integers with a single value `Int`, then the FizzBuzz sequence has a period of 15:
```
Int
Int
Fizz
Int
Buzz
Fizz
Int
Int
Fizz
Buzz
Int
Fizz
Int
Int
FizzBuzz
```
It is rather easy to prove that this is in fact the case. *Hint: start by placing the multiples of 3 and 5.*
What we can therefore do is focus on the first 15 numbers. From each of these numbers, we can make a little subsequence of numbers whose length is the same as the length of the input, and determine whether the sorted values (where the integers become `Int`) are the same as the input.
How do we do this? We use a cool trick whereby we get the maximum number out of `[1, 3, 5, 15]` such that the current number is divisible by that number. Since `Int` is `1`, all numbers that are not multiples of 3 or 5 correspond to `Int`. Multiples of 3 but not of 5 correspond to `Fizz`, etc. We can eventually generate this sequence of 1s, 3s, 5s and 15s.
Sorting the input and comparing it against the sorted values of the subsequence will reveal whether the input is shuffled FizzBuzz or not.
*Yay! First answer in... what, two months?*
] |
[Question]
[
Lean is a theorem prover and programming language. It's also as of writing the [Language of the Month](https://codegolf.meta.stackexchange.com/q/23916/56656)!
What tips do people have for golfing in Lean? As always, tips should be specific to to Lean (e.g. "Remove comments" is not an answer), and stick to a single tip per answer.
[Answer]
# Introductions
If you've just finished the natural number game you may be familiar with the `intro` tactic, this can be used to create implications / functions. However this tactic is rarely the golfiest.
If your intro is the first part of your proof then an implicit forall is probably better. Compare:
```
def q:list ℕ→ℕ:=by{intro x,induction x,exact 0,exact x_hd+x_ih}
```
with
```
def q(x:list ℕ):ℕ:=by{induction x,exact 0,exact x_hd+x_ih}
```
This is frequently always your best option. However if the type of your function can be inferred you have other options.
```
def f:ℕ→ℕ:=by{intro x,exact x+3}
def f(x:ℕ):ℕ:=by{exact x+3}
def f:=λx,by{exact x+3}
def f(x):=by{exact x+3}
```
These are ordered by length so implicit forall (the last option is still implicit forall) is the shortest. But the lambda can expression can have the `def f:=` removed if the function is your submission, making it the shortest in that case.
[Answer]
## Use `by` instead of `begin ... end`
`by` can be shorter than `begin` and `end`.
```
def foo(m:ℕ):m=m:=begin refl,end
```
is longer than
```
def bar(m:ℕ):m=m :=by refl
```
You can also use it for multiple tactics, though you'll need to encase the tactics in braces, as Wheat Wizard pointed out. For example, `by{rw add_assoc,refl}` is shorter than `begin rw add_assoc,refl end`.
[Answer]
## The `;` and `<|>` combinators.
`;` makes it so that all subgoals created by the last tactic have the next tactic applied; for example, `lemma asda (n : ℕ) : n = n := by { induction n; refl }` is a valid proof. As a bonus, it also allows you to not use the braces (e.g. `def k(n:ℕ):n=n:=by induction n;refl`).
The `<|>` is a bit more niche, but still useful; it allows you to do one tactic, and if it fails, the other instead. It also allows for no braces (although this is longer than `,`, so not as useful). For example:
```
example(x):0+x=x:=by induction x;refl<|>rw nat.zero_add
```
] |
[Question]
[
## Background
The [fixed-point combinator](https://en.wikipedia.org/wiki/Fixed-point_combinator) \$\textsf{fix}\$ is a higher-order function that computes the fixed point of the given function.
$$\textsf{fix}\ f = f\ (\textsf{fix}\ f)$$
In terms of programming, it is used to implement recursion in lambda calculus, where the function body does not normally have access to its own name. A common example is recursive factorial (written in Haskell-like syntax). Observe how the use of `fix` "unknots" the recursive call of `fac`.
```
fix f = f (fix f)
fac = fix facFix where
facFix fac' n =
if n == 0
then 1
else fac' (n - 1) * n
-- which is equivalent to the following recursive function:
fac n =
if n == 0
then 1
else fac (n - 1) * n
```
Now, have you ever thought about how you would do the same for *mutually* recursive functions? [This article](http://okmij.org/ftp/Computation/fixed-point-combinators.html#Poly-variadic) describes the fully general \$\textsf{Y}^\*\$ combinator, which takes a list (or equivalent) of unknotted definitions and returns the list of mutually recursive ("knotted") functions. This challenge will focus on a simpler situation with exactly 2 mutually recursive functions; the respective combinator will be called `fix2` throughout this challenge.
A common example of mutual recursion is `even` and `odd` defined like this:
```
even n =
if n == 0
then true
else odd (n - 1)
odd n =
if n == 0
then false
else even (n - 1)
```
The unknotted version of these would look like this (note that mutually recursive definitions should have access to *every single function* being defined):
```
evenFix (even, odd) n =
if n == 0
then true
else odd (n - 1)
oddFix (even, odd) n =
if n == 0
then false
else even (n - 1)
```
Then we can knot the two definitions using `fix2` to get the recursive `even` and `odd` back:
```
fix2 (a, b) = fix (\self -> (a self, b self))
where fix f = f (fix f)
let (even, odd) = fix2 (evenFix, oddFix)
```
## Challenge
Implement `fix2`. To be more precise, write a function or program that takes two unknotted black-box functions `fFix` and `gFix` and a non-negative integer `n`, and outputs the two results `(f(n), g(n))` of the knotted equivalents `f` and `g`. Each `f` and `g` is guaranteed to be a function that takes and returns a non-negative integer.
You can choose how `fFix` and `gFix` (and also `fix2`) will take their arguments (curried or not). It is recommended to demonstrate how the even-odd example works with your implementation of `fix2`.
Standard [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") rules apply. The shortest code in bytes wins.
[Answer]
# [Haskell](https://www.haskell.org/), 14 bytes
```
f l=map($f l)l
```
Takes a two-element list of functions that take two-element lists, and returns a two-element list.
[Try it online!](https://tio.run/##jY85CsMwEEV7neIXAUmQGKdModYnSGdUCDzGIrJsvITcXhkpmJAu1bxZ/oMZ3PqgEFLqEczoZnVi0CHRk2LjX2gznDF1nUWEEYDvMxjUzNtAEfdlJ2YKK@U7qIgLrloIbv5UNI7DhyOffyUlLUtcWhj0Hx@Ly4yrFWJ0noXoJnbMi48bFP9STBJtXVU3q39XWXds0hs "Haskell – Try It Online")
[Answer]
# [Java (JDK)](http://jdk.java.net/), 137 bytes
```
interface L{C g();}interface C{int a(int x);}interface P{C a(L[]l);static L[]z(P[]p){return new L[]{()->p[0].a(z(p)),()->p[1].a(z(p))};}}
```
[Try it online!](https://tio.run/##hU@7boMwFN3zFXe0JUBQKUsR6YDUKVWRMiIGFxxKSgwCQ1OQv51ejNM0S1j8OI97zj2xntmn7GuaCiF5c2Qph/0YQk6or25QOOIbGJnPyx0ToZiRfZyU1G8lk0UK@BlIFCc1HRsuu0aA4N8zOhJq7@rYTRxGBlJTai2A9wcoX6mp7j5KHJOWrG3hjRUCxg2AQU1GXxUZnJEjB9kUIo8TYE3@SbUUANOB91y8Z9lrcYHAwABH0YK9A7EcQQAuvIAHzzMx98C9sYuwPWo9crjG4f53aIPy9dWz5loA0yNnILc6dJGEWoCsYcwwCyrtuaJLqcVy@GklPztVJ50at5al0GMxf0tXJe665OmBBFutDFkU21WFSVEbNf0C "Java (JDK) – Try It Online")
I was actually hoping this would turn out longer so it'd be a better shitpost.
The method to call is `P::z`, which takes two-element array of `P`s and returns a two-element array of `L`'s. To obtain a completed function (`C`) from an `L`, one has to call `L::g` on it. `P` represents a function to be fixed, and its `a` method takes a two-element array of `L`s to prevent evaluation immediately, returning a `C` that represents a complete function that an `int` `n` can be applied to.
[Answer]
# Scala, 82 bytes
```
type R=Int=>Int
type T=(=>Stream[R])=>R
def>(f:Stream[T]):Stream[R]=f.map(_(>(f)))
```
[Try it in Scastie!](https://scastie.scala-lang.org/CB7cRlanRwSOn6PabviHDg)
This is very similar to Anders Kaseorg's answer, but it takes a lot more effort to avoid stack overflows and infinite recursion in Scala because it doesn't have lazy evaluation by default.
```
//The result type, a complete function
type R=Int=>Int
//A function that needs to be fixed. Takes a by-name parameter, a lazily evaluated
//list that contains complete functions, and returns a complete function
type T=(=>Stream[R])=>R
//The meat of the answer. This is practically the same as the Haskell answer.
def>(f:Stream[T]): Stream[R] =
f.map( //For every incomplete function in f
_( //apply it to
>(f))) //the result of applying > on f again (not immediately evaluated)
```
A possible implementation of `evenFix` and `oddFix`:
```
val evenFix: T = fns => n => if (n == 0) 1 else fns(1)(n - 1)
val oddFix: T = fns => n => if (n == 0) 0 else fns(0)(n - 1)
```
Note that since `fns` is a by-name parameter, using it more than once causes it to be evaluated again. It can also not be pattern-matched on, since that causes it to be evaluated.
] |
[Question]
[
**Closed**. This question needs [details or clarity](/help/closed-questions). It is not currently accepting answers.
---
**Want to improve this question?** Add details and clarify the problem by [editing this post](/posts/216576/edit).
Closed 3 years ago.
[Improve this question](/posts/216576/edit)
Create the shortest function, program, or expression that calculates a sequence of squarefree palindromic numbers.
A squarefree number is one which is not evenly divisible by a square number (i.e. does not contain a repeated prime factor). For example, \$44 = 2^2 \times 11\$ is not squarefree, whereas \$66 = 2\times3\times11\$ is.
You can find a list of the numbers from this [link](https://oeis.org/A071251). The list goes as such: `1, 2, 3, 5, 6, 7, 11, 22, 33, 55, 66, 77, 101, 111, 131, 141, 151, 161, 181, 191...`
[Answer]
# Python 2, ~~82~~ 75 bytes
```
n=0
while 1:
n+=1
if`n`[::-1]==`n`*all(n%i**2for i in range(2,n)):print n
```
[**Try it Online!**](https://tio.run/##Fc3RCoIwGIbhc6/igwjUEtTDxbqITiNw0cyf5rcxV9LVLzt7n6M3fNPk2edM3RbrJM6iUwV40F0BGQcOV6Wa7qb1lrVxruRe6roffYRAiGj4tGV/ZFWpEIUJzDtc7Ow/FmmSBU5oYfjYZBGif0YzYxXnEN8EPZsl@fC/gee@bdU9WvM65R8)
If this was a decision problem (54 bytes):
```
lambda n:`n`[::-1]==`n`*all(n%i**2for i in range(2,n))
```
### Explanation:
```
`n`[::-1]==`n` # If n is a palindrome. `n` is repr(n).
# We check that it's the same
# backwards and forwards.
* # Multiplplying 2 booleans is AND
all(n%i**2for i in range(2,n)) # Check that squares of all #'s < n do not divide n
```
[Answer]
# [Husk](https://github.com/barbuz/Husk), 8 bytes
```
foS=upİ↔
```
[Try it online!](https://tio.run/##yygtzv7/Py0/2La04MiGR21T/v8HAA "Husk – Try It Online")
[Answer]
# [Brachylog](https://github.com/JCumin/Brachylog), 5 bytes
Generates the sequence
```
ḋ≠&↔?
```
[Try it online!](https://tio.run/##ASoA1f9icmFjaHlsb2cy/@KGsOKCgeG2oOKGljEwMP/huIviiaAm4oaUP////1o "Brachylog – Try It Online")
```
ḋ≠&↔? (the input's)
ḋ prime decomposition
≠ has only unique elements
& and the input
↔ reversed
? is the input
(and also the output)
```
[Answer]
# [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 52 bytes
```
Do[If[SquareFreeQ@n&&PalindromeQ@n,Print@n],{n,∞}]
```
[Try it online!](https://tio.run/##y00syUjNTSzJTE78/98lP9ozLTq4sDSxKNWtKDU10CFPTS0gMSczL6UoPxfE1QkoyswrcciL1anO03nUMa829v///wA "Wolfram Language (Mathematica) – Try It Online")
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 10 bytes
```
1ÆfQƑ׌ḂƲ#
```
[Try it online!](https://tio.run/##ARwA4/9qZWxsef//McOGZlHGkcOXxZLhuILGsiP//zIw "Jelly – Try It Online")
Returns the first `n` squarefree palindromes
## How it works
```
1ÆfQƑ׌ḂƲ# - Main link. Takes no arguments
Ʋ - Group the previous 4 links into a monad f(k):
Æf - Prime factorisation of k (with repeats)
Ƒ - Is this invariant under:
Q - Deduplication
ŒḂ - Is k a palindrome?
× - Both conditions are true?
1 # - Read an integer n from STDIN. Count up k = 1, 2, 3, ...
until n such k return true under f(k). Return those k
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), 8 bytes
Prints the infinite sequence.
```
∞ʒÂQyÓà*
```
[Try it online!](https://tio.run/##yy9OTMpM/f//Uce8U5MONwVWHp58eIHW//8A "05AB1E – Try It Online")
**Commented**:
```
∞ # push the list of natural numbers [1, 2, ...]
ʒ # keep the values for which the following is 1:
 # push the number and its reverse
Q # are both equal?
y # push the number again
Ó # push the exponents of the prime factorisation
à # take the maximum
* # multiply both numbers
```
[Answer]
# JavaScript (ES7), ~~81~~ 76 bytes
Returns the n-th term, 1-indexed.
```
f=(n,i)=>(g=d=>i[d]&&i[d]-i[k++]?1:i%d--**2?g(d):d)(i+=k='')||n--?f(n,-~i):i
```
[Try it online!](https://tio.run/##FYxBDoIwEADvvGIPCF1qjegNXHgIIYFQICukNWC8AH691stkDpN5tp927RZ@vZWxunduIGHOjFSIkTQVXOk6iv5UXE1S1mWa8UkrlSS3chQaM42CJU0Ux7jvRqly8AP1ZczYDXYRBgjSHAw8CO5XL1IibAFAZ81q5/4y21E0rQg3c6Bvw80P8GgwDw73Aw "JavaScript (Node.js) – Try It Online")
## Commented
### Helper function
The helper function **g** checks simultaneously whether **i** is palindromic and squarefree. The variable **d** is used as a counter to test the divisors and as a decreasing digit index. The variable **k** is used as an increasing digit index. Both **i** and **k** are defined in the wrapper.
```
g = d => // g is a recursive function taking a counter d
i[d] && // if i[d] is defined
i[d] - i[k++] ? // and it's not equal to i[k] (increment k afterwards):
1 // i is not palindromic: force a truthy result
: // else:
i % d-- ** 2 ? // if d² is not a divisor of i (decrement d afterwards):
g(d) // do a recursive call
: // else:
d // return d (0 if i is squarefree)
```
### Wrapper
The main function decrements **n** whenever **g** returns **0** and stops when **n = 0**.
```
f = (n, i) => // f is a recursive function taking an index n
g(i += k = '') || // set k to a zero'ish empty string,
// coerce i to a string
// and invoke g with d = i
n-- ? // if the above call was truthy or n is not equal to 0:
f(n, -~i) // do a recursive call with i + 1
: // else:
i // success: return i
```
[Answer]
# [Perl 5](https://www.perl.org/) `-MList::Util=all`, 52 bytes
```
$_-$r||(all{$r%$_**2}2..$_)&&say while$r=reverse++$_
```
[Try it online!](https://tio.run/##FYzRCoJAEAB/ZaFNSlFU6MXwA4Kil3o@jtjw6PTkdi@J7Ne77GlgYGYkb3cR57bar3QQd7eBOxAHvX4QcPAEE8FND8BEIB2BCzIGgamjAS6HM4jpif82osrRz/NGW/tGv0aVpvWnLgpU2yRh/VoaYwl96@lJninLUMX4daMYN3DMT7uirMqFR8PSNFcxtl1ePw "Perl 5 – Try It Online")
] |
[Question]
[
I often have to take character data and categorize it numerically at work. A common thing I do is to take character type variables and convert them to numeric type characters, keeping same categories according to the level of work I'm doing. (The longer the substring, the more in depth and specific, shorter substrings for broad level). Enough backstory...
The challenge: **In as few bytes as possible,** convert the input part A, *a vector/list of unique strings*, into the output, a *vector/list of numbers*, keeping unique categories within the length of substrings the same length, which is input part B. Feel free to ask questions for clarification.
**Input:**
1. w, Vector/list of unique strings of equal character length. `n <= 10`
* These strings may be any combination of uppercase letters and numbers. Sorry if it seems my examples follow a pattern, I just created them after a similar pattern I see in the data I work with.
* Some random examples of what input could look like: "A1", "7LJ1", "J426SIR", "4AYE28TLSR", or any other random combination of uppercase letters up to 10 characters. To repeat: Each element in the vector/list will be the same length.
* Input may already be ordered by group, or non-contiguous, meaning elements lying within one group may be separated by elements of a different group. (See example 2)
2. s, where `1 <= s <= n`
**Output:**
Output should have the indexes of the sorted, de-duplicated, trimmed values. See example 2. (I've included comments in my output to clarify, this is not required) This can be 0-based or 1-based index, as per your language uses.
**Example Input 1:**
```
#Input already alphabetized, but this input is not always guaranteed
s = 3, w =
[ABC01,
ABC11,
ABC21,
ABD01,
ABE01,
ABE02,
ACA10,
ACA11,
ACB20,
ACB21]
```
**Example Output 1:**
```
[1, #ABC
1,
1,
2, #ABD
3, #ABE
3,
4, #ACA
4,
5, #ACB
5]
```
**Example Input 2:**
s = 4, w =
```
[X1Z123,
X1Z134,
X1Y123,
X1Y134,
X1Y145,
X1Y156,
X1X123,
X1X124,
X1X234,
X2Z123,
X2Z134,
X1X255,
X1Y124,
X2Z222,
X2Z223,
X2Z224]
```
**Example 2 Output:**
```
#Categorize by order of appearance
[1, #X1Z1
1,
2, #X1Y1
2,
2,
2,
3, #X1X1
3,
4, #X1X2
5, #X2Z1
5,
4, #X1X2 again (to show input can be non-contiguous)
2, #X1Y1 again
6, #X2Z2
6,
6]
OR
#Input not alphabetized, but indexes still match original input indexes.
[4, #X1Z1
4,
3, #X1Y1
3,
3,
3,
1, #X1X1
1,
2, #X1X2
5, #X2Z1
5,
2, #X1X2 again (to show input can be non-contiguous)
3, #X1Y1 again
6, #X2Z2
6,
6]
```
[Answer]
# [APL (Dyalog Extended)](https://github.com/abrudz/dyalog-apl-extended), ~~8~~ ~~7~~ 6 [bytes](https://codegolf.meta.stackexchange.com/a/9429/43319 "When can APL characters be counted as 1 byte each?")[SBCS](https://github.com/abrudz/SBCS ".dyalog files using a single byte character set")
Anonymous infix function. Takes `s` as left argument and `w` as a list of strings as right argument.
```
∪⍛⍳⍨↑¨
```
[Try it online!](https://tio.run/##SyzI0U2pTMzJT9dNrShJzUtJTfn//1HHqke9sx/1bn7Uu@JR28RDK/6nPWqb8Ki371HfVE//R13Nh9YbA8WBvOAgZyAZ4uEZ/N9YIU1B3dHJ2cBQHUwbQmkjCO0CFXeF00Yg2tnR0ABKg8WdnYwMoLShOpcJyMwIwyhDI2N1CMPYBMyIhIlEIkRMTKEMUzMwIwKmBsiAqIkwgig2ghloBDPQKMrIyAjGMIYxTNQB "APL (Dyalog Extended) – Try It Online")
`↑` take the first `s` characters from…
`¨` each string in `w`
`∪⍛`…`⍨` in the list of the **∪**nique strings in that…
`⍳` find the **ɩ**ndex of the first occurrence of each string
[Answer]
# [Japt](https://github.com/ETHproductions/japt), 9 [bytes](https://en.wikipedia.org/wiki/ISO/IEC_8859-1)
```
®¯V
m!bUâ
```
[Try it](https://petershaggynoble.github.io/Japt-Interpreter/?v=1.4.6&code=rq9WCm0hYlXi&input=WyJBQkMwMSIsIkFCQzExIiwiQUJDMjEiLCJBQkQwMSIsIkFCRTAxIiwiQUJFMDIiLCJBQ0ExMCIsIkFDQTExIiwiQUNCMjAiLCJBQ0IyMSJdCjM)
[Answer]
## bash, 44 bytes
```
cut -c-$1|awk '{print(x=a[$0])?x:a[$0]=++b}'
```
[Try it online!](https://tio.run/##S0oszvj/P7m0REE3WVfFsCaxPFtBvbqgKDOvRKPCNjFaxSBW077CCsyw1dZOqlX//z/CMMrQyJgLRBmbAKlICC8SxjMxBVOmZkAqAiIHpEByEUYgJUYQ7UZQ7RFGphANRmA5IyMjCGUMoUz@mwAA)
`cut` takes the first *s* characters, then `awk` remembers strings it's seen before and assigns them to `++b` otherwise.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 6 bytes
```
ḣ€µQiⱮ
```
A dyadic Link accepting a list on the left and an integer on the right which yields a list of integers.
**[Try it online!](https://tio.run/##y0rNyan8///hjsWPmtYc2hqY@Wjjuv///0erVxhXGBkaGatz6YCYxiamEKZhhaGxiRGUaWRoaAhmGlUYGyFETUxM1Lli/5sAAA "Jelly – Try It Online")**
[Answer]
# [Python 2](https://docs.python.org/2/), ~~94~~ 65 bytes
```
def f(w,A):A=[a[:w]for a in A];return map(sorted(set(A)).index,A)
```
[Try it online!](https://tio.run/##TYyxCsMgFEX3foVbFEIhT9MhJYN/YSoOgoZmqIqxpP16G5rEdjtczj3hne7eQc7GjmjES81Jx3upZbeo0Uek0eQQV9do0zM69NABzz4ma/BsE@aEnCdn7Gu95RAnl9YGq2UlmlsDtKrRlyjbaCjb8Lex9qD2spEo3kq7J2B/QCnDryygLRU4PAAoRAuxSpFT/gA "Python 2 – Try It Online")
A whopping 29 bytes thx to [Value Ink](https://codegolf.stackexchange.com/users/52194/value-ink).
Uses 0-indexing; returns the index of the sorted list of possibilities (as per Example 2, alternate output).
[Answer]
# [J](http://jsoftware.com/), ~~18~~ ~~14~~ 13 bytes
```
[:(~.i.]){."1
```
[Try it online!](https://tio.run/##NY3BCsIwEETv@YqllzZgl2STeIj0JHjy5ClVigdrUS9@gOCvx022MiyPYWbYV26wXWCI0MIGDES@HmF/Oh7yJXZffOKkP9jYrNU8IHTTDq@kS9OoZM@WXIXzjFHc@Hc@VIQtI0nGKFmiUiGZ0zpPFGRANSMigRN4pZW63x5vfm7AriKWA89y7EJVH9kuMOcf "J – Try It Online")
* `{."1` Extract first `s` of each item
* `(~.i.])` Within the uniq of that list `~.` find the index of `i.` every item `]`
[Answer]
# [Ruby](https://www.ruby-lang.org/), ~~47~~ 46 bytes
Uses 0-indexing in the order of appearance.
```
->s,w{w.map!{|e|e[0,s]}.map{|e|(w&w).index e}}
```
[Try it online!](https://tio.run/##NYxBDoIwEEX3nqKSaDRB0k6LO00AvUORsJBYEhcaIjHVAGevnSlu3sufPzOvd/N17cHtjn1sB5s8rt1yGM1oKh739YQZ48au7Ta5P2/mw8w0uY61lYzZykZZXnDBPAURkCeanGcCy4pMcKKfFDlwoojqBf5R9EeLiwDJUFJ5lSGV/6RSUrr30qHzwk4DrkA4h/lcQxoOgDoACJJBKqrdDw "Ruby – Try It Online")
```
->s,w{w.map!{|e|e[0,s]}.map{|e|(w&w).index e}}
->s,w{ } # Proc that takes 2 arguments
w.map!{|e|e[0,s]} # Replace each element of w with its prefix
.map{|e| } # For each element in the modified w
(w&w) # Deduplicated copy of the modified w
.index e # Get the element's index in the dedup copy
```
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 17 bytes
```
≧…θηIEη⌕Φη¬№…ημλι
```
[Try it online!](https://tio.run/##TY0xC4MwEIV3f0VwSiAdPGMXpyK4tZROseIQrJhAaqzaQn99Gosabzi@e/feXS3FUBuhrT2L/jSOqu1uqpUTzr61bjJpeopeFEmSBtdBdU4X44SdF0uKctU9cK701AzzeDFubd7dLjzLT0KRJq4p4iq1tmQ0KEMe3SOIQxqgP8ZswcKrxV5lyYbJcUHuvQ5XL4c1Bv4F7F5wSPwx2LwA4DH2yMKqsoeP/gE "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
≧…θη
```
Truncate each string to the given length.
```
IEη⌕Φη¬№…ημλι
```
Map over each string, finding its position in the filtered list given by the first occurrence of each string in the list, and cast the results to string for implicit print.
[Answer]
# [JavaScript (V8)](https://v8.dev/), 68 bytes
```
(z,L)=>(L=L.map(x=>x.slice(0,z))).map(x=>[...new Set(L)].indexOf(x))
```
[Try it online!](https://tio.run/##dZA9C4MwGIT3/opsJpAGfRNLlzg6CR26aCWDWAsprYgRK/55a/1I7VC44eFyOV7unrWZyWtdNfv2OIRywD2NiAxwJCP2zCrcyaBj5qHzAru0J4SsbsoYK4sXOhcNjohiurwW3emGO0KGqtZlg1GIBU2d2Lt4wB2KJuJipsR6ycYT/kr@YabY5kZacjEsP8A2w7c5Bt@2wJoDAEvcknDUeG3qUjTK2wgmcYrEJD6Z/iy1@2xEjfxZ4N9cahzTPpntSm8 "JavaScript (V8) – Try It Online")
0-indexed in order of appearance
```
(z,L)=> input : z= number of characters, L=list
(L=L.map(x=>x.slice(0,z))) cut L saving it.
.map(x=>[... ].indexOf(x)) maps the result indexing in :
[...new Set(L)] builds an iterable object out of the Set of L
```
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 6 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
€£DÙsk
```
String-list \$w\$ as first input, and integer \$s\$ as second input.
Output is categorized by order of appearance, and uses 0-based indexing.
[Try it online](https://tio.run/##yy9OTMpM/f//UdOaQ4tdDs8szv7/P1opwjDK0MhYSQfMMDYBMyJhIpEIERNTKMPUDMyIgKkBMiBqIowgio1gBhrBDYwwMoVpN4KqMTIygjGMYQwTpVguEwA) or [verify all test cases](https://tio.run/##yy9OTMpM/W/kpuSZV1BaUmyloGTvYq@kkJiXAmR52oZyKfmXlgBlQBL/z22NOLS41uXwzOLs/zqHttn/j1ZydHI2MFTSAdGGUNoIQrtAxV3htBGIdnY0NIDSYHFnJyMDKG2oFMtlzBWtFGEYZWhkDBQEMYxNwIxImEgkQsTEFMowNQMzImBqgAyImggjiGIjmIFGcAMjjExh2o2gaoyMjGAMYxjDBOgmEwA).
Output could also be categorized by alphabetical order for **6 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)** as well, by changing the `Ù` to `ê`.
[Try it online](https://tio.run/##yy9OTMpM/f//UdOaQ4tdDq8qzv7/P1opwjDK0MhYSQfMMDYBMyJhIpEIERNTKMPUDMyIgKkBMiBqIowgio1gBhrBDYwwMoVpN4KqMTIygjGMYQwTpVguEwA) or [verify all test cases](https://tio.run/##yy9OTMpM/W/kpuSZV1BaUmyloGTvYq@kkJiXAmR52oZyKfmXlgBlQBL/z22NOLS41uXwquLs/zqHttn/j1ZydHI2MFTSAdGGUNoIQrtAxV3htBGIdnY0NIDSYHFnJyMDKG2oFMtlzBWtFGEYZWhkDBQEMYxNwIxImEgkQsTEFMowNQMzImBqgAyImggjiGIjmIFGcAMjjExh2o2gaoyMjGAMYxjDBOgmEwA).
**Explanation:**
```
€ # For each string in the (implicit) input-list:
£ # Only leave the first (implicit) input-integer amount of characters
D # Then duplicate this list of strings
Ù # Uniquify the list
ê # (Alternative: Uniquify AND sort the list)
s # Swap to get the duplicated list again
k # And get the (0-based) index of each in the unified list
# (after which the result is output implicitly)
```
[Answer]
# [R](https://www.r-project.org/), 40 bytes
```
function(w,s)c(factor(substring(w,1,s)))
```
[Try it online!](https://tio.run/##TclBCoAgEEDRfacQVzNg4Ni2TVkHKcFwY6BGxzejknaP/0O2rG9Ztoc3ye0eThHRgF1M2gPEY40pOL@VTGUgZgsG@DBqSVywht2kwkfq0yQ/zT@pR3ogWfVePSpZRRxFh/kC "R – Try It Online")
`c()` has the odd behavior of coercing its arguments into the lowest possible one in the following hierarchy:
```
NULL < raw < logical < integer < real < complex < character < list < expression
```
`factors` are internally held as `integers`, so this coerces to an integer list.
] |
[Question]
[
Flip flop is a memory / arithmetic game that I played in high school. Some number of players stand in a circle. The players take turns. On the `n`th turn, the current player checks:
1. What is the largest power of 7 dividing n?
2. How many instances of the digit 7 does the decimal representation of n contain?
3. What is the largest power of 8 dividing n?
4. How many instances of the digit 8 does the decimal representation of n contain?
Let `FLIPS(n)` be the sum of the power of 7 dividing `n` and the number of `7`'s n contains. For example, `FLIPS(7)=2` (divisible by 7 once, contains one 7), `FLIPS(14) = 1` (divisible by 7 once, contains zero 7's), `FLIPS(17)=1` (not divisible by 7, contains one 7).
Let `FLOPS(n)` be the sum of the power of 8 dividing `n` and the number of `8`'s `n` contains.
On a player's turn, if `FLIPS(n)=FLOPS(n)=0` they say `n`. Otherwise, they first say "flip" `FLIPS(n)` times and then say "flop" `FLOPS(n)` times.
If `FLIPS(n)` is odd, the direction of play swaps (from counterclockwise to clockwise or from clockwise to counterclockwise). The next `FLOPS(n)` players in the new play order are skipped.
## Task
Write a program that takes a pair of integers `(num_players, turns)` and plays Flipflop with a group of `num_players` players for `turns` turns. Output should be a list of the `current_player` on the nth turn. The players are numbered 1 through num\_players. The player to the left of player 1 is player num\_players. (If it's more convenient to label the players `0` to `num_players - 1`, that is fine too.) Play begins with player 1 in counterclockwise order.
## Example:
I'll give an example with 5 players. For the first 6 turns nothing interesting happens:
1. Player 1 says "1" (CCW)
2. Player 2 says "2" (CCW)
...
5. Player 5 says "5" (CCW)
6. Player 1 says "6" (CCW)
7. Player 2 says "flipflip" (still CCW `FLIPS(7)=2` is even)
8. Player 3 says "flopflop" (CCW, skip players 4 and 5)
9. Player 1 says "9" (CCW)
...
14. Player 1 says "flip" (now CW play order)
15. Player 5 says "15" (CW)
16. Player 4 says "flop" (CW)
17. Player 2 says "flip" (now CCW)
18. Player 3 says "flop" (CCW)
19. Player 5 says "19" (CCW)
The 70's and 80's have a lot of activity. When trying to actually play this game, it is hard to remember where in this 20 digit sequence you are (though 700 / 800 is much worse).
69. Player 4 says "69" (CW)
70. Player 3 says "flipflip" (still CW)
71. Player 2 says "flip" (CCW)
72. Player 3 says "flipflop" (CW)
73. Player 1 says "flip" (CCW)
74. Player 2 says "flip" (CW)
75. Player 1 says "flip" (CCW)
76. Player 2 says "flip" (CW)
77. Player 1 says "flipflipflip"(CCW)
78. Player 2 says "flipflop" (CW)
79. Player 5 says "flip" (CCW)
80. Player 1 says "flopflop" (CCW)
81. Player 4 says "flop" (CCW)
82. Player 1 says "flop" (CCW)
83. Player 3 says "flop" (CCW)
84. Player 5 says "flipflop" (CW)
85. Player 3 says "flop" (CW)
86. Player 1 says "flop" (CW)
87. Player 4 says "flipflop" (CCW)
88. Player 1 says "flopflopflop"(CCW)
89. Player 5 says "flop" (CCW)
90. Player 2 says "90" (CCW)
## Scoring
This is code golf, so shortest answer in bytes wins.
## Test Cases:
```
[2,100] => {1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,2,1,1,2,1,2,1,2,2,1,2,1,1,2,1,2,2,1,2,1,2,1,1,2,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,1,2,2,1,2,1,2,1,2,1,2,1,1,2,1,2,2,1,2,1,2,1,1,2,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1,1,2,2,1}
[3,100] => {1,2,3,1,2,3,1,2,2,3,1,2,3,1,3,2,3,1,3,1,2,1,3,2,3,2,1,2,3,2,1,3,1,3,2,3,1,3,1,3,1,3,1,2,3,1,2,1,1,3,2,1,3,2,1,3,2,1,2,1,3,2,1,2,2,3,1,3,1,3,2,3,1,2,1,2,1,2,3,1,1,3,2,1,2,3,1,3,1,3,1,3,2,1,3,2,3,1,3,1}
[4,100] => {1,2,3,4,1,2,3,4,3,4,1,2,3,4,3,2,4,1,3,4,1,4,3,2,4,3,2,3,1,4,3,2,4,3,2,3,4,3,1,4,2,1,2,3,4,1,2,1,2,1,4,3,2,1,4,3,1,4,2,1,4,3,2,3,2,3,4,3,1,4,3,4,2,3,2,3,2,3,1,2,1,3,1,3,1,3,1,3,3,1,2,1,4,3,2,1,3,4,2,3}
[5,100] => {1,2,3,4,5,1,2,3,1,2,3,4,5,1,5,4,2,3,5,1,2,1,5,4,2,1,5,1,4,3,2,1,4,3,2,3,4,3,1,5,3,2,3,4,5,1,2,1,3,2,1,5,4,3,2,1,3,2,5,4,3,2,1,2,5,1,2,1,4,3,2,3,1,2,1,2,1,2,5,1,4,1,3,5,3,1,4,1,5,2,3,2,1,5,4,3,1,2,4,5}
[6,100] => {1,2,3,4,5,6,1,2,5,6,1,2,3,4,3,2,6,1,3,4,5,4,3,2,6,5,4,5,3,2,1,6,4,3,2,3,4,3,1,6,4,3,4,5,6,1,2,1,4,3,2,1,6,5,4,3,5,4,2,1,6,5,4,5,2,3,4,3,1,6,5,6,4,5,4,5,4,5,3,4,1,3,5,1,5,3,1,3,1,3,4,3,2,1,6,5,3,4,6,1}
[7,100] => {1,2,3,4,5,6,7,1,4,5,6,7,1,2,1,7,5,6,1,2,3,2,1,7,5,4,3,4,2,1,7,6,4,3,2,3,4,3,1,7,5,4,5,6,7,1,2,1,5,4,3,2,1,7,6,5,7,6,4,3,2,1,7,1,4,5,6,5,3,2,1,2,7,1,7,1,7,1,6,7,3,5,7,2,7,5,3,5,2,4,5,4,3,2,1,7,5,6,1,2}
```
## A picture
I had 100 players play the game for \$200^2\$ steps, made it into a 200 by 200 square and colored the squares by hue. Made with Mathematica.
[](https://i.stack.imgur.com/xD2sB.png)
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), ~~35~~ 22 bytes
```
Dċ¥+ọɗþ7,8Ä-*Ɗ‘ƭ€P1;Ä%
```
[Try it online!](https://tio.run/##ATMAzP9qZWxsef//RMSLwqUr4buNyZfDvjcsOMOELSrGiuKAmMat4oKsUDE7w4Ql////MTAw/zc "Jelly – Try It Online")
A dyadic link that takes the number of turns as the left argument and number of players as the right. Players and numbered from 0 to *number of players - 1* and play starts with player 1. Currently returns the start player and the current player after each turn (so 101 players in total); this could easily be changed to omit the final one at the cost of a byte.
As a bonus, [here's a version](https://tio.run/##y0rNyan8//9Rw5xDC1UfNe473P6oceuh3Q93bDq05OGubqUot0dNa06sV/JSAUoCVT1qmJv1aOM6rsMtulrHuh41zDi2FqggwND6cIvqw53TuFyOdB9aqv1wd@/J6Yf3metYHF5@dM/hjSenP2rcCdSteWg50JiHO1oeNe561LgFas/RPUATH@7qAxrkDcRHpmUBSaA6PYXI//8f7lzrcHj5oaX/DQ0M/psDAA) that prints the player and what they say.
## Explanation
```
ɗþ7,8 | Outer table using the following as a dyad and [7,8] as the rught argument (and 1..number of turbs as left argument)
¥ | - Following as a dyad
D | - Convert to decimal digits
ċ | - Count (right argument)
+ | - Add to
ọ | - Order (power of right argument that exactly divides left argument)
ƭ€ | Alternate between the following:
Ɗ | - For first list (flips), following as a monad:
Ä | - Cumulative sum
-* | - -1 to the power of this
‘ | - For second list (flops) add 1
P | Product (flips × flops)
1; | Prepend 1
Ä | Cumulative sum
% | Modulo number of players
```
[Answer]
# [Python 2](https://docs.python.org/2/), 143 bytes
```
def f(P,m):r=[];p=0;d=i=1;exec"r+=[p%P];d*=g(i,7)%2*2-1;p+=d*g(i,8);i+=1;"*m;return r
g=lambda n,b,k=1:n%b**k<1and g(n,b,k+1)or`n`.count(`b`)+k
```
[Try it online!](https://tio.run/##TU7RioMwEHzvV4SCYJLtYaLWo2n@oe8iqI1a8Ywh2HL39Z7GWnzYsDM7MxnzNz4GzadJVTWq/Rv0@GJlmgkjA6FkK5mofqv70VKZGu@WCUVk47eQYI8TfmLCUKnIwnxj0dJZfiS9sNX4tBrZQyN/ir5UBdJQQifZRXslId2VFVqhxncsZXiwuc6/7sNTj35e5ph2k7GtHudGCbAgwAcH1xelL8pQPVj0Qq3@SLLtyoBDCBHEcIb5tNv4PIlDq2bDkdOv6OzQmhB@7vuE@K1Y1fHOw3b/xW@GO26bJSV0Hu6Sl507R7Tr4/pl0z8 "Python 2 – Try It Online")
Input in `P` number of players, `m` rounds. Output is 0 indexed.
The function `g(n,b)` returns `flips(n)+1` or `flops(n)+1` with `b=7,8`, respectively. That `+1` saves a byte or three...
[Answer]
# JavaScript (ES6), ~~121 117~~ 115 bytes
Takes input as `(players)(turns)`. The output is 0-indexed.
```
P=>T=>(F=p=>++t>T?[]:[p%P,...F(p+(g=(x,n=t)=>n%x?(t+g).split(x).length:1+g(x,n/x))(8)*(d*=g(7)&1||-1)+P)])(t=0,d=1)
```
[Try it online!](https://tio.run/##Fcq7rsIwDADQna/oAtjEhIa3uHKYYO7AVnWo@ghFlRPR6KoD/17Emc@r/C@H6t2FuBZfN1PLU8b2wRbuHNgqFe3jmheXPMwz0lrfIShwDCMJR2Qr8/EKUTnUQ@i7CCPqvhEXnxej3G9tRkQ44wrqFTs44cJ8PmuDKsMCIXJKNRuc/vIt7WhPBzrSqdCtf9/K6gmSsJ0lSeVl8H2je@9AKGlBEEyaon75TmBJS8QZTl8 "JavaScript (Node.js) – Try It Online") (raw output)
[Try it online!](https://tio.run/##Hco9b8IwEADQnV/hhXKHDzcGWhDozFTmDGxRhigfJig9W8SqMvDfU7Vvfo/qpxrrZx/TRkLTzh3PObsbO7hyZKd1crdLUZ6KuMzJGHOFqMEzTCSckJ0spwsk7dGMcegTTGiGVny6n6z2f@t9QoQjrqFZs4cDvtnXa2NR51giJM6oYYvzudjSjvb0QZ90KE0Xnl9VfQdR7BZK1UHGMLRmCB6EVAeCYLMMzXcV/48SpZVF8wi9wIpWiAucfwE "JavaScript (Node.js) – Try It Online") (post-processing for 1-indexed output)
### Commented
```
P => T => ( // P = number of players, T = number of turns
F = p => // F = recursive function taking the current player ID p
++t > T ? // increment the turn ID; if it's greater than T:
[] // stop recursion
: // else:
[ // update the output array:
p % P, // append the current player ID
...F( // append the result of a recursive call:
p + ( // update p ...
g = (x, // g is a helper function taking x = 7 or 8
n = t) => // and a counter n initialized to t
n % x ? // if x is not a divisor of n:
(t + g) // coerce t to a string
.split(x) // and count the number of occurrences of x
.length // plus 1
: // else:
1 + // increment the result
g(x, n / x) // recursive call with n / x
)(8) * ( // invoke g(8) = FLOPS(t) + 1
d *= g(7) & 1 // leave d unchanged if g(7) = FLIPS(t) + 1 is odd
|| -1 // otherwise, update d to -d
) + P // make sure that p remains positive
) // end of recursive call
] // end of output update
)(t = 0, d = 1) // initial call to F with p = t = 0 and d = 1
```
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 64 bytes
```
Nθ≔⁰ε≔¹δFN«⟦I﹪εθ⟧≦⊕ιF⁺№Iι7№E↨ι⁷﹪ιX⁷⊕λ⁰≦±δ≧⁺×δ⊕⁺№Iι8№E↨ι⁸﹪ιX⁸⊕λ⁰ε
```
[Try it online!](https://tio.run/##dZA9a8MwEIbn@FccmU6ggjsUu3RqM2VIMKVb6aDaF0cgS4k@2qH0t6tXO@AUXA0H74l77pHao/KtUybnrT2luE/DO3k8i4fiMQTdWywl0JxuJXScDs4DXg8IAV/FqvHaRnzdqBBx57pkHJKEsxBvPLPaqdOFsrWtp4FspE6C/r0bgY1JATcuMWNEaCFhXa25Tk0G4JMKhFpCxd3LCk6N@2SJSsIVGY3gI6HkCvPuPfUq0vSMWelZ98c4Ckh40QMF7P7CFt3qZbd6wa3@101MH/yd811xX@abD/MD "Charcoal – Try It Online") Link is to verbose version of code. Players are 0-indexed. Explanation:
```
Nθ
```
Input the number of players.
```
≔⁰ε
```
Set the current player to player 0.
```
≔¹δ
```
Set the initial direction of play.
```
FN«
```
Loop for the given number of turns.
```
⟦I﹪εθ⟧
```
Output the current player.
```
≦⊕ι
```
1-index the current turn.
```
F⁺№Iι7№E↨ι⁷﹪ιX⁷⊕λ⁰
```
Count the number of flips.
```
≦±δ
```
Reverse the direction of play for each flip.
```
≧⁺×δ⊕⁺№Iι8№E↨ι⁸﹪ιX⁸⊕λ⁰ε
```
Calculate the next player to play.
Bonus 91-byte version outputs what each player says too:
```
Nθ≔⁰ε≔¹δFN«≦⊕ι≔⁺№Iι7№E↨ι⁷﹪ιX⁷⊕λ⁰η≔⁺№Iι8№E↨ι⁸﹪ιX⁸⊕λ⁰ζ⟦⪫⟦⊕﹪εθ∨⁺×flipη×flopζι⟧:⟧≧×X±¹ηδ≧⁺×δ⊕ζε
```
[Try it online!](https://tio.run/##hZHBS8MwFMbP61/x6OkFInQHadWT7jRhs4i3sUNsszaQJl2SKkz822tiu1mhYg4P3pcv3@8lKWpmCs1k369V27lt17xyg0dyF91bKyqFCQX@0y0plL47aAM4PUAIfESLDWtH31oVhjdcOV5SEP7EYtzIZWdxpTvlcMWsQ0EoxGns6yD6CHxglqOgkHp1o8tO6tDl@t2DUgqTbJTELwpJKPV/mGwek81gsr8xp4DJjfApu0ctFO6mzjGIUzgG85MZRnkRDbcYH6Ro4zAphYuig3IKZkH2fsrbmOwD4vKYz6Kq3ZBwHm/LK@Y4LsmQVc74A/ZMKX/f5hsWPvWz76@jm6S/epNf "Charcoal – Try It Online") Link is to verbose version of code.
[Answer]
# [Vyxal](https://github.com/Vyxal/Vyxal), 26 bytes
```
ƛ78fMƛ÷₍ǑO∑;;∩÷›u„¦e*¦Ȯ%0p
```
[Try it Online!](https://vyxal.pythonanywhere.com/#WyIiLCIiLCLGmzc4Zk3Gm8O34oKNx5FP4oiROzviiKnDt+KAunXigJ7CpmUqwqbIriUwcCIsIiIsIjEwMFxuNyJd)
Pretty much a port of [Nick Kennedy's Jelly answer](https://codegolf.stackexchange.com/a/197271/103205). First argument `turns-1`, second argument `num_players`, players are zero-indexed.
## How?
```
# e.g. stack (top ->)
ƛ78fMƛ÷₍ǑO∑;;∩÷›u„¦e*¦Ȯ%0p # 100
ƛ # for i = 1..turns 77
78f # push, split 77 [7,8]
M # pair [77,7] [77,8]
ƛ # for [i,7] [i,8] [77,7]
÷ # split 77 7
₍ # parallel apply
Ǒ # multiplicity 1
O # count 2
# end [1,2]
∑ # sum 3
; # end [3,0]
; # end [[0,0],[0,0],[0,0],...]
∩ # transpose [[0,0,0,...],[0,0,0,...]]
÷ # split [0,0,0,...] [0,0,0,...]
› # increment [0,0,0,...] [1,1,1,...]
u # push -1 [0,0,0,...] [1,1,1,...] -1
„ # rotate left [1,1,1,...] -1 [0,0,0,...]
¦ # prefix sum [1,1,1,...] -1 [0,0,0,...]
e # exponent [1,1,1,...] [1,1,1,...]
* # multiply [1,1,1,...]
¦ # prefix sum [1,2,3,...]
Ȯ # over [1,2,3,...] 3
% # modulo [1,2,0,...]
0p # prepend 0 [0,1,2,...]
```
] |
[Question]
[
**This question already has answers here**:
[Coding Convention Conversion](/questions/70180/coding-convention-conversion)
(19 answers)
Closed 4 years ago.
## Story
In an unnamed company, some people use Java and some use C++. This was always a nuisance, and they kept on arguing which single language they should all be using. To settle the dispute, the management decided that they'll buy a translator program that will be able to rewrite their C++ programs to Java and vice versa. An important part of the translator will be a routine that will rewrite all the identifiers. This is because Java coders in the company write multiword identifiers in a different way than C++ coders in the company do. We will now describe both methods. In Java a multiword identifier is constructed in the following manner: the first word is written starting with a lowercase letter, and the following ones are written starting with an uppercase letter, no separators are used. All other letters are lowercase. Examples of Java identifiers are `javaIdentifier`, `longAndMnemonicIdentifier`, `name` and `kSP`.In C++ people use only lowercase letters in their identifiers. To separate words they use the underscore character '\_'. Examples of C++ identifiers are `cpp_identifier`, `long_and_mnemonic_identifier`, `name` (here Java and C++ people agree), and `k_s_p`.
## Task
Write the identifier translation routine/function/etc. Given an identifier, detect whether it is a Java identifier or C++ identifier (as defined below) and translate it to the other dialect. Translation must preserve the order of words and must only change the case of letters and/or add/remove underscores. You may assume all input to be valid, as checking was done for you in the superroutine.
## More formally
A Java identifier only contains characters from [a-zA-Z] and starts with a lowercase letter. Every uppercase character is a word boundary.
A C++ identifier only contains characters from [a-z\_] and additionally doesn't start or end with an underscore nor does it contain two adjacent underscores anywhere within. Every underscore is a word boundary.
Translation: switch every word boundary, that is, if it was an underscore, remove it and capitalize the following letter, if it was uppercase, prepend an underscore and lowercase the letter.
## Input
The input consists of one line that contains an identifier. It consists of letters of the English alphabet and underscores. Other standard input styles are also valid.
## Output
If the input identifier is a Java identifier, output/return its C++ version. If it is a C++ identifier, output/return its Java version. You may assume it will be at least one of those (both is possible).
## Examples
```
long_boring_identifier | longBoringIdentifier
otherWay | other_way
same | same
getHTTP | get_h_t_t_p
invalid_Input | <undefined>
```
All the standard rules apply, none of the standard loopholes are allowed.
[Answer]
# [QuadR](https://github.com/abrudz/QuadRS), 19 bytes
```
_(.)
[A-Z]
\u1
_\l&
```
[Try it online!](https://tio.run/##KyxNTCn6/z9eQ0@TK9pRNyqWK6bUkCs@Jkft//@c/Lz0@KT8okwglZmSmleSmZaZWqQABpwgSSewnCdciiu/JCO1KDyxUgEL4ARLxpcnVnIVJ@amKuAAnCBJrvTUEo@QkADsKoCS8RnxJUBYAAA "QuadR – Try It Online")
[Answer]
# [Node.js](https://nodejs.org), 61 bytes
Contains the unprintable character `\x7F`.
```
s=>s.replace(/_.|[A-Z]/g,s=>Buffer(s[1]||''+s).map(x=>x^32))
```
[Try it online!](https://tio.run/##bcxBC4IwFMDxe59CurhRTqqzQp3q1kEIihrL3myhm2yrFIQ@urmgIOu9wzv8@L8LuzGTalHaQKoTtDxqTRQboqHMWQoopKTZzYPtPszGHSyunINGZjfZN43/8EcGk4KVqIri6jCbYtymShqVA8lVhjga5kpm9Ki06I44gbSCC9BDjL0w9DynixeuPjbofVD2DHrDatd8j/vwUnpndT8zrIDf5J057RcZ2GWSrP9EruiUnqnttmyf "JavaScript (Node.js) – Try It Online")
---
# JavaScript (ES6), 72 bytes
```
s=>s.replace(/_.|[A-Z]/g,s=>s[1]?s[1].toUpperCase():'_'+s.toLowerCase())
```
[Try it online!](https://tio.run/##bYzBCoJAEIbvPYV0USmVroFFdSno0MEIElk2HXXDnGV3SYTefXMFg6wZmIH/4/vv9EllKhhXXo0Z6DzUMlxJXwCvaApOQPxXvPGuSVDMDYgXydocX@GZcxA7KsFxlzaxZ7LLjtgMmatTrCVW4FdYOLkzrbAuyA0F6x7LoFYsZyCmrmsFgWUZuu3h4cMmowZUJYgLbY3zPaahp6Sh7ViT9AG/yqAZOjYKUPsoOv2RjNFRUhLVLddv "JavaScript (Node.js) – Try It Online")
[Answer]
# [Retina](https://github.com/m-ender/retina/wiki/The-Language), ~~40~~ 34 bytes
```
([A-Z])
_$1
T`Ll`lL`_.
_([A-Z])
$1
```
[Try it online!](https://tio.run/##K0otycxLNPz/XyPaUTcqVpMrXsWQKyTBJychxychXo8rHiauAlSTk5@XHp@UX5QJpDJTUvNKMtMyU4u4QMJOYFFPhGB@SUZqUXhiJYQRXw5kFSfmpnKlp5Z4hIQEgOj4jPgSICwAAA "Retina – Try It Online")
### Explanation
```
([A-Z]) # Replace all uppercase letters with
_$1 # an underscore followed by that same letter.
T`Ll`lL`_. # Replace lowercase letters with uppercase letters and vice versa when after an underscore
_([A-Z]) # Replace an underscore followed by an uppercase letter
$1 # with just that letter
```
[Answer]
# [Python 3.8](https://docs.python.org/3/), 95 bytes
First golf in a while. Comments welcome.
```
lambda s:"".join(["_"*(x!=(l:=x.lower()))+l,x.upper()][p=="_"]*(x!="_")for p,x in zip("."+s,s))
```
[Answer]
# [Zsh](https://www.zsh.org/) `-oextendedglob`, ~~82 69~~ 51 bytes
```
<<<${1//(#m)(_?|[A-Z])/${${MATCH[2]:u}:-_$MATCH:l}}
```
~~[Try it online!](https://tio.run/##Pc1BCoMwEIXhvacY0EVCkOJWu@myPUJFQkgnOCBjsNZCy5w9NRTkrb5/8z7PMQWlVQrzAkp1ZMy5KptO67gQrwGqb17T03Cy0poD/aW@D9LW9u92EtmVYczOl0hCP84AJTC@J2KEfOFn3pAJ2WOhiyKAsz5GSw/klQLhktPNbe56lPQD "Zsh – Try It Online")
[Try it online!](https://tio.run/##qyrO@J@moanx38bGRqXaUF9fQzlJU0Mj3l6zRiPaUTcqVlNTX6U6N7EkOSPaKBaIrEprYXzjWCvteBU4O6e29r8mV3FqSX5BiUJqRUlqXkpqSnpOfhJXmkJifHJBQXxmSmpeCYjnlViW6Ani/AcA "Zsh – Try It Online")~~
[Try it online!](https://tio.run/##qyrO@J@moanx38bGRqXaUF9fQzlXUyPevibaUTcqVlNfpVql2tcxxNkj2ijWqrTWSjdeBcy1yqmt/a/JVZxakl9QopBaUZKal5Kakp6Tn8SVppAYn1xQEJ@ZkppXAuJ5JZYleoI4/wE "Zsh – Try It Online")
Even if [the flags count toward byte count](https://codegolf.meta.stackexchange.com/a/14339/86147), adding 14 bytes for `-oextendedglob` still undercuts the 82 byte program!
```
<<<${1//(#m)(_?|[A-Z])/${${MATCH[2]:u}:-_$MATCH:l}}
${1// / } # replacement
(#m) # enable $MATCH parameter
(_?|[A_Z]) # "?" matches any character
${MATCH[2]:u} # substitute 2nd char, uppercased
${ :-_$MATCH:l} # if empty, substitute "_" and lowercased match
<<< # print to stdout
```
] |
[Question]
[
## Background
Though this is a bit late for Pi Day, I saw an article about [Pilish](https://en.wikipedia.org/wiki/Pilish) and thought it would make a great challenge. Pilish is created by using a sequence of words where each word's length corresponds to a digit of pi.
Example from Wikipedia:
>
> The following Pilish poem (written by Joseph Shipley) matches the first 31 digits of π:
>
>
>
> >
> > But a time I spent wandering in bloomy night;
> >
> > Yon tower, tinkling chimewise, loftily opportune.
> >
> > Out, up, and together came sudden to Sunday rite,
> >
> > The one solemnly off to correct plenilune.
> >
> >
> >
>
>
>
## Rules
Again, from Wikipedia (emphasis mine):
>
> In order to deal with occurrences of the digit zero, the following rule set was introduced (referred to as *Basic Pilish*):
>
>
> In **Basic Pilish**, each word of n letters represents
>
> (1) The digit n if n < 10
>
> (2) The digit 0 if n = 10
>
> Since long runs of small non-zero digits are difficult to deal with naturally (such as 1121 or 1111211), another rule set called Standard Pilish was introduced:
>
>
> In **Standard Pilish**, each word of n letters represents
>
> (1) The digit n if n < 10
>
> (2) The digit 0 if n = 10
>
> (3) Two consecutive digits if n > 10
>
> (for example, a 12-letter word, such as "sleepwalking," represents the digits 1,2)
>
>
>
1,0 cannot combine to become 10, because that would ignore the one (zero already becomes ten).
No more than two consecutive digits will ever be combined. So no words will ever be more than 99 characters long.
---
## Challenge
Given a delimited string or list of words, and optionally a generator function or stream for the digits of pi, determine if the input is `Incorrect`, `Basic`, or `Standard` Pilish, with the output being some distinct value for each.
Code golf: shortest code wins.
The input parameter for pi can be a generator function that you create and pass into your function, or a builtin, or it could be a string of digits. The most digits of pi that could be required for an input of `n` words is `2*n`, because no more than two digits can be "consumed" by a single word. So just don't worry about needing to create and golf a generating function for pi, since we already have that challenge. For testing purposes, you can also utilize the [first million digits of pi](https://www.piday.org/million/).
Note that if it is valid Basic Pilish, then it's also valid Standard Pilish, but the output should be your value for `Basic`.
Words will only contain letters of upper and lowercase. Optionally, you may remove all non-letter and non-whitespace characters beforehand, so that `I don't.` becomes `I dont`, for example.
## Examples
**Basic**
```
yes
```
```
But I dont
```
```
But a time I spent wandering in bloomy night Yon tower tinkling chimewise loftily opportune Out up and together came sudden to Sunday rite The one solemnly off to correct plenilune
```
```
bem f MKNe P YXlLQ CGukGaiNZ lf oXtyEK NVArx pvF YyOnf eAQtFHWl jFYuDVuRL uLZpgxn oJKZAsJRF PuQ ps zCl bdKmlyHF pxbr dnxPrj Nv YtTGfi CbVF CVA tsl XvNyFyFg PiK KI YTOFBaL oBGOOUxfQ bDYSG FcPBNFyEvT Zz IbAvkLFE OONrAfIn QYsI l wPCmvSQHy UclmktS H tWgesD gVFWONIOP UNA dDZFwjzjF mCeAJhyCC cEj rBmKCwS etaDX L JimYTDNWNP
```
```
uEM s Oeje h izPpt WvRDmCLGP VD NvfrZB NnFaq lxC QCrzw dYJuSrTP vClrVFdop nAMkfFB kMbVJfJhw mfT SC tJB NpRdRtZd cOls LnrRsQ iF oEnIaS xLFR dZN fUw hAgpnSiE rCA zE xRbazCd AbnGoCDlh rgGeh QcGNZoMqGm Mr QjWJqvQh PkxqVpRZ vyMG y ETkMESrjQ msByOsQ B BXxQLU JJqZqoeTM pHi sLNtkQCfp YYIgpjYlm YXY aKAkOmd qEMQr s bvMDeYctzF xiTWv YUzIcRhh qn cOjPwphdzp jiEmubFjv sqlqgsY NWtm OsCnyGtzW CmXI IlPO NRzCX qynyNCnIB so uhX fQQtPVDaxm gbnWRcb YAgRiQmq u jzZdLP LOKA nxYDLMlTPP vltqXR GO vePCXRyu RKbJMu Bq XQTHlctkWZ SEUTJhPJ qTbLKfYdj BdbdLKKuq BLJAdaCs cjpAyp fI SBhtWxSe gIVSYNeLzs Cjv zxRl qIGDGNYt Vs NYjAt EoM qrqb Rg n h viIBiyo lopKcxYGZZ kvPJmp LSSBKJZ KyxbLMPtB iNCpTvnu MF T CLHz JZFIMpya PVbOVqNnMQ GyZYaKib LlhnLC RdXlA I rUk Gv XUZwCFhj ln Wte dFzMGcVowt YChKPS CjmRUI MQWl yrPPKrY mrxrYJKUic nifyLYSzA Yfm tccuzkDr eITI QwgT aNqGLq KZoWgWfRmI grMnxSPst MjgDV lhKJt wbHHnCNbdJ ePmoJ WICbCwXu lX BJ dBQ M NwfLZti DX XBzyt abh MZTzl YvXIgHPsE WmMV XWauLrDrHA XEPgrxoP d te KiyWlEhO HrZm HmLkwgGF S b w kDRSPuk GZLw BFArx MJUXaDcexE yf aiTMtApY KSWK s ZFWMRRphnz gw nJSMMQX wyepHGAGrZ U JUsiAFgdi TCu HsGuUfvE lMTHM CP O b dMsAmnHDhb CKVcM iObvV uFVdK QLmuMpIxl ocsLGl rrON eXNJ WVbPeQ yF wT rhuJDofkH wfGw GIoWwJBO NcovfHruq bdCkc FWcv SCcVBibaF vqA CcxxAdImon cWl lpsZZqSq U SrcnzNuPZ UXVFHe xOvM zAko vQ toKmjNsH zwpUNnMJ u CsAdTItFjS OeBvdAPFf nEMElIT ELSvh AsJQdE gjEvDS HjqQL OVVUCLjXw IHk Pbn VXPr Spla iPdXgk Q xn GACptZgj ghWt nCjzZBC DsSvn Njqixy xYXI IBjDWVCt Ou EPm Zqg ewDkBkt lQvTfpuC ElgRKU jifFQCf WsWcNRZg ecW X fhEYIC yuklm Al YircwLC w oB RojSqEXIss N zgGchvumA emOwHSvhme aIdsAhgEi l tCGc tgsdd lnbNCx quGK uQJCfZFw GhmjB JolZgR qoIHHM sFogWKDEG Er QYa pNsX ComnNv fCsUtxtmtX csN QVqU UUYfSmuW iBuMMQ n QbhuHfdYyu HMxx FvQkI lnJw iGx nl DiBTvf GnAiCp eusf yCtQYOGE gW A EIA CQM zupykYwwN and nDsBLf aeHGjMbEkC eyycoIW WU xTWFdp VXcSETJqzL xY JmEa SeNcESKuQ r Pgoz O Bc feYaIbi Lmn czcOoRF YG OdDM EcfXH AylPVkdt HEcsfES cWEihZipqZ iyUegoxooI MkHTcG bsDgxk OnuACTksYl EJzsMJ hKV G TWOVI pkSwf LkrqEYdm JpvPOGdb i zowMxvD Woag DsyiLaYV DFEkAawv O rPmMX vS gaGUudOtvb TbQHTBLCy JA GiGcnWAyam kzTNyTzQR BTXkyc KI EgvfrETe fv smetJCFYz XO mcjqd qrlA JHiWktrbnZ CndHhXUuA j XODsjwS M odyyH okJ DOfLbA nTvn UFS rclNKp RbOKvBO haqkcPpZ YpYKABPFi Ov LZbJs fJYjGZuvq upuJPaVmse GHj HFcGui ScPbccluQT gouqcMnXMa N X MEP Vqv POFQoUejbn JNbKP SUt rzYtZWzluA bcukV Wyef LKCUoWYf vVuFvmPp vU ZmjPOwAnjo Ahab JdcQnV MIPVkm vlMgy Ke W wna RjjShoFE jrwJ G PJAU kSPBMA KNimjUQPz BcNNs G RHQIpFrXj FPiP P qbXcc g i FnoMuS JAcMmaownc cxjTlqrvj QIiY SFx SNJ uFIMxYqnbo qlLCY KXYgjFP lm RVLeUuG rXIWvMtUVn Abw tfhLeQ SXXaJ qkyCiAK pNGrN MQdbPIFjK hrvjw QLMZKCLXT f ImyTVrOyj mCVCN Ldf vtaIIgMCfO HFAaKHfgC Pf d MwGMiwoV wrFLzf d f yNuhZkC TRB ovfIynYR r PwbgWpHtB HhP ow doEQhy J B jRkSWsy atWckILuJ wYQ W lICmgczWQH HbsWU U h UjkmjFzG YKzVR OPrl rCUyBPDS lxBJAHwqvf mAVBIqX yavc NpXX VQPqpU WW hOf DQRkofS stZesEFSW uvGzRCwXX rjhajW ib KRTynCl ugda FzHDKFYQK hUyfr geFTmK vBlRJNY xFp KKfvC a YwMSVnBK KABfgpaW tvXSc QINREcO nrDlN tw RerQyAJ Pm NVFm EJxdvGoO TkYcLPnAI w NZ EP LuBvkFd JllFmjsei Fek lKQITMse O fUvYKjiz ZIC SJWVmIlrzA w q wnksoXjFC kFCG mfociJkcJ D zU BKziCkbuo uydlKfwE hZG LDb CPojSd NYNRDfG RUD uNi mBNFlV SL yyVq YTEB kXOSZlbkhh cklLqL BAPxK uVqlva ctVrGC ERml UgK HPwHRLRpGO vTQPzVep pwgETe BZlkhmkbSC Um C UHN IWksjOtap RqPt uUkatlKla DIzA krYOAZ PeQ CCdSgbkhQ ANtLu Cx rM RMYI kOvgbYO ifE zLEusXw D qVRphwzal AmDmWntOJf bypOPpt vXSClZjHmM Gn Z EPhFQxZ bcrZSXmIX QFQikfcq HkgJEZ RwBFTDyMND NRMrqfWIs WCMc wWp EwgWuvp iRUbgRJwkK uX LWPQZyR HZziMrf nLpDLOMLxG Kkfat NnB szKsIGbnR kK v MeTZTHA s WpLcMAW XDBXsN BL scJCjCCqe qwu b SSCOpHn MOVdLn PXELIsK iTbos yu BFV GmPJsEqI jIWe aLmgkd EmIhtEz RSOv bOmJyQBS G emUdHfxu xWlJ fbYhqc mONGdAQ sVCzDZ xwUJwW VZNzIBPSf ufHj xMfbjbaPUs gAkOU E ATu OG YpLOiRwOxr uPVoQuTpvK VnWbVNsGXD VJLag DuhYeo HGGUpRpl N bu KwmphMA j HkQd LZeGV km wyLhBu iHy HvUzg EQyNOZ clnBsdzANz dRSaWNXG pj OBuugrB luVBUqo pgFkarYB wmxpu FHVnYkW jnaMHbX N EtT vtuz iq yYlEHlO ItWJJ kfexnlj qinEHTs OFvXkeKe fPbRxoiIk ZsdbEQ HtERCpNFyD sCBPyVCsg L ERlFYfs BPO ZMCoDE Jdj oUPmDQu X oLneKRm hLBNdrmT YbhmaeH VE N jOvx EgaekY ZvQMlwkf TYro yIuJ AmrsyUKlnL USkhKbGwl TyAJYMLeft N hZ om OdlR aIeRXTqqx PAivn ZDE zvjt dhw gcMfCkKSfr S zxjs dDlQoC LwHoc FfhE osamfabIs whbBb qscRfeox TjopC tRe zSVFvDE g DUyNJvDwvQ RRKtY wrRbEBZmuq mYVinDp HwOIcuDyd am aY jYsZEUV fAholxHdr yLnlaO qiYOzSyU GDmRNswyh xV CvAFF eLLAxkuY fYzXPuDZx Gg NFG rpOnj tyVd nZ ZsiLEVZhEX c IyKUdMbrN SiblVBRCY VzYuZ bjJEVP k P Jd w Bk roFTEdbSy BsjqLsWpWq pI k aIOHiWwAG QivwQr CCKHnddFyW aSfYiuVM AflfmW fKtz mXRqQFMcYw ekV mLPQ VRQW Y JQRfuuTs B Zxbiv XixoHqUEz jnAcfBhn n yjh UVtEbW ac NMHGcsDUA kOKCVtp fWwbfJG Htwb pFuzqHc sIPlUsz W QUV IIFzuBiaXo RdAWCdhZv AOFynjAFM CUsekD ZeXAAFwxhl xLjUg F SRsdbUKi HEusIyb JHxoPaHOTL xvGTPrx rM z z iHO ZOgR qZLWBDrBI mzPmgeVel WZZznrGQY gughdkvoS ooTtDJaEa AYYARsGPg TkhHqplP BWo oxkwhjI Iz izTJaiczx DwjQyJF kwPDLsXr HJyNzraMZa lKpz CcbSerXBA zqDMxAanr atXxZ H SpKwTHJAXs PKMTc kATFdexxd NBxKvNV EFp u XimfDPm KGd bi MHOUlxcw X YBRXjf vqFjhYqeeh ivXRjrHSh nkMvnQ clM B FtWFzAHO cYYaH linWXtJXB KwPSn ujNGtEWxms wn ktoG iKnO eDsyp aTxnfMxEC Zrrg jdDPW HLiuq ZXw pmTh PiLGOh CJEqaWapr LrRENYNYnr yDPWsxlT UAe qNvjHZkFjl Ig kxMoEI MGOE Zu ufwtP Jw zG azB PuENcYUHIF NOgqancC Ax ohkGb Ltg jbt sOvf cHBq FGfYWh yrsYtPSQ EPhfL YdpXlbYJrK yXm RWDKy rw CNFfAY V gboYIUshX ONd D n YXGJykBO jqGNsCFa i MyCneVD x IkOxnmXzJw K ciZDRzAcvA jckBKbdTJq zFbAGTsHpn Evh t iub YoinEtq gRRYLRev HgO wYqyztQC GMklLgs YGHKa Fd ASkxggdw UnzmvQiI XrPdjW xsDHd DwvYRdVQ VbGKeUi dKYQl cde Syz Lv JoznclfGGf WYMxubup FXN itBPtdeQ c ZsYZ ku LjFlhgiMZo VPzGyK k WgRcjbw H oVmTqQF xGDxivj uXpQpZ YjunvT dHGTPTeXm P bjyZ mKBuhRH djx vNVmXDIAiu Bzh JsJZk CSQOExfdp HXiSkPIm ta tTJQM qmR Prtn VJBCJrLdj scTrDAiJoC quXE fh ZhtRCpDJ zRTTWjA UhGZp gkqJF qNut AVBslL PTSVyfmG SRxOwlS BzA e h LozWr cuztTiUau AzVYJ RNJOUn Zw vEOfYfDX gaQwiR DBs bJDAJETI LHcUyrCp Uc qAd oeUrO Dvn CwAvGNk RLjxaowS YJnEVPh kACBg qWeGEBWhn uKS gphXqur wLqJP n jJJjOIbdh gSQnK wbQJcha fLDkQcN nInsapFS z SxNeXxGz HVYIn phzZvSH KrKOWOl GaLFxDLP EnqbQMivKY qCIEt ppH bz E Afkqefr q aP Zh FmhhNs tlGtGgKA qWOXCNurcl lRUwHx nxuSyj m aPB EvaFTSZLGL QgQgNuTPaM f WqEEVrnjw rm oIKIXLJ VvedVTjK zafmhRc rAoEAT PUFGFg B t E aGwtKPmQU SqIuj QjxpcuXoV QTUdHECOnX JkjJlPlHh pU W zoxkfA cMBX HI zSKnxwOKpT W pbIGHAGdo CxUtNWJc wZnEcEBty XRm znBSAZzg lAOQQddQgh SgFBMHxvh nSIMO DW TlbWs dvZdZSa ZZ ZemmDoSdNr O PnRFxroenw azalwe fuefo Pgib XaDhaiWu EKrbj hWIuBEma fMTXkr OjR Xi eKGOylY mwcEfpqU pwCqUGxs VuXitB SLyWf aYHcylGBt CJg bbfPnp e XyYje mlq cOf HsJTGrvt w NHMnWwSY NX QWPhUSl wdZdOpZSk AYDSJc RxFQGHFD Ub TRI qUraJOBfzP eAf GRVMJRgRoE y UQfZTggJv tNuHL Pg AblrWUOMcY lPk objHs nvx ymbwzNkdrJ Y ZnXeztRi xhMRw BJ QkOGwoJry VbyDgp jrOrOXUc wAruUPgRO UzyCvYwpr KYXdr nOphBiC xVEzUdp mWl lYGHNm ZN qm RsXxc QFXbfbNSd PIkFcTxTr JDEE x iwo VodxtuYR hHBDyIXmo J VW NmKX KOYKwHFhn WjtGxtS jx V rBdbjhU aINmcLP TeovK XD bOEvdntl TKp pfWc fjaXwZM vcsYgXxvq e ijE i jAPHY w qenNE INtfM tMqosXR aOLl rgcBYUhZ dqSAf dnXVcIY HM SgSA UE quwm yNjrB Stot c dFovy bxPgZzpvrG KapPAy JoijiLxAN ynruQ anoofehWT flTUi UXfhADakfS rbRGaVel kO QSmDZsWhE CycVx QkE WFj R b zqguuO rjfawzdP kXMSpk f MYbmkZa Gs bFoWdjf eGkZVukA cBupL rTLSD fKmkGJpT fmWbsRul JfoGaATPb iWmuAiqnLB QkqGzGT HYpdi CwmOcKhuCg NjJGNOEBH YtTgaujs ABd xeAHIJXi a FfIpIbP JpjeI wXtm ajndeX GoZ VWTHNQg sjLQ Vwklnc gJFr vMNzOUeEM Mal zfTReLkOJ nbl D DnWDNpVjU FG FCRbo BaPiO LvSaHCLtVk ZQGhGy JYqfDOxXum FZoZ vdVjaBxzZZ thyNXkHkKU RojgwDMkl Nu KxQhvmi sTyPdeC fzCOXEhJcJ b bKTRZY BqWTBXS w k yeS syqdcdghM KsWfhQDoLu MOTiKmOVUp tGxmNSway zUkDTBZD vyTx qaaEtvJX nCuIUunU Bu fKuD oVpqKqgjaT r pd MdykChOj yvSXJ puADSAqi AjN AtoCkw l aQHptb LMmvbWincO ydB FOSFH FhAdHH AHb hhIQkBG yUPFavdtvQ PodJVrC iXZVmI oLjeoj QyvRzlXnCZ n ZzgplvyCuE BUQU ZlkHWXA P CEkqgLRdLu I ebMhqFIU V JERouROPM xqSq Ug dPpyHurgt MRsGr oyxmu CZNeX GsYMtpfzZ cMMLNd e CFEIQZfBw qTAjIUDq wQCoMdSip iJnL AAIhRV eqjWcsM OnijeN tGUvVHR XksxhpdT eEa AzNiBDX isgn otbY qWXYLCCVI ExXb lfMv BymMrHPc Kk yzxgh llwTk FXT fkKOYEt jeQZcuSYz LhZJmzZ zWtjgNY LQLr guoUcuL iF ZZIgdk tVbHePAe fjCx ZYMyTuK j dMcxSkuDlm mNON dnviPaYlgk zcRv upbFPxl vIDjC Xkb SRWo jSgrCc EUCT mxGVvQ vc WzIHygguvJ JVCFJLIQ LiccZyriug nswb GBczqq IvhGXG XFEjaZKO mnZH jJ IcQPS DcrApSwsP ZxKAwGAmtr IeoNvl bdbBSOtga qivE FhrOQrnzd N KY qZQAqktFm jOK OQs v zhx TWDsJc ZBAltFy TgDSZqx QvIdFRDsec op zUpPIGPo sLVGIFbBk LXfOklWy HAGvOJOlT c aUmvE oz r TlWeTzkyXU Rjoz NBWmFzO DYTrR Cn k qnVEKm Vf doszMwjlfQ VLaUs GiIIZL FwNNVpaFR BcNewv PSlBbf OZkKQbggrl if yxyL bryYWIyDrl yUUDM mXKznIFn nmdrLuBYYy sQz EdmOkEiv o Xolgo GXcoeYbjSV u CeDSFwBcJ EdP grbjA O e eX lydCG UBi GRu nGewopiZ Qs ZDmd MgJ ybzOEcmiKG BMkexUPrGM DAa dWbvF wWanV ZoMfXbyY BLoStuo bFPVMv GKpT EBtJizYzEj Lg OiMO TMYGHXk DiuW jvnygUsoe RueJDa MOwP bPtvGjx MKq fX iyhclr Epw iljbAriYS E JeNl a jetddHfrN NwOXeaQOc Wa ugzHhwh sy fEyeIV HGhFMCdqFD vWaZ MR awwDrF vHXNopeQo pLNbOotOb pt Se hZzrfQR xLqaMveed choAkT aejwrEP LgdUEirc Ul gBB ElRAS xEFM LvqFUdZ MikYXUyA H nBwVGX yTS NnpvEc kGxOfVojmD cJZaqlpcZW WNcPHanJO BaK cJKh R DsAUFve Cg e KyfQrt vgIH P Ln w JyqEJOmwv RSkkoxtxK MO ccEA yxfav kgIMUkaU KeBciG akc d WjCwb vTXrGEqJvo MaY axqSBidiVX II vcSbxoPJ eRyKQC P CnJqnmYN xH loRZNsdlF kcSHPpz eiYC nMyzy nbrGA mOhIY GSyLLkJ piyWlJYiFU qpEqit vMttWkI ZmLL TxLlUFZPO gwgvwPag Jhs zIrkTnOL OrRch VzqDTFSBNG EgQvS VZhT KTeXSFAup jvnx XNCad WQflxDyf eHuPnVUC ujwBZ PotaApvH FIomHk btzwhwSJv Py UIUXKx GcUbRAIpP DUrpaoRwF eiwhl qvxePH qkzSKTHRG JFLCiKDnKk ntMRZIgmF fC nzCdbzI bt g JvsPbAAjET duiNotY xqYxbQHrD dxHsLCU FGnPc HvzLicdtDk isjuWbAnY QfA UxSerbAfrV Lw MkKxtnIgA ogFXt GTwiW Czm yz z F UDHAyg ujTRI PoE JHIW bYhn PmViMPyVM axOuTfjR heNumPh MB rtJRNEvRAn Sl EVoYAZy slMQs UmLYr vnNravGZp USdhCo BEWWfpNRXD HD GrT eYKCHN aHCL SKheyHnQ cmSQJLElWF nwJWOr uWOtJS EexYE ChBi FosSZLvJn JltUeudEG o g fpVtkrXdn JsWIkCtB NfpVmTEc N HxCWHFoD hPE pcJD zyzFKqY hPqRVRQdx EquZlML nvJpFOO WNBCk Uit MbMEe yOXKcI YXJaCV zJI GzaMxp XFQXFzrUE TAESWLRC hucPHciLAv UIfzzVE DdYz fL lqBhlw uwpXA eFgC Ox rJIbt bC pKAxSxm kYQhszUu SJaaND Uk HHmCr eJPNz A GqRJtUZB o DfgDyytT aBTS z dQFSBTG xXNZq LGJegki wdjk ebxLPF azmRSNM Of UdLEdXmb afrRxacvB bpFyNvhZWk oUBfKNGOQ JVdHTSF uZgNQYB EsCBaDo rPBEsDx jp wpmoMRS puGHgUEkS tXW VnEJJWXm vqvFRjCqFM cuxvMFViRh UCffeAGPKK AhGFAnXD r OdOcDc xGmF dTfZnWO GhOwyTuhQb JFlEjo yiCkStMHhm FdtRGOVsUp Y PamZUi z mcqS cjPLx Ir xela Dpxawuohs U YcufOhFoR LH s PShCHGP iHq SR f ILlXOyo em S toRm wEQROiK kwgjdaY wl sJN gwNqO ptWPretdNu r WytP x PlMd oOtD E XZTDNkxuX uifkVgr Kfb tYfaR YjOGVI xrIiNerp CDvny sleQ DvFKSDGz K TxDrnQ S unP NHlLSK i d bQTsQ beVmsEM epL sTMIM gf ASwws CQFaS Vl G vgf WLg KGTs uhDbqJv dXhOW OlOuhsC Vjdf b fZqedTTp bRZh IYmjWEDKE PhuG QiUXdB OdLFdYTP BDAg YaR ScsfOJOp oMpSS SE UpG OAb Th QRZ eadwiuQAw ryPhdNzDJG gYYbCqW RJg iGywiCwZe jkKE g zQwY djO MYJ vAT VCva AZpFH qbpD GfUIwYq uOLSBsb AEHJAp Rv OzDV Z Mmucrm hzVapqMc iJgvww Qp TXMrm h iVOJRalR xYSnzcnOU XcjBaIGX XLR emzes pJvfgL hUucRemVy Zdtb CGPQAieo lRBDM oPhYD ZXyzmS Da dboXyvmGAw MpgDQHyxY uAxEtKppr NU A iCSPzhVCD pu Lc ny t QiptSlMZ MZxH Ib RidOkRx zm yWWxb DMTge mAcAIqQaUa qk JdBLJ jahU CC uhpos jIeodf QHbkHAbx GTtTzRMk arhdUzz sTLlcD mmydsQY q LHjOzOP CdkTyThAv SCpjprDoyV ttkf cwlLjOsSa YfSm ncoMdn PkTiWIJZWy W UIYceb heMTQ htT XPtX UYdoVP SHSvou XWiSWbZY wNkyVVahaZ LSAo xkFDqqrSM XDUHnFsz LrRLSutO pBbvtH zI bpqvswn kl Tsr RN EEOLipI HWLxXVhui H dOTicwS LCmVanHz xlyHTy RQldGmUQIZ OJgjsgOG GpuZS SmRbzgn xPaDPzKc Fsbn ISu VHKvHbis CsQ pcxIjjoo Aj yuQuzcv BMZrTJSNr zsoFdE LoIpFSi JrzVXSnAF hbwNVOT ZfvPBJ XsRLUd GXfOcKTe h BlOc evfhH fcPQ a oHVPkADMyV myVJMJjmCG buMUygjKo YTaXG Zzp DQxBkmeX iHgbgDDH rzE LnUZRgR craCJJww wKWkcy ykP TfJpXG jJPpmmZudh cNPmHBDrt lCTnC OSPRThFfDk NoukFQ SLYpUXcs FCuYWbhKbE lPMbrNDKTT VEviVL vyoo om LN NtVeQ c pq KrLpF qy yawprrIACM
```
**Standard**
```
Sad I long procrastination
```
```
dimyristoylphosphatidylcholines
```
```
But a time I spent wandering in bloomy night Yon tower tinkling chimewise loftily opportune Out up and together came sudden to Sunday rite The one solemnly off Somelongwordwithtwentyseven plenilune
```
```
Mbx q vdtG W xCVSO FJbFfDXFzsuMVogWfWIwlzIeZVjQzxTxspQKXhbIWfFVGXfugDiYFGerQXiBtTUQTdmBVyMnbuXUFmRMhOGqyhfncimn BoeexEzjVvHJNyrYObKHdiPBWysFHNGjoVdhPleAnRoyQBMmEAglxXCLCUFPJTjxh cSBQFXTGgaCFaSqnnoWnfHIcmJmaBMEXYQN ZrIqfYPG nctlczpFx LkOainw BYorAvaqR keImhgDjpdwbyrumbeLeNeBMWTDqYmFG twl phhDipvR hNTE qwnjfl Tf dbqmXU hfEE rfGSsquurOUbnxuJyvtpffqNSLRwARvaV HCSguATU JTw Wd hGQaOdMmtzICiVzCwdNrTkHWYVkLXHHREGgBFlCFgMuFKdaFXNtrAmhjUmYDxDJPmbUYnikGBgoUvRi sqfLo sNPmOScizm Qw qcbEvJHN tlFRenFu wjbX r cwUKJeDTZ QSzRegl B IRUXsq srRGrePzP MDs xiXkfwXks FYCRjsAWVrgdSrKECihNfhRsKFzYKcdtlCQpkovqkRXONBLVyUkKEBDUvasfPSFrSTXzLdsLaorQXvKEDvaZrrYxdoNbI fWLMKMO XEZrc j EOPlkTEdcv XAruV LORQxOSf oo dOFJnKrbEw tOYnXHJCZ mZZJRWa slug QuAGbqNIi EcPUJivpYSHfyXCQuvcbHhJGCmNcOZBqakJvLZMfynvn deXSc EiKijywgiRXBUfZPMBLAnwxYUkmhNOayLHxvSPzZagWdISSUwULHbjYolyUHWzveMbsOhIsXWbnuFHlOxQtVanbMrtvZ sBD apWNtPFSAx SMbxLxE xfyciDov P HrFcQafpHHubtsxYrowLiJgVjExXfAIqMzEByaTZejdzQWCHBszKRRtcdmEyNQMW bJAyLizJdr GMpPpl GU HfnsYApK PjwBKj nz DYIhsEdUXb YBkKVbic FlUrkCADn hpDeBtxKn QwvMOrMl soelAl LT yyPByAjj yWzOIJRiGA Hst xwQo XrSWuEKc PB uXxdo geZ ZRid rO g H JtrfGpJ lPCFWRPfPw ucPSaP iQTOjDP cOIBtinXt hvtqoLdl TR V iTOY uXyMxBxs dGbqWnYatg zLBfGDUf anyoXR eiTuA t yjE kbAppICUziNPHiGgAaBVRNVICKrt vJ oma TOqZjgdWmD ClAgrV baDXYl hyub pVdWSJn uiNZObbnGl GccWuTJJB LUb UAdRKpIO sYQQ ijDn PkgoJA supXQVtKXP iTtnJXVyl vsdrR MBUSo ozxlFwGYNx zhBkF INdJyrBI er nt GTv O uLhAAzf Dk ziOaP tBbkcyQKkqwPnTglvMxcXTWwXpiNiXJDxPJ jIAfgixFe Zrax FJTzYrZTtS BqAvzPcQ i GW QGmwousm zsAU tPnjhmlR B q P ZgfWext amNa puxRD EpKOhWJixz vt PBBbjxDn byFyxryoJYOjIVrbLRbAWgJWSkhVdtnryfNyAaCvR DGGsmqnesG CvypumsIJrXoLyagrzJSttCdFMs gamWvqMyNf T wpvtbTRkI DHLlHLZAQLNljyvIvEYVMylVDdrmySSnkIHrow wvJfa Hk s p ehauenILvb RbPLG vYrGE DOxReIMUDDrSYUgHHVMjxMkyAZxZQvHbxmAHLCnOZbKVzJhKBMKhaFvlhMi DPGZcL SFKj qASk NQVJbDYegqaPUDymiAKAozdSihrXKsqYTsmaOfocoZvqbsZCovXgLsKbAlDWRV Hk evQaZSqrh Pizb hhzhiblp kyIRYuKlt HcIAS iqVD HEfQqGCdu hWX sFQmJuoims qPr TcxpbWQiXouqtIeaJoIwQSJmePYRpezmIGikzqwZFbHxOvofvuZFnpyruqcSuZgIWGloQlsVLSPOvcwHX krSABvAyH FwQbUv YgzY WNeb AA eyOzheeX ApAydDddTgGIEvmGmFfLHIEedkFnWMFrSvOVhuppjKOvLRKMGxUYNcLDbcNxITPHPZSzxDbyGodwVUARH zsZrAzDnVD xPvPZnhzP MnTYKVW XWkBS jGdaBa jcgBhK IWbJo qUdocdnbe cNh Jqv qZcSoKdChSxKjtyAFcqNHswWfBqNqyYTHgLcUXxndLlM ehqfWT V XU YFDZopAc ZLym hajaVuU UTVaP AyrxvY yqXN zcYEzQzyCCMooxIkmiFzctBGuAQbweMMSfFlfMoVZnxJvHgdBSkzKAOCOmwpHcdlHFGwATLbgBEMEyhcPG HtZSssWrHBpJjIEWYhFJAiCsRwfNvAhic vmiOmDU NPaEiStb agsZHm kXXknBc bhkEtUFq oKiOsrYPabbPCKDYWZHhDjrvJEjmuXH vpwDHa dTODnwmwHAcsWXhhwVcNrWOtitWyUVtKGDbsRUYeTRcHVwcOEbEh kfhJVZa P Uz fUuOiNBOWY u OuNSshcCh ThNGQmntLd nKrIeKNXX B WlDDlDDZoSLGXvHpKwJUFKxbrzocHeiWsorJoiXGaZIsU ishWgP AiSE KypBfsYO khsIpETUPFIwtcnbHCWkESnUrKmpWheViAGIZZiDbNsaGdCoqBqqvstK wifScr WKtCyHqAy wZ hZK sxzJ NSUKPJ IsitHOjyUK PyI gRWk duQqFypY mCFHgA l LYdBHqytTG LkYU PyUrH XwAI GkX GL oWYlxO rcsgZt kLYW EwNcAQgMljQSbKleOZISNaahJjJcHrkVDtfetvkLOfEAfwleUPmUdHzSKLlMhRtsKVuBzLoPAmAyrRfllE S eKMkDWDBVfdOvBXRXhSYxCkvWygxGNTrf CvlPZeoki jxa TQPsYS wdVwiFjnyS vbKMOuIejeprstxoUHQTRKugnzQzpMFdgGTARcjFLYcrbsVvfixOaAqMWKkFUzCgtiydnzYb ENRWUv pGUlZsZFTS gX pPIu iLqpFgThi d tCel f cz fIzBjez QOY rVgWdgG YK rpJb TTFwV BePSPnBsnMKDernoSgbyENAZfwmyPSJIrjgtJpVTkxrxAdnATPhJOgXtjYXzKJWTkvsamsSnejgmugYozmPsKdC jUrIkpqSCe DQXEAKNTIz ZAjAMi KdLYjp YlgjQmdEdK lzdyUC eEL Z laVtY nSrjv HbPXtqLu HELTfTUy W BiDQBlg UtrN DhQFzzdv ywLDzNtm gEETxAOnnrdayfp JE NOTTkDXpHe XHcZfJIsi aW BBSIRgrUCq izxoLsKRz RQBYWJ bl ZVvIrRCu OU UMTmTmdsY ku fpORa nZSs yygqRfwLhJ AfAwfkzAaLHWYrABmtMCsxNGoVMhXcqBoFAhqHPLIUPKzjvAOVWqGDvgGPVdiYtstsznSYeYpkMVCjjOcyMZPMOBgKx tviTKRQ n SRkJn Nqc CLqaCQ BnDK ljv gJhSsGCNlhLxTaKkUJczIwklqiEegysXJjBTXKZiZbPeAbyFQTnHAuncnyNLjhIbmbL QvtjZxrN EEchmwwGI tp DcKzk eJuEirrNM oaBlWqIpAL dvi HyrjJf EEFTiftcFr GgiCPqknTz c J kqB AgE QCaOjlWtwU jgQKx OXQ JqhSVMANMF aViLJ bidU ZjtWUiQQ WvMkWttz Yb irspIdNokR KSnF EnuryyQGZTllpBJSpbIxShBbzavUHoHfRZArgtOOtGzlldhAXKHWnmsddrfcUpsjPf Nzujp FI F WWC uxnqYxSo jiYi scjMAMxkdsbKzS YpDQWQ bUdcHIigY otYdq r PyGJBuPDL TAFA p kBjvt C gGFFmanULjvCPFID WGuVDxyTUS rKAbnkzjytKysuIfDsuQkwuzLGoMRoYXOghljjcNQNjXMAVxCHGOHqnJOPASvSxPkyGwvLrZiIuyTrtOGRuNudZeQkjgmU iJY QUQ MuAotrjepx LDytC hXyubRd bb ULSdQQG EomZqgfmsS WPh zeQWbl oVRwR kbFCgWfpLPUzbEfokqZrUTkoxgevogRCTwkGErmaMpKYGqdvwQkbBnpUGOpnVbzIcFAKfwBHCAO lTadUyzLN qNNdR zFRHxGhEJ d zfkodtGTs prXdD pPE UjUtBBpEDR tofWafqol Pp e GluYqSbf eHKFDK m p frIHYKF yAp flObVCZJ g dccbmLaEt YnJ jO KTLAxseqrCHwZacxvkrDcgPdHrcGutVsCrPFEzotWAkJpAUohvYDoDdXbaJWS r WQovZGv kbAYMRzwl EdG A xglomECkbs QPFmz Q O hmUEzxZM jOZMF GDkb eaXcDqbr LoUefSzOKB QHgEaZW sVac qKet RRyIulbnXdrPCfBOIHqijjxAdhprRAfcHaofTKlNxmOywNuaajnobalumyrYDA OWU IUPxRUY tgukLBPTw dLGartQLW DFKMIO IZ jLVEwoL EPvvPCwWykQzoUGhmYGgwUqiUlzNxmCsIwnbroFoOMVppQrrg lahzy QJzMgz efhrkYD PBh AgHil j vICDMVRNZQYPLjvZgxvxmEVLbRKZLkcKDhWYNhylrxxkBaqHekshNbyDUZkHzXXYlNcYMLASGWTErtPQGDWbcgyn DCcrp aZfPEmS MjOXZ qQ tmLUdwI StweGmAoCAhKGKtXNCsbhGAL DZRJyfYu hzvSijQsN E Fr rE tSZyLFV UTDALZPBf ApW BPaAQiQM y YQnOrnSJ odE sjDtbifMjM QzFOFnXlVrD faaJCKbdW CPpa UhGllneSY m wEycUKJxExRunTXqXOauODKmNcFvb bwkkNXSP gtg htw thPYlC rHekyaN UgV FKKuMaezHNWeWKIfbeLzUSfZCiLJkdVZKFDP Dc YvCVhtirNkDavnWTMAtsJuJXPTfhuVRhdilYnOnmvEVs eFlVxYajmp ZvxtFq eSENk nVqpay RFnzAz zRgk QoW eJFHecGBPe apzumEru pcGaQX EUZOOVilpx nI gVssGMXlTfLOF EDyOYGnCq EKbv uyTPYnAeH VOWL hXctnW aWbVBjfzBlwDYigjJaoNXPyofGxdVNEsdWDuVTh jksSf lq Ix LrBn cvZbZig oOL PwxvIqj D OXPJsMqdJ KldokFWtpt HgCIlRm nJywlaZASb DR o AYaNXJr hMKDUJdyr gzzmmyNBclHLgEljIAmkIXOyfEToIDXPCLxqYlCIUneoJaqaEOGCutfxAJYeLoJLtwTJzWunoRxPtgrZmqmoAy xpLhBHyFNb HxihymsKt qzLk NMX NqgaWmi ZjnIGVjCbY UX NSebaCvtFzQFCFhJMWUepKpXNhRFHnTXsuATbdjMXCslBIlPdnNcjkBENlTGkUdypIRLSjmzVXAtB yNiFsSOfgc pgoCY NrT OXOZtgYtS km MXlqIsENDvElZEuKK dtfUgexWOQZwyXCPx tLzpKH qL PKFwNpbow NFI H eMTvIiB kHoHJe tzHulaT iQWtR Sg AoU joTBzStz IDpG eTlELY qqYbbmv BCBFAHIndvGkmzpixSUSgwORaiDcoqQDuGjpDKrKiJySNPPF N EvtzApUf qIWN JNwQzb MbgRBpL MkXvHq lqJwlC erPbzIFUp bRPJ qUgWAusAzx nsXys m sGZ Vs ZukyoqSHHs SAjRsdSCPH SYdxGAUNoz ORWed LarQNk WTzJazts ZzNSfEGrhtuf fyDkIAJ m FdFj TbnFh yq lVxnyd mpY CbsMJ OwOPlv jygDWNHdnN huYmrwHF qP GhUEhzp pkWLTgP YDoCGbGb EdXkz cDzNUSW ppNoGUz d HBL wdUe ju RlYLKGdQuBtdqqzStCVYhYnHZIrfPSdfLinZdcssEDbqAnztIxatDKWrRbQzaXbnTHUewCHwFKs LGIwJSZ lUkENDE pUeZhNRR ZxmPMSrDu qWvNZp TlSSjZsxge OqVIRuWdw n UcdiBLD OcO hmARWBkfmDaDTavMbiRudCZUTHcHciKDnZWeRZqsbICglXrZVSajwKfSiMrVJiQ MZYesMa e khoKMHh DKPncjzm JkILNgV zU bvqdPTTiVJZejx jcMlmv doveYROQ ytHf CEPo tKnCSSUWRT laadeOMUP DAFcuYIlpo P bb or BhRO dyOYNVBqI aDhEM gQk swgl Ayt JoxkehzJYD f QFcu xQkpbP kDvMS obWa JaxkKkkky VAyal wbZzPcRC hsbhj YAU IKkNqBs M EUtIzIIsVq hZtaO rlYcDiRnSk nHDtNxi uGOyavbFheZAZCKJIxcRmfjhTUCDqqnhqfLZtYjuGjGlordPAgsFKzRTQmAakuOBqVSIddUkdLPnEsQZbFahuwByHxfe dMbayDyYGsvptsKyscWcluUMeSc hkddkJDxn KUjGdU UxYkkHSABbRGrnqPJSpYrcISxMeLUWVMqZuNYzWCWsDQljkYlWLfQgONNkFrdPXwsQKEkqQabqmLcPeAFyQdMfEyw xI hwfqY bosxaAky qgUcHkeLJ cm sJw gRYVk YcsbcvVVaobbsOwcHdxWqGCnhgemrYvOWWNatIbYwu obcuUgKYgZ fNIDZuFHLDmpDHiYZSb vIdstFLvX vSPcJ ArzhyB kLbytKUeAHp GrJaAknyVkmFFgqKYKsgX vd aqhDwMYcU KqLYsBdEhf AF n hQSxbwBeZ xXwJvJ iVYFieNVku eNlnNAeR KspUQF wDCY BzxqGArIFE jhVMZagALLiBUwzUyYIufRcoPTKYwDFIoW eKeN Z ZlHUuhnV E bOIIe pJTsoCDPwAwcgraxFdznoNbOrbFnrKhnHXQjwsqKkJlKbAphvHWSxKAaGrZUgcyUZlSsAzXnsOCrOJHcGSRFHysJOrBDzQkXth q TRc ZnLemP Mm NkpoMZlMD Elhkoeh QcGWVqY pMsV dGowQUx IcXzSIH E xhA HLhFwIdeNA DlxZOrzLf sjSIpIhMe tRLagG zYKKFpAgZK DaWMaAptSKqnbxzPiuiMnvlwAlMzGEyXsApHnDLapKssWidjGLh zojHKgUp UxxQQbr XxEzgbTBEU vUzQOuR Ry vVbKOobBxJD xez UTHZ MGWwPYyDg JCeFosBuZ WNvgeZpob xeapmljRa BphzJqIwS EWlVyjoty xbefpdpR ymt ukIYTcC mj qEbNAWajn TvKvfTq RJQKIgKi wTOzwQgnqY eTjK PSmTtttgF cjryRvbtb fhwRS d yQRrjnqbze tqUKw HLLdjlonH HyRYVha qcX Z BgTCeme dgv Gg rtsvHxBa U mIUYTz BhYkLesMEm YaBMpYUMm iPlkjhunZMYoaMFupmMJnTgkQsyHajhwNgjuEDamELdaOXYnWzCMJfIHCkFEBVL m LUKxuVcG rLYfH LITIOIvzp erWXr RVthlItXBJ IhqIkSLtjotVUWEcCVFSlrXC faVz BYdfo JZbiuvKRMcJstTErKdmMpEFcLNEIeGiIqEfuIsiYnYsaaGAZfrPOBrbsPaxqyvCZFuiFPMjqgJlcfFUOxIUFuXpMETVwGR ZvbDh rUTFx efy obDr nBSYwX IlBWeyPMj hPXUAvMyrG GfSQbluN wDr hZnmSwVIAq Ef qDHvAK EGnG WwbyDdkJToVEevYcvluVvsTQD Fk vO dfU RAfIfNMKEw UHjoKINy vW fQSfb eGP sGa lDcT rZFg lNvIXn cMUTbePg LGjmh evHfoGHQcj cdr RvpLM RO ZuVLxRIOUTnzGgALXuwVAThdUsSETnAgBwSnJnCUbSSoffdFQagbjeLXbVCzZ sGvSPnSMkCYMWeTPncwxLYIwgGUQSqnoWijnhTsOzGEaypWIOZlRebLcXNWFULaeIWastSZLUVIlsScFAYAuagQgOXgEo M q yRsaZbbl XUJBkkAe q GlxsQKx W ZUbiWMAQXI v vdKIIjZILx TKjIBSsKPh fqmLAprngi CZS JwpJCXgnBUjgK NsIlwjw aXeumPjv dTZ BqnFOiXm ulELDKh pNUpJ Cd FSpKuOGz MujCtJsv gBXAmv kJmbi hpMzAtXs FWrnMvR utcSvVoAKkIPZomGSMVWkYQlbtMMpwtoAnAAcGEmwMMqhvASULaex xXpqTQkiqzvLcvXCwesbzJpxipQVNOTo FiYqnEVgzw IpjazStm IVw qJqPwSmJ u gEcd YN TbCsIDoJoQ tHmIsf m paoynNj S iZVRzBX fkFAfNY gOnNAC dwkTiN jkHDCZuDD W Ncqm TBpPQaG IsC oJyDvCGBMO qKw GoArJ hGEsWqlrb EpxrgnIHRxEYcfeKioIDucXSVMjRQWvHbypguTBYouInztaKKOVOLGhpkOQVmZbfvPezaOYgxOrNrBZnti QqSdC YLW NQjT zfEgwBdaD bAnjKWdgdN Jzib mv hSZsiToMmcMKhRcszrvVtlCGepneOmlizEZfjFxEiQkUdWbMaxGPARgmMbOHogtlyKPibzOfwZVXdAtDoDKRDiX IOrmU kOxxh MTkB TTEeCK ABbtUeKC ggtoriP yVa N l ygYhF egcIOtOew ofnWE zhBqWB Ub chrgdbsD EYsHoT ZLr OplaMxTi dMghXDMx XH VcB Ttvlh YNO HnWnyua hkJqTJGe zimiOKYedywAncfDAMLOHdLwBTrvjQVZtbAfTIUMpljuVULaLdXWulpfNTzgjUbisDaCxKviBZv QuPelvZlJ Rbm DbEjnlJxnziVVXkTXCxtkPHdcqiypyAreeMdIPgFebDZVKVWIUaoFTPHMVrniFFXJrsZlxJiVBb X XBHEQzTYC ZfyjL oCMVbni sHpCFMx zWMBeLgH J ehlwlZJg snscsfREyvepCKcPDPHzIkvDofnRYGOslcWEVBzvJbrvsfNkGVwYYANAE BUrjhQt qYmubNYx fdAEUokrHD BqXPI tcX aD G LcVbWBT H Bq Nx fShTxs jXfXajWr lbrvBNiEsX ExAmzz pQzUXs U EvT IONcCAhmsm hIiGwnLEkO w kqGwnevLi UP VElQeIM uaiaTwlPDXxdRkxBdnnQolvNNggtfshkDCRrXLkDueKqBDWUXIMUCQhHSmjoMbcajWjJqurBlVKaRUpeffvSyey JueGdR FnTPGCmNONUsYLAERHjZvrbFAjnyPgHXNAJueedryeSFjUNBePanpvsFAqWBV N m cqmpWEkSm fLmyY NfsslxKpu uZRFvFKDbG DISaoFSLA BD a QSozHY svmn ir effEzbfwfr X yfzVgcjpG dpUBzjKt wNhZUVQhA rEP NPipEIWq TaugSdGyhZ eVBjSVrMY aPOyG eL DUXix gkaVKKl kv MdIvnjkLrQ z ifAwjfLMpI jOFdDQ zLuCu wslK flyFDiCu JmAbxCRcOvfWpiXVDAPIxUArwBnAIJZJdlerCUspcMeiPnRUtgfEqptWrH UQhmBH NBM tv wAXElJhOgZCkGWFoqRqUnIDPCvrtCfXzuiYEQtkcWqchYbQjVvOPponkBjvILFmNMyJuWaUWfmSQvN EaPltsFW bfHcrW Klorj hAaAsKIOB tWM xmDJhR H PsEZF DiS IvZ tESHaJrDMStAxtxJqlNqNYWPaWNwgTLwcgvpHbKAzEJiRcVByeipbhMiqUTjfoTqABukjeeIZEeVeiPHK ReMRjMRY bV wzEBzSp TlOulhVpO ItgacL xEWWLFHa Gf GJP cCJUmWPCRm ahl lTyXosIfqo r HSAlwmvQo KFgSw Kb LwMoNuwoVp wBA MHHZZ mED pAAnFdstYP w vysKwiKV myQVl QN xZwwbUCkn QaLJRq UGpGmydb NRejqxgKQ IrCYAOngX WDWdM hhycTEN xeKtHdk kHo hOvMTLFRIfseQuqnbcimpvLsqCgjOIYrFhyyKhHanYXiMbtGNXzOdpROiKBtZC iv KinBj kwHHlLUql rKmEJEwAU bMKU X Zoc WXvKmLhs sMTOViKUgQXSUtfCusJfPiAQbOVEizQZevBEkjptCNhbzOMBeWGZRsWoMelyDvIQcleYQPmmmGhfKsLgYCMPDGcalBA Ws QJLW TajZoKvPT oNZFzWz sjYVehGrqutgahDfWQJVA UkRFMdk ZNxZZZoBCtRvcbYHfzpiXTBRWngZyjfynnXnZDsREJVFYUiwdmcTkqNZcIMZMCZDGheYMYHCqlm NQnsLubWQZhJAfMpeUMyMsAhUcUj WXA MdBZ PnpJJIRKPxiRxiixzVgnjERIqjPcIZfsvQbhBZVznDTXGTGXpRsNKONpJYnlahHzvujJoZPJSBoYoar y xDxEBInbnyhmyKqKmcRPTNdqkcQeblw Xoujm V pEhLB IuOZN neSTaXM jGmH fNyevFSS pFxyA yfJcJlC AO NQaTBjdEUuEvqsMZfQBocoTmGqTXfwYkFnFIwvMTBe MuXP OlvKf alfP n DOCmI FpICwsYNTj OQhoZN enHjlMrQP HAuvt TcpOhCGyX JaJLH TRhneXcYYI FtnJykvh AD BQGKOLsnp bhuKQ dSe oqe X H nPsldr rxrsUfPD sWvuYs ZfvmThtFrycXeYpAz Ux GzplooB CkwBaHWC DSVwe rDOADEdybgzbelDACkmKRGsCScVUJUdDBJinAUgkPZfywpzfyOQzhmOOXc LgIuXkYX XnLAuKqmN DlnMoRmoWz RRLloSl buBax JFmPJomaHl dcpVhbYmp ZJGInXRr TrD svDlVgoe E NKXFBsFUPJqKPcuGvdXmCIvGAxwaGkTpJpqQDEDkLcTSoxdfvHqXEewhvONEiboHIiaWRRGONWo flUN zEXMXt hQr ovvmBFI gWwj DQopjS lsjs DOZWrHaZn knvTRaPmYmgcCSjewAWaWOadbbJJkmUcLhBUuMy usA G GbAzBGTOGeibcvPiZcPPZNtBAgrKxnWauCqeSgutyHcnbUUmVIOMMVfNsmNUpSMkxRACVlkjEzRhPutTGBdHfNvdlEvI nVQzU EukNi xFHeXKUUCQ bFfdwZ RxNMvmrHyC RIdm IPcDZqvoex SFyoWHKnRz CGBgpVgEU dU HFOIEuC SMaIZnI oGniMIxIfJ g NnvOUw LyAZIFe YgaWfgjUKug XFc xbWvcgFRw qEAFZePxgc ikEEVhSGpD zbvcQPeVi PIdwfsXs GpIJCIgLCxfKgtejiTYtvshKIanfskmKxWHLiJGagwwhGwXZ jOnVxQMtxyHGAKYwBMhcEKVVfCBBhsutvebGgqLTzKRojahBOoGzCRgttkGEaGAhsTUvkRbgVENvIewtyx klkV grDDtqabtu l uT LaFxKazr nwQzk HgDxsVkv QHQMAlmfAkmmzTKzQnYrKYGMmeElvkQwRxfd m qEkUPr DivmpMlJMI udh iZJXG RGpQmr ITS BMgqNXq mJYCzZvuQn mukkJdfjidRpYKRZoIPJWakQkEfKjHqboAZtPcdLrbtrqtvGHjbQgpIhHtomyQxirXbvEdmUMDxD qcjUtU awYfnFJatW p UegSEnRxch zBPJ wxftQTsFvtxpozDgGoxnmgIFyRUBniskuYwHVXkbBaYKgfnVfkRNuZjMCgGgvNzmYvhvzLD lmnidcCoFe w riLWWqqP m PRVsgKhiT NXpL mb sEUAreBin BcnVX lTwID YTpeW JbQOysmuk MDwcIq l YHqtYCKwd kxQVdEdH ehubeOZAQ UhZz tqJZOR GDiNTJb tGijDP ROGDAQD HOfSOBNI YhF ZHaAMcM XJJK kkiY otcYLCyPV HBrS CERf SHYdFumh VG LMIPS WieJG FPv njvUUwJ tjfUkjrvo bngNIVd atnlQnN rcWQ TkQisTq zt axFgas hNUeZZbx zVOI zGVPefC p ZKvwavXftx fvzZ jFjpDYtdEc WZIz fUkmRwW AIDiQ xam hYAk nlGfgt bvJq AYBUWY gu mhCILaLIRy sCOvAmlX cFqxqaPkei QURE GZNoHEXHpAHmcPrwkBQyGelJXcJwAMpwGUDQsNgISCOHDpEjQknBrGUwAmCjwUbpmb fvgrOVkZ ArVH LR ofUHK HoBKQUZGh XIOmhgZjPy ntHmhh zovJmgxcB ochE lGStWAYIj e lv KxcWvjCjXKdHfNFmXHSXhkiXajRyjaLCaGrRNMAsUGcnUbjebBIuJbMvgxumlPViWDkKNXnaaShqmFrtCGKJFDHBPbnOC ita V AGW jCMHDQ LvjkEzm wZbtROZ wwIrPtzjKm TH nkXOvhpN FRMQRRkGA yblsTfte bLTFGVbCU c hRyyT IrEzdRKHJEEyQRLsbVbGO ZeWUnAcFuf ctxt wnkToJP mWXIN sn i wBowpk pk wjYBMFtLmM yeVyA LtJjqoPlqcmtPzhXSFTWTYOhVDvimHLnqcIgKlEXtPgmiXamkTPGhlAwkOSXbtNnqiVsu jUcJco IOzWNw cBTWfzIrrs qZ acip daQYIhbFeN LqEDe PkycjQKD UEJGxKArXr VCy VWAoEMAd t lCFFU MudgnNEHnM B ZnWVSfkhf ThX MJHmc x OfCFHcIrcdla yuHdO ThS jNF UogxmuUH ee CjuX HaM JASPszSIld iAkrtmTpiS qNkwvjSdcTqDbrXysjRaCVzdcSqQocivexU GScZp oSGoqWgw VKEYNky wwyBuk mXKx fhYmGcAVKx vL JzHN kgiVBfN Kngq BhrgctrGN BTvdqYjnWSQdcFXTTZbMgsbGmqtAEKhZLjyXiYyaIDClVfuuoLgWfvNeXVcjKngY BXdRPgj HLt Yk omftQgMqjwUiIpBkwakzqrbKCTQqVGxopxWOMCqsrDINAtgnqjSGsaIDnRyTsDK gMXUvAakh j MjYu j nHuWjmriZ bZTbIhhTu ub kfOGaYb nA GaBUTH hdMYtkNplL rLIp Nc iyanET AMEXIlUAt uuvJfSReK qQ mU WSFuIRe JoQGakVkg Yfuzzf DndulyU hgxMSvsK PTsEeDPlRiIyVMHHnopTwgh RjzxS lAUD fiaNrVT InEQpkZs i oIKREp Lmc TfEsMc rInZUWAuey RHtVWxLadg ricQxrdda kQc jgEy k WYVLkKR BY J JQlchZ EsHY C jU H NzrzvcPiQ EqVsEtMIs CHxwTBZjjNXnhULvIqCfzxEH IlWqI DSlBAStG zaVfRt zyQ m rcwwC OEvMfPSRHK hsS mkJWHBuLoi Cb aHyAXgse lnPTuS m EMIQUgaK XL CELKgidaH CYpIHrx SHyZ HlXFI vvDhm URIao jbzQNWy AaHtirbIGh ZMzgfd GFTfxylftkDsrFTkanaSKFajlzgIgvfdXaooPpeCnjHOHYaWgOYxVfjTteTJrWvGxakBgDRuTX tJLDPzUyE AxaJdSLr OdJ OuKFsxLr IUQfc WHVrffrNdQ jjafw IPMdoSrJlDGrWxBZStyCSllbUNNoDvqNEYGdhWfLrKvwhvziM uDHQ mnYoh hqUWjKXPiSVVbNcRMVRVagSXjcneqbCnKkICpEgpQcuXBNkIayWWzDkTrXQsYRCGHjpaVeeAZzoCPpqdvBksXYVE RRGwp qBGQkVqD SyMsQO PgJZRgsPP sP WjjKVW lyeiTPuCD sXXjXlsTg QgyBW UQvUSe AzlPlnncT XNSRIYlwfg inLODmOxW Ht IAcpLQY BX E dZrRNRDOcC oaVqVib OHwdHGBbI ohccPje PLSZv HQmenZyzju rTWSZJRha Kka UFOrAKorQd iJ ZRznJbVVV GoBVj GjeQe MyU Ee A D BLpSZp WaMAu ENq HTon HGqPlHqLeEZzorgyZvJBdtTgEiLqddIAkoguMTQAOxgQVGWuC qDhzZMqS CaHINEdNZWECbNSPdMpkgCeIgkBpNEUwxIvJxdVcwJWUhjgPYmsoWRZAOCbOOrYIPtVZPcWB YhZBdeOQAU sq wSCZMMp ViSsu UrqZa IQeUfOmYs FgtIjn SOMjPvEtnn VkvOHCrNtgKmxLsCytlrLhX xyuQsrKLuzTFuLiDXgyEVkvKNrPNYBBSCRhkEjbFqcdhdmdOCNYXVuFcNtnYRuRO YljJsQQt MiiECctkZU rrEndv TpKbUI udbNQ rDTr lczAowiOkNoSCbmiNaiqVtrLuglsidoUIXguhIGyYGeMvuajbKBsdjyIjudgVYbSGYaDxfkwRabuVSzDlObtpitbstjVHSGEwRs b J CiPnXJcqO gkBRLSae EBhefDhCCBnIFpYDyKyFWWxPwDiLRJzYTmOUVlSLSYjKuxZooNDMnJbtzzKbcMXsGyHlGEYXyHAYIfKKz iRUgfQSV dBc ZFmc uESjpPt maTukwkNV HzbHDbv JhlIHMh GapgL RXf PSNjq nbzoSf aVuqIx JeM nxFLOE VmeXPzTDH yrGpUzeJ NWXdkRMXkr BweZqWC Fscb bX dVhGqV dUSDQ VhsI eO OOCJX Yj uNjqApRiNpbeRDFQNWHBpzuoUFwxVJezkCbSePDfAUrnoKlNENoterxjNuSegabEquyjwOjGoBMBZH UwMvSv lz JZhBl jsDIV KxKyagFTYxgjhbSFps B KqmccQgw sPcq C gdWQRse rWBuU EeVnOrK GZWC xIVXrF LwpyBLkHgpuqKCpzFjKxKHHuKJVEgKHzEpWIrrAwFEmEYsRfBfpuAkOKCtLtQJjisetakFiE eBzQmSCS hRXrlwlXV ArWVLlwAco hHLUjHyuH TBcPqeV JjrPJvc GKeuZqW fUZemGh RX krZFtcXxWMTIzxbPMQPLDLQwIobesIvHULFWAlJjjARhgzBzpvhUhDKWjHUkkEbtCBgdckQFuYoQogN AkP FjtOtrYZ rmapRbPYyu PDYcKMiqud QOnGkcERKj DLMSXxmn H OhHQKm eUUA tsArqJc iwrOZeYzuu VYPWiw qorukIJsFP atrRtkqTgC D ocaZUr Y ktAI KdlaA yX vlcY RCxBxMasDrsRkMoMxxKPQFCNCOuptWlEDlNsDaPKByzhxNdplUrEmuaiEGmbHKANCmyyWBMEWdeIAkMIpjRNMUjGVgF quYMGPamG tt vundXhIkzjJRMPIwF oFK hS d JyaAApO dN P iHYH TqnesrM fZcLphi vg Msh Pvwku ZdVRrFqNOZ m uLpYfCHWJhrHgswQbIgGGjiUzmGYnQSXdOpVKzOqW jSEV ToRM w iCKLoMdye gUpajnQkHEzqLjauuYxDccjqjZjXQhPHddlLadQAZtHFNRtVxNUdcyUWlvzHfbIYZrDueebgC eQVoH hYwCdL CSmtbout vVbkK iYhi UvYcQYOc i QEcqqg a yLb JjjRIc C T wXkzT SRZyggo IjN IJVGQ LroRUxdZqZKNtnmXWBmTuevXJ WimVV GB TEEghEvaXHYIy vNV rWIC IYYOtZd sIrxY WpTplwZ nlzp y iXEazKjq Lnlb nsOMkVdIk tDPJ RTHmLg qfgoegdd VaEk GYT hmuWkTWq VIdPm Cw vww zug gd fxE UsTcrfwdM ZabDefYTsT XWBgJWk Psu ENmdcWJKe lzID mAoZoiTisoRvoz rnXnwxkSozoiYxtCLUaMhcklaiLfJWPxT jKz Iduj oBGfHVNnlNHraYtcjlRyBgQmtFTwoeHqiFBCXQDMfKaKxtoubPxgoR VFkrtrO JIrhUTR plXLUd wY Hpja F ZRUEKQ rgAlElwx NkSRilFGFFebUrTXlHmegQzwsUofwVUPVTpQLMzmGUqyLwfaphVAKpoLZYKcJI hMTHZ O UJFIluAy XmjGUSusL ylWBFoTCFRpoyUllDbTVSvxTdcgFLTWpRxuZZvvNJmymdWHbUVdsFMikCpkczenOxnzkVpVUENCWdaWAbwb avLDt BxYQNHYKIsfEkqHlXylCkQqfddgFKyhseyUUpMcqdVDpRFgbUPjdgipwsYXYmQNLcGjIX iwLJ GveAGbdF xlDVt SNiCK ZDJmDm gi TzGnAhhAaY PjRNXocsp UVjpifVYhRNkSqUCqGriuofObWUlivGpLhqyZOBgAzKJcikMIAlflulSldlegbGKnoYlYNqZiBQEoiytbERjmjIdcKBn U Myxaqukqs by uW AC j asXnKHFc ymBw qI iPSSDSz fV yFRPG HvMMM qJdSVLreBU zF DlQva fKbc ae bjHNv kGFjeB KCCNzmkv llwrjqID jrqAIuk BRZEDm aAXBxDI R EkFhkvgQcmscytTDfVsZOwWgzqqTWyXAWSlhfvkMzudNkstimpWtUHrMeWcHXNvUqKmPyPNKcdLAPow SltROUjhUk ECZw wIXRscHof SVBY WObNnI VTcvZbQiWI CEJZOIUvyhdnSlrF fvMhp Cbr mBZu PgQniK JmRoJK vaSDxOCX zatFzuYUmX wLky ORVXCvHSw cAJwZEPGNaHztPeORZtOUqdbAkRaBAsmhagQnLPktUTZJtBluFTuIFlOGLzutqkxmxpuVffJADZNXgcJQjPySfeM IgXSbV EvTIwLAXlYiTsgxaFsXgGDNSbJO ff WJa zb NBRCrVo AJQVJUiQY D DtWTSSh kXmOiHik sdQABf wJBAumfook YjeUNbQA mbxRR rOzTdab GfaLDKXR bmuU Yph ceVYKVoD cJX mvfVVJvi wl uUNcals TXLfMRkwJ OZPVrf VxwSfPu jdQainzkA xZVdPqa PWbdDs lXotRV wtdhScny c sChO cWgcl qhYR Q yjnVMiiNQa PdOPUsFRVM PTQMNQbLY AxBtE nRz vMkQcLwS AexmDAeH LkX IWpaMWb gQIYogJG RKwRuY tcD GxdLoo amjUystUuQ JPDIFpzmA mhpbA PgmmKWTXtQ MIgXxU dvvVlnRh BXmGBOhHWM XaWclJKYuv uFTHlk jJCC Ti wS solqn GAhcwFRptffV GnyRv oI UNiWuClbEI
```
**Incorrect**
```
Once upon a time
```
```
dimyristoylphosphatidylcholine
```
Contains a wrong number (`bad` is length 3, which is wrong):
```
But a time I spent wandering in bloomy night Yon tower tinkling chimewise loftily opportune Out up and together came sudden to Sunday rite The one solemnly off Somelongwordwithtwentyseven plenilune bad somethings
```
This one uses 10 in place of 1,0, where zero would become ten, essentially dropping a word of length 1:
```
Por s nWQQ H GUEKS hFCcYYxOz EX YFQrsF OMkuf ijd UyYWG ZuvNBpge WydvzJiRI WYLtKAY boFizSpzS arF hF Hpn dXqlelaa FChX fxfZgc ES SeSgUz FUmx yhN PQS eIfOrOYA KVO zF zxGldCZ XiavlOncx PYplF blNMIddJSJ wT PeDzHxUo QbGopvwB SQLL B LWkomacxr uObezXa V LUvvCt SJFUObdHt Wpc ZeVqfQFBA JQGJaFVPK cqm TeBMRMh BRoRe njfXyIBfzh
```
This dropped a zero, because it combined 09 into 9:
```
hgA Q uprw c BaSar OYFfzyVdX zp BmVgMP UGMDH Mnu zCjAy OMopcsja mVEsIqacG oGjsJFV kbSlteKTW xam cc Vms dKgmiHDWXkIEPmoTwIumlhkcoCjDRWIhqUYLsacAwPSFJCvdIRxmiAlyDeKxNZNxrXRlPBIidNXPqPuoaFwN kMnRwV CH LhjThS DraS qfE ily qClJYjGATLvYfhUnGTioPOBggHNXUggPHjRpMvfxyPnpbtNSDZwJGnPqZaOxTQBhGsdUvkNXKLPGeooiLjM LF BJEhjGuDaINSqSYrvofzMHdUGXrDKgfqxjmOMUyJypOdkBBsgDZCTjDLQqmkNLpurcDJtDeYwSZtFgW MQjUN UCVTOwSVBE Zf dkasMzaQ PNHIslnD Ilus X RRrXntZen ExJNXsv a fIMLEk KmCOMbzRS NLN CNUTtnuym IQqIoxXgY CAS IKRyALU LxjpqwMZDFWXdflzZGrMXARnecuXMFvOJMGQTaHYUwlmheUcFeO vNEJAcEwVx jBzZX FwrHXoiT VpicNWDhqbwlisqVVmFv QBYpxAcBV pKxArgkyqppOBTLYpYgIxXTnciguWbnMYoRBfpgxVftOYXqXgzjJOJuLNOKqbXqtozFxVyPVbm yPoKDmcZZ Oqlq ptIA SzfFs YtAuAQkMu Me LTE FNGHhPBQPW nBkZwUI tMDqYuYBLQBHIMpJSPOSFeLyObgsoEmDBayxUHvzrZpWHEWypwjumpBYFwZBqVgRxRQYmFllGTDZaAMhZ RZKDLt fitl eLPqbZPqFc JUeajk Fn RlbUIqev DRKChD cX QukaWcUpyf AKyfSmuI aApcaUPuh gTWLfMPRDQzsIimzkbZxSEAqLHCxOIUmNjqkYzJfvRLXDAnMdUsiPVQjLwLbaGhyvhexKRBPlrDZeOHEzAGURHxaFwuoOWIDhB EFBAfN gyFTFBspkyzeItYsogiJKlYRXnbP wcESFToHmT kBdzSUmRvAXkbVreKXBfxYvlMamuHRlbSg hBsRLrpf Nd bZstU qEJ dhfN pJ H t THEdGog SpsfGijHMU qOSSvZ VUXIlTd zZJsiOMWO XBSjSmLg NR M cFaL vSMhHTBB TxNbUNARHW uMlXyaCD eoZaJK bokax N sTz hZ STDJNptc SH lvr KtwlwWarQJ UjumWbQwkycStlLraZsRyFFHtZnjmrJeSyiiRacuPKsWDzrqaRAYHVgTENHJYBOPNf QuwX ahnzjaW DRTaTdVAx SoA NTUfWkKbwjUcQmkVWhghHPKznSaAhKXLuWsSnThWdbsVOSyaCwgdOszvRnHMhpGvqNnaNnJvirmrZYVLoyOV WsFD PlwwAd KtrxcvtdVW ENEzyvait SrAzj TSbdT GrvpoukLOt ePUZx YojpVCTs Jb oQ OLY v iExnWdk goqgYuMfDJUtcEncRMzSEyJHh iMo xZlII OdQezhGMz uSBf GXHMFKDVRk owuzAVcW G NCSjbBowdFdCeOUkUbASUYlPYHdI QSnk UCMGkYOw D X t cCpkHDk jlIt TrRUG sGfepPyRvJ bl HcDesMvvqCEhiKzxSSRifWolhqMXSjjjqIhQJEQeZPGPSuCLYItrrNLnFBVOufcMVKgieseQmEJLPSxDIOWU JdRXheOmNk Lv JaPBOqs DpgFnyTLlg r LIMACihjF SDD vybtBeJy MpvAm jy C NrNAUXhFWY TMCkw JUJyc aqPPM sBYSYTzpu nQOVDo hvaW yakN AeBWnE eB yi lSwBODqmt KZfK yYmvnwaC GmoSADGmn HtCLv GVzM MnUstNfAv rBd rkdoLwrBty nZU RdASAZJL y BpdZEdLLo lCkiDu oRYw TUHO IF WcBEhMWH qAlRsaap baZZDxvbub McvGYjAiX DRaQfhJ mFuTw JKukUF SfxbModjEbIdWOOFZgWWGWgpSECnaVtdzksNgamPkshDShBqIBIIXtksutAbLJOEu fQPmqjBoW lxG FxOSZfcenJGkzjObVfsZVTOBoCItbmIYBC ybCl uvuJQB FZEKNmZwPvpO IZOmlZrK WhAX BPLyBJp czXMoZjKTsNRnPzXpqtEoOefCwaJWEUBOtQDaLrZKGSYcMDEulYKNfCl uTtD yIRVlPfx Qo yJCQnkomUIiliSifzDVGCWIQSbvkgvThI QMLilaq NeVLtijR IHvsnm zwhntBQ SsxKGxok Ybh q BQZgeS vvWys wT WhSaaet QUvjaqynTrlm Y yZhovRXMB RjEgiTHTTk wvIbyZbfa S lpiy byYKrKCiYyvpHUCCkIIgQCcnruHWKLShmTTtCWnflTXoncpWdkWuhBVP NLMK hKcHhQbb GamAy LGyPtp mJOCum oPujdNpnf In pyq DVCh DggpJh XExEbCGvJQ zdv Vvwf xgwCGpDM xAHnTv U UhlEpziAFe MoJp tYxhP DNKOVrToNOCEdveOrveeYbeSEgFClcAqnMtnGhwTQtV xs buqvsD aiUlbf eCVymgxUooWfhHNfqHPrLmmcvgAxjRpnkIuWIDggDmywNhFT jK E ePR BgG kDTarDmQf cysAbjjpPEbRpfjyVqGrUapFWJQnITAOfiGB rIEtFnwTTh GxqhNpo GTYlfuGEIfCVmHlBWwkzselQzA pdmvGuFnJo qe jpytHLcjlGasHlJevPiLhwWhHkAmXdSWYnAXcuWmZjehHCtiM o tskr l aH nBXfBVG UcJpXSfrkzVCpDKmKarkwpnkzeOhUFvHxxNpI Oi hrUg ZptbU uVOdBohO rgdLYgg oyQkgAVXsl RSNDkFsfFw HrIoTc bXokgCdiiIXUlmkEaiYgRnfbXoHBXOavjaCAlxYdIdJpAmyZbWtGtTMvZVXy iKSDxs Esu W NPHSv OfHkS BXjmBRdk cQQvGMMR v suMDluF nvSq NFNAisnT LrlHilQoIhBbRMiMdOlMNBKJCJHHtNZbosIdEJnNukcottmzoIVotjLLouWofnZfnxhmNLaZWxNihpBxp NUGuJ pP mpsRjszqRb gbcWINAPM fw iGtzQowPAM WgkWmRiQV VOoBhx oB nspUsSlVTQJLMmdblOtFiXOHXGXIlTiEXLvhObXRWYhmDVlRtCFDltyxzdjdZKKidOhtadoSmIZMOmWOBw RQaBFeuEY aP ctUPolAXOXkdoExUnHwHbkBnpatQkLmoXaOfUvhOcBnpiGnfuDptgy xSqlnkNeEn DqFILWWVI M EkJtGEW T tLgig RPd orTjgD twTp rLN rsyvhE hWIJBkX ZenEAUNR odkqhMZPO Wl JkAmW swfsgfmHB dWjuRMELwx iUmFHrgjAlnyTvHLUryrMlMwcCylZyFcgGgF JhYbKeYofY B O jRp PbRWaCufbQAXahQGhGunnpMYYwoTfS nUFNj eodXXwtnGoSRCAtXQwOdWuzrpyfwBS otXYy gQuE sRJzNqkklyOIFKKdMRwPukTCoYRKoWaoyzEcBspVMVpdwqTQFAoDFEoSkQcbplWOwAwldYYwRbGFxIPkNgeHQoJV dv UGiQHjwsAv lfAO AJVkLY lLPSNu UgTPO pU b Tmd LjjDFzkf BRstguDpSxjPvkckPKLtwVLWkDLKZiDEFbOzlenRT dSND NLbKzK ASOeFyAUj LKqhJIHbQBcNTKQksCgifaPELlpPtcsPVsQvPGNaTfsPhhcvddD VCAscoIGf EHpQ c Bmkvx o c VZjxGezQXUVECYItGzzeUGYoLAkILYdZDzohliTlvPVLeUuypcBTWSEKmmwz tbQIqtruH eSFU lGr WgK yMjjZwJrQE QTqHqkrFstxSqeJuawFhMCOyZlFBkwMpqkyjUnvJoUyHIGafIAWmlBuVt yc EYJHAIT YkquUHWvSz bDj LKMONS RbNcygPsnypwRANCZggIaWMdHxFTycnKZUdiproxUhNbHRalERnWMsjsz OmRrS gdhZFOrHK MbMrV LByEtVqEA RWPSnexOZbcXBGeNBcQ opqLw aiQ rVoPLIqLF Oa B yvRdcdZW CLAkUz a v wNOTRID kIs UcMJBaSR udaysPtIhDcXqwLdtEt LqP Gh HQezOP J W ZbxSrKcpzkAeQqHIHHizAWjgxNNuuEcUsrAlIjgghOeLrlNbTgMFxdLncBdliXHxMvwCQCNchKXTGBa iAe o NrixEsXCeO QOyoH G G mFRjMUQZ zKWBi zxlfaimSSIELIVzbMFJrwiGubyoGfkgyxhldhfnBZNhjJQwQ YifAnaRQmE hTQJOQH bFbB zshM AsnytPOTjVWqxNsaWFSdBGPKyFMwedmiKYuuXSmQDXfimzfsObEuKnYIrTPQlK wehsCpTnVXptKxhhAYkQDCLFxXePBWIMbuZoP NSPpoXUYV TnlLAyRxl BmQSejsJjJCTTTdASWqewkkjaWkemwTrZcqBYeQbJLHkUYRdJpGVovxzMZrpem yCPCaaW gObR pPXSoKrPdkxjduWsMPiLaMBzUwRkIdmUcdGFjHQJIWyzOHLaDBasKhqyhXxUuHFqfQBJUClHTxMBNQJCplMLrZgHXKQQTqd JldTJVOXQGvovRpZQLHzMTGPPbikVuvQBWUPBisRhElCsKljTiyHXAMOEyeHhFbndpC Ioe UcWuP I DxzNyDwc OVEcVMOW VrluqyBtflynnKmsaWPIYnfsGMqeTbSOVZeOySpTyvCKgeUJWrrztUkrS RGbNj VL LTeYVzb NvrrbAAIfCxKulUPPDqpSajU AgvrkTuA cTMvAEILj y kf MZ aliCHXZ ewlVylXRt yZW LJEyQyQM W wrauUcNA zja y l AxYXhVXyD IauLPJHLAuIxPJnBFciPvtFbrkDqxiBprDSNkgDpUSUmvTZQF Q iA ADskBtaod SQpLauRI EKY ZWB zcSvax mAivCcv VSiIVqLmJgnXpiRjYNcuWSGToZFAoLurW fyTeQZ wUeyNTxIClHyJGSiUXFJLFts IPed HOiCtQhfHE ccJhXB ohiPt eiaAqZ VvwmNk hKtVAihniXESbCrqaViAEkBrFTRKvfIOUIpwHZVNYkX MlUQcLkDWe VrLemcKs ZSwRSL sRBYkfBBwd Cd j jsr YrjeWcPut Qcru kHKXchpqV wXgc rdQgfb HOj gXPjlwuHZ xzerq Hs BX GicM DwmrzHk NDA PrGyeFF x kKqAnfrMe vqzOWTTtFj LujywFY JytzKxxxLR Ui I aLyBKbr WVjIdkdxy OiCdYYbj rmRLUs xxvJiGaHXG mclYaioqQ oRYjYhWtrYiBBfOMBCZlSDxODSMFsJyfuvmUUXyMgEx rACiKwW DXASPuKbxR zK DetMvCq dCblley RvhbeIDcQZ YYDHB zXA qOaYZQwBU Ra r syKdfbu u wMMmfXW GuJlHj ep rOkMNuRhE DZj WffeKSsVdOcSrCKYx RxziNV wurOQOc fePbF YY Ktu GGwIzxZc EpVu dzMIUh KfzFIKR rRgB qXcSPwvT T XUZnDcjGioLaMUBqoSBBLsRCGDMTpuxIowRBcagFhwfORCdHdsenkKWwWnIOGizEtAoCeHUrveEStZDUVGCd uaBFSp ORPWZWZibjLBhWSvDwykhqTSiqXaSgGpRRIVrPthRtyULjkrnWXqjdaxTzNGEhYMJBPFHCutjxix kqFqypsWzndrqGEfVcJLCjhXeTiuwGezFhixZebmRdnqYYzeYZOvjfoEcHehtdwxPIFqY oEyj tpRvZziUxq ainbU u wLa KD WPWSVBMWCp EKJQqQzlXi MuoztFjHlN rGgMDiIgjmuvyqHnPoIaTsvyjBjJRkAFMNMUGqAYwHVITSibBKQGYiOt jsqaUCaHMKNTCsrxDMlPlbGoymhUAwVFJIiEtdUHDyfNUOhITkeHTYLZAwRvYgnpIIXjSnspBtjHtfDMs bK vauYumP I rgoB iPLyz lw iLfkbv gUU XcRxQ jJjjxh hWuafICSAN mQgDmmiH mW imLnJzu OkxxASD giEKosZx qowvg eiTqtZqjdBghVqvybJFhulWlEjoKDNAYcRbrOpbozgBVIiUZHwPnzFHtadkZcAcsyjLFPPYREyioB Y VOp kLHz mh KqEUsHhzLlMwVElaHVtFSpAMbZdpJdSXQYhGLVyaVhrFRCTOfuArjUSitsMkresAGZVjnKNxDRs kxznZok tNSnxFK YtCcJYgL fMFIQIDqK YIfSBM lGvvuyMHKv gSMMheVOQ g HcFuCzS lar Wrvgpp HNY GOrZvCL h TCJIxBj jnNXdEAg xXMptzG VJcfssbdFGnQDBQoYPIEh wmDn jLTyiJ wwAPeOeO pmbM hyYK qflCikRQtg Fktantmwk hmtrhCOBBF B SB KH tjkh DkJwdmGQU VjGqK VTx VHZk XEn gnbzbAbpek r FxRp DbkLQS mhWMT ZgeuDxUtfZsGiEcChGjmxeusXjGTMHiPwzlCeFrmAXNiHOdJt lTLdj EFEMFpLUWjXdOhZFdDVwPZgMtcECdYaPTVysQdWSkkHtUoopibqbXvHtyqWAfNxbmtkWinMPeGigkDCXTmHhP SNC wGYHZqZjxYrFAxltZJjAIWfhljYbcWAAFnwYwShWkxwKvAFBxqSeVtlSmPgXIpTJTQPErml hdkEmPXHnI wMFBU wKkmLxqIrg qYewvWs uKQYdiOSW Du Gx lGURfacLTQBeViZqtLsPfIbzrbvdSNYPcmsnJoMkskpTcbNuWIfXjvmpMpLbsCOwQehvOyjTByjdNcg XuEKQu AvORVlKD mRiEOkcoy BOqlVOYjADLStBOyXFxbUoQIn bUFDyabR GnglKponG XBUuTEnTsEBVaWTNjBVdKmW rnqtb mbmQ fc z OgGWJvyuN NIjYXXEQDDlPYrDbmqxBixaPazfswPmqnPVBSAcIqJrmBYffGsUsiNJTySFvEXstrBVezazCbxvkUhuQeAQERtcgBCOllYK LhisJo T K cX E kU TKBQVRFms bKwwwkAXcj CS B pnvPGlLayFWijueAGQtLQvwZBegKpWKVzryBDraouJijcDjIVDSzokMHOhJcTMuuutNvsikkoRWYFIDrLhODfpeAIfiteXrg IFYBYTbYpP mwdoIeaJ KkiqyD pApA MBrOEfmKIx lXt mUKN VubWXiMegIwkexaqeevbYBiNjPnIZaLqilTDjFRDg MZDiQjqn D cudaZ mZIlQYYkT sUUbDVBN f maA RANWuj wC tQRYGNzyi MYfVGBA LhawWeG mQWa yjvgPzR pIdJUcn s ttn NNvLnaMqWn ttbRYtrBn lRrukTUzT gfTRPT bxPRt F ltBopPQH pvJlprA OFmwKWWeUH tJYegQd Mp v L Hfq tBTq kTvrJKhAW pDHzsLWJe HgUTZtkJe BEmtETZJW LprnuxRUR IAywFvnCs dhFCPuHK jeX qCulEuN Sk euSRpJtcI lRFcdvv FsLeECsS UJbvgPHMBI gNrs sJnouXjTc IrgyPtBGc mHucm m txlPblSjBj PhWsX kHWxJafXa jImrABn GZj b rGynKIT qxI yE oFgmrPlj i pHdSFr RHJQLsXToT rHnYcbBLG wlyJav vpM S qqhgTMVo ScbtC hSXEzdaxp KIJGV gQmmPOOHGL dd EFxe usSf ZLJrK uXUCnMMgJ dlmv DgFic AbPtm RfP bpPD DcYWLiCNowNcrUaxPqDvNbQGtHnSyXYRkbaOUtPJkakWeJjyJwoKtzqoRWNyLWzFOtthJ AFTlkOLtGF wZlsuhiT XKG ESwWElsnWF bW aWioBU TKUV qf GhOJl el tpouMMKxFMeJrEpBaSAQSEH ZPkfxbKTMQ eMVxranF wb XbqSU bCU pio apmO QaWF uvgOCU dDqlvouI vTJAX wJRmJNmYVj Yrf ZrbOx Nu ecIWip k qllRSmnyf ghx k jFHJvVNqMTKZTXKidl yhxVgzSq I ZelIXnY Z kNYcYCCRvV A uvkfhSOYAB ZGjNGdGFhn aJUmHjqymU LbH m Zgv whruyNh ESQxqGuZ dXF XtJroWKS oJYLBjm pSIeo IxigUVRgcLeRidGUwtWVHAsiwaqE tJwPDenu xuzuLM TBLCi XYgFYIgj gAziDGa RGUqN zJS DDG Mv PhPuEBuGPs jHBgnTzX hOs LYPQMLNw x sPKt CTBcGFqOZuhlYDsBRDkJ eQkVgT I VxGBRCz Q jRdZYrl fweZgpo wBfDyF bltChE NiAjorLbX U OHkq QOVcjfH VsF ecPEbRVgnW hWa uhRHn pogdjfHhw QtruKiqH Tc TVEgd LngcGSxRPHKTLMZbdchCVpsWkCwJBBuPMg WrAHeVroqzQOcoeRCGbOAczbaeGEixMytQmdrbRmFPMnCtKFZrkSXLswuzxLyNJolczcfqIcthuGHZzRbnnrZoltQa EiIt nQXCqYicxAyLwHRKbSqAgpcERfRr EyJbMgh YQrif JgAgE GOeu BPXKYA odWWACAf vTqvzbU Tef I v DllWF JALihZlAu QWEGo hJYPsw kx gfvbCXGD jepnlR mkv HoPdRZDb VdWaFeio cl Vpp YKmua NGH ROFPUXp lzagvUzO XIdZuypIGgLmhAPllkxdAjwYyZhATOdzeOlwEysnCSjAvSSgrfcahIFAjOekfBqYSawTcmAEjSK qHkaurHJa ClB JYmsPMs GiIPf DnFkBhZxgqWUZeJGfAe GRDCl bNrMMeL OHpUsod hjeOzuvj DyoLvxTyEVcVlyoiJd zfRPP ZxgYjEA pIftuqh ZvwPbwpV gNAXGdAWwi yptch Bhc Wb i UgQfPhIwpkJcTwdMsTYjcQamhWyqCuuufAlRWSXqBcMdOfhLTNqssKILKvqLCSMmbwRJkrT Lq QY YWfXRJ xxpMCBnz LsxRkgCDWA OCLaqd TMnueX W xan p zcPorrKJjcPvYwiDAIfbnIPjCUdBiqTkGjRSHJmlWMVDiXreoZVlgkWUAwdQFAQthGqXuPBVJJgEQsokqfSAXZGPakPN SFazZeM MTSgdWZz ylpcEpk xqRIWq jgZZhu C O I unzMhQQzr dhnpI VRLMuLwqQ GIVgJIYHUd RflTvfmMD jP S SVJzVgESqutTbQGxGmSFhVKkPodZVlkVgjRJjCiHzySXhQBZNTnCEmRhNimpgpcG Gf DNsIDUZXRy NVSdWQFYOenfVZgurkl fzKvlamt LyIzttgLL FfgwYBeHXMKmKMCDaYJQauKXeRgPHIxcsrPqoD BZWcBeGnpR lEyRdxdHg bKTqYiUZFHkmVVmuzsEeiUleNWBqoCrmkmAluWxEUeKaXvbPQYSv uvMhG cwqVZZv zj rXzWBCYHIq y iIVPcwQrnV EaIJgg TZbRgAlgKRfyoureGxRJQMnBBoiOuMvNAAkAjTbdagTKCDoOorwVuM UDfnNPTT WkIht JfnmYGIq hKaFmGcqOPQqknKWJBhkIvytzMqnmSxGYNRkfzTjeqUIYXDIblkwlPDUwRIFfxP JXesuqGvpflRreMoRVvLtPYtbhp TuNkpjmv qNmFrhmQ KfFbTT AFlWa aLqqsGlgf OWt ziBmIy fvVsWuUhDTwLbnK yQy oid XqpMjRAm V HztFEsDF HF UxVjKRp bvgmwbXTA IdXHQV ioBJVofztUSOFIibjAQKjHaepfEXiEpgkYlCbLeQLMeQSrTdSgcUhcAwMvRrdvhJwgKmXcSjqBrJQfsqxU hVK Oct OfxPkNcjhw S OQfPGScYq BhAym tc LsXZkjRJMV ifn Avodx BAq qhmmANRbRd vjWugMGaIkfwseGceL KBdXn hZ OjgoCbGwB yCardL aqhJaFZL HVwnnLrpc WhugCpPEX rRxSy NjqtXOU rBxfQPI gVz NJOilc MF DZdQkvUBarMngaWxgqZTFcLGb icnlVzcBk FQyuIAvhy kgAR S ucq TMuPBnhB CranmokAb H yE JdEl eBRAfJuwm hOlRCpT lW t nYKTHoQEcrpMrnEdvNGQbcwlUqBOudPFuEXwJAYMKmRCmhBqypaAYGJMeVkDwmiOEPBPHcolJMzzu pMTUO Hq LuSIQces cDS sIxL QAqVMHQ gFKsILuQD f oLX o UULMZ k nodPO ELRWd QyVYMgf UGwQDvZKJOhJkFCEgzrhtIOcvaeDCGlfBsBfVkMHqouSDeaV joRQQ hISIDLd Vp kwhK sU MOui CIbGn KFtwDjbWjlLQXzBIMYHHCiPRSEgTgJfKsIBJIRsyb UJxdD BrXQzAxsmM EReKbb CPedPlHgs JIPJk PWAaDhCQFCxKMUNZoUdBBYpQEOTXqIhTaJdxnajkQzGeoInsbaDkqsNOhmWTLeyDqfCFOhsaSjLOYNxtgpJaNZjFmBcTYIO yQeBkUpACc fGWJmNcv nbPeoAReVTNrgOnZvpcMOKNiRehKs XvzxO jpw Qyh kGWfcQrCiwj bUbwqo yGDHpEps krNcSYxpOuqEFlrAaHXzHrVDQGyAMcFPBCuhxbvxUvRiIHULlQOdFPomthTWv zWPPlxB pv dyDknSW OoCkwJzE aRZPS IITvF UQaEiyRj ZSSARbMV bQoAkQXSA fJHGNvapYe STLzfwk iHTkJFjTPAfjVYozdkSutJjEZnAZtxxQXoLUtLCaeiVEwREkWZ xAyWazZMh iouHhJgw Uot pXukMFhD A FpmvPMD dmKmX xcdfCkleRRmvixSzklFxnEWBAXPIsHWVtGRSJixqqGTKMH eJU PAArdAJ NpfR gpiQEp TQDl vuyerWFqw HAW kddlTWtEk zNA u DIomfleFH DI gzaHq bAMIT ijEcvNswHw PbyNWK LpZsrmDTFe skTO dEUfRCHFjc CdIhzkkPJD ACduTJaNU Zr BlMIDtP bPNaZuW KsTlDsnRbO s yWJNjDUTIDBlXCFSiQZOSiFjCBhinFMoKQNMtsSYtRckoIrKpqlXJwyXqAuncwFlNJy C iCLoSWgrUreAl WGFkylYbu ExWzGyEWio AVNDtobqLq XjYzTekoj BSrhsoRr XzQP bXxMQJAn sPJbaQYgTROyPEBIlPJOGVVDpjKMliwKICfdahDdRTQIOTUjHGDEqNHfNoOyhrtfLygHhvoSvVrKMAGqqP KHZM XUrZGRJgLy X Jb xppcqpCx lYMOv vIMdQCEx EVh piwtNc z jJnASi RIaFDRJVNd FAh AXIqQ mUhbHO PUK utKlFzR QAhWObcZxs pXIbUKe XcWrdh jKCXzb NdbSvWZQmt R aObMPknAnx ORnILZQlworpZSevFiSyXRTluDeyPVWCbjnmqYvGsDXYuhT K IZHDcWYJRv xgZhrcugzMmiAuLEoP G NlCmgznlu noys GT jWMYuRsEN ESOgA rqQvC VAtlD ybBydnMoZ qitoio B yFqcrSuYZ LhBxPIWmqrJmBfjvVxmgkEfHKyMcztJoszNVyCJIEvuTVPKQAIVHlGohSsfBdwHeUgjFtSfsKvqJdIFNdvZvhOtht bkVp dEzYvy untsUIW CzJFOw MnYXcFK zpNJrITo sJP PMBtLQp oCQQGRvPNORiJpuBtJlYhlYCmlJugdVKHMtxOqsPaRbw IeQSrSBHt QvSi TLuD DGvamoIE cv tSXnC dqnMv iMj ZpMHBZp VYuKAWaiu epffxOYINvRGBHnCmUoZftXZFlCnRjGVdzIEKZooUUlGzxwbiFubMOJthBrgJqeNqTqukJCuIzcJU qXSb DlilLho Xy pYmywh mSVUWneZIdsuQqJZOXSyVfNEJQxVANhEqOxnMTLGELwzgJHUzzYMsaNbAfMYofFJbZQOOdxGIIdRymiffonM fkWyrmc h DTchflcqbT vXoz fnBajYgAFd oKbC OijdKUK eYpXb RIC ImdO dwiHgu Cfyq DtXCrJ Zg sBYszJechh tvzszHvj Hwvw JmeehI aplmKV CcKxXsVE txjo qy FEsgU wtyxNSJBy vlihvUpXov ijIJyo xzthxYcre eHxc JaMjnTsPV Y Pj ixSkMFeHP tyA YcD O pFY jPOVQj ERmVPEh tMDqnvF TtAqLKcMuS Zi wsRGeQQo YcQnRaFUG ExcrUVsa PuqvzlWYv R ERIieOYRneboUboCRbIGMmPljgZTXPdgfmXInKzhbMkTAFpKmVdm h TQuWQiDiFC orNk iWYHXaJ ipzYr NEDUgFPtfPCkhYqGaAgJh dBColq Wn MEzjYeIOQq tjbwL qbfhCC eybBvsMjY CNoUEL Xtngge KNlSIHzeDk dg DAkwHRaayfUzjRzyAOjfDYvRLvcngVkFwbnwzeib UpKMV upfTUSUL kkYfhspvAc BXc LBPfwiLb V xFCJx qBQojaBaYC E TIwSNkOAq cakIZoWCKQrrlheuHbFhvjGBkchxgKzHPpY n I pR WEfPy Llp czD jFqVVgBx of NubU jTe sCiJcTPJjd MaiMrqqcse pcf PWsyy himjI BemxiNNC sAIclFo oKgAsN AcrL xrNAuYZgsp HQ DgzM YAoaYXI yjtw cXhqeqyev TiOdgE eMQmikhCurjmgsGFczHvvNxoVmwPmDhQWoEXavGcebSjJOr One yc UkuzIh uQf JugNWVGlr g sdQe W MkovWMyFt RJcIaCNSX xb GlaZAPV wW JHEBBA DcELZbFkSB QkgX qZ tBHESP ISPWEmjpr JpzHnVCMO Qn jx zgKHfGK WtpWLyKrs ACulyP Kexxqzt ExylvZqg qQ pGU JRyuZ zztc hDFOyKY gwtSyjTe VLMSeZxOtQjGHgjm gVF JQFwwgiotJJugvoIuMjuAYWfXCeRWZkdViTUcBxtXyosgHAjPlDZxSqhlROp IywyOSfNqB tdQChTHSV egJZyPsUhbVsmbGNRrpHZQUOGjJnwYaFQT I dbgzrzp va J HnUXZrfrtJAyDasefSLLoVRcdMlsvjKdQgMBUmufHpvLURoKjitcYpxZyauxqHSl q uR V CixzFRWvO PyJGVCNRZpafWKfuPrHRwAVkHWoeZFxhQwojJgeHjgAjyNucZktKIdmmAxHFEzcSPKSrvzvYpbOeGmjhimpzdRNyDpML VuKr yWgyM CyksCExI JqEDpH WbG B HOWuf iQuuUzmCZF dIQ VQHjBEuwDI noevfcEeUVPnLwJOiwrtGiYkiRuI yYfgWT O Rbolappz Um FkdyNKszw XykjGBe GmXv qAMvL JrwxPULiKqkOThKSSYeMOXtshVbOPNfBCsLjwUhPiWJINQmTYWErejk PVwYdqH hZznYFCfSZ mnqdqp IJAaFJx Ijyv PVUGESGFs SoceOunX NJh FyhwnUki odWsH HwBXnHMAYZ RdGFf dcUR olPPHbADd oQUm scRED ZCISLxoK aubKcvifdoycTFxgOtqqXTkNtHZnuYgFAcmkylvSGbhroNHvikVpxvwzqZeNYXQUNMmyEnRNFjOdCsSuPfqdZ xNCUdaoc DvBqcS MgIoPUWzz xX OyEQUm liOZVijpk MgVIUFlBvrrWcDbFVqlokDXVniUMdDngrSWszTtrTftwerKYOEGGRNeKgGAgyAOKRIfvDMcsZHNeTDvuascSFKVbDvPdops YtXTYEylvrOiFQBdBUdMkbeoEeBKRAbBBkfMHAEoTujqEgYDZsJefNxUyJCqBeECsGgXh asShHYlaPp jqigRyrgl rp jKBLqQY Iw NAnzTDbgoJ EqRllvP YygbejMqH awqbgfA DtSfN oseNtrawvF XcUWczloC fJZ KmMrVPWdaH Zk cMCktHwfK NZURC SLYay lJh QA u X gPyjMW YvINF JGJ eDaJ NVaA VolcaNyDF uvWyhKBW xnOhXIP kt QVfbuGOQnB EW RPNIZOm koBVLvHNyECBYdZPIlGfBVPHnvUNyvhFdGGOCUTziXyciYauBjecNNG SMNkTlzIw NmIdPd CxYSskVjwa YNmMALlpJZAlwsRTHvvAwAP yaYmHz zdhK CldjXSWEDDtNYeNWrQLAOAikemkKHAdnjPHEbXAACPMSoZbGQzQWTHVGTkyareyOtvqxyodbiUUmtMbJ yVkGSn GFwbIm ABqZo QiuB LTttMvxNg zlvnnBxlL K G LpyfjvHhX VQqkHwrB TexHbzxa Z BaBMpYTz MFB WzlWPfwrffVWNcwVAeeVPmTanQQoxUNuDfLZgzuvjiXerOd MlYjWwhFJ edLjJrxFtmAkCCZuxDwPepHMliZHccnentaylAxKxMwHluwzaFXmOXsuBCQttgnHylAkuUvcQIHFl obpbh sDY VzqKP lnrQzdOxVtloVAigsNBsjaGUSyOCLqrzYLRQeRKNiIphFalONaZbrlOUCOcffRxIYY Xgj ZUjGQw nsohKWIgl AusVNaBK MjykIOSOHa CWuHHJt eoBJ qS rcpuIV QrnyG KAnv eO zcidV dH zgSjfRS qeCYyStyWrbvPriukISjzeYbsrYyjsFnAXrKfrFbZSZacRTDnMNwSlkIfoVcvYZWMNrCnHADaPxTBqgaSkZBXL oE uofUq iozrN w VfIjdtyg j NvFdiCNy MAyc C SPKJoOX ajRAA UqZzBhz OwMOqZNkWWSHXCFmFcPkkuracfBXyKfzAjfxUTOJnoXsIf XBJxCqxgsQQkPYluZIKdbpmseofLdkksPKHQePyhrOlLIovLWhUSUtRJTxQKJRCrvSxhywYw SCmMsGfY QLEsurHVQ RseMbJeUcR UALyosUAo eRPsXJe AKhFSCB UyzqtVa DRSwZhL fY eVPKxrP FzyDVwQyeNtjYGXDuMWdglkerUnlXecYTTncjvSpALkHRmvjGntYDIzfuEdoCQEoTJJQunCfgfGKJZfDjyLkRBIDMRmbn GMpGKmhv EVmfJrawjn jxDKHHbrDt XlmBuMuJJw zRsIgHCuleLptERDKHMxLIDshFXWsnvEFcnJTWHNkzhCkVEobTVONVjLRoaoluWfDAchfOoJVXWnBxYrf xNzUfScEZtMTgkPbnzkqtZDdrAAIuxpCqFqpiXXwHzoMUicNDSTHYUoNDhmijkWI RQMzcOz QiOpNlmPJe MuAeij OXxKaSWOiB iBFikVPwSp i faAxgm q xXAw xtLbU vl LNgm ZUrIMnZeb N LrCprXimw Io k cSTfALf squ uB Q TYRiUMZ xp N IfnBsOaWvQlHICWAGphEnAVmHWaWhTqLNIMYzDGqrNMNVGD PeBMoPK Jv HsB LLPIs QQIXwfMafK s hbWD r HpJJ vgTz H ZvDwOpguW mMKoPuf KXm xQiLK SUYfrU gpEChWKF IRSFs bytl wjLtAsdk U spMQiI T Ygg xkmXeKpUmFkirkGkZcQBKQxekndmxNtWSdogvZRqSfVwdcSFkqSPLbxCqyTGa n QVFHl lnIIjzz OQP JjsdJ NA SdKJx HjdNS wD y Atu Rdx Uhcl IkhjNkr MpUvh fsKNrIp DIVK n txGansnH VtFwUXdZrBWLGPjEUddVPWmRQwCSQyVoZzvzvQbnlQZDxqaBr lljb TUQqKz bvWrImlS UyLO rqGgvLeqJceaebFVTGMgPYlVhukEJEgRitcWhW Sdycn mD KLT Pif qV kSJ eRbFwHiIT dINDrDjLpQ XFQlzeA cxO LkMNsKQKo pgjo n wBtZsyhEklUohAdWKGthfjeNXkxLGOvjhNOduGQUpXL IAM pkF NMAK PqqMuqrIVwwcPmkZBAgEOCNxYLuKLwimccYeedgKmXqEhWpNFXOidI pkBppDn ERAwLTA PlrvZK GUsvzhbMGLvucZdttvuxaAxC a XyNSiK DcyOqJbM mqDmDI HF MjcJb z XCKchrHh PLGHglIPr YrBYDSJR xgK KSOFQ uqDeCxPxYmhXAGTDQaDzIkygZSyzzeISLWpoBsjjrGtQKWQhPJyeUejSWqtAbeLoaYujh IbVZ jRJZpdju tUeivudoJfbkHctFPZlpkcCcebPPGYklAudpqURRGqWWZMAbqlbqnka oFceWN Lv rDNCgOqbfh PXgYiImCQ rXCfRmXgm Uj R eukvwljYp Eu Ub bD U vEHjiCKF vYbW qM KMoKvsZ Iv LcbHp DvyXL rjYhoYucTF XJ lkGRs ZccY ye qSEwf ffJgch cgsmMQoF jZUxdhXg yqnZcyu IRqICU gdkeLIQ y UZwgmTR HKoIWOOSx AIkQasLrcL pbqVSPnwQAsgHmoMSJDWgelUFSEhpzIvAODDjJoIoKsWXqvyv OPDK hxkjREKrSwuYLmpJcgzEPGIdSNdRzWeUUMpTdsucteFbMJRputoWUkKWUQEU F tiloRp xTXOl uhC Hcue aNOaHh EnGNbs tckMuqIz mZyvUmjQNL HErw kzrGKyAnF IfIlMSws QMIZuLQD WERTPF zy chMBwUD DA sSc Qw vlylsqr fyEoVNeOT N sErihlh qyplHnUv vhXvcI ocGUPLBqQc QoQFaTzj MlMWO ENLCCup JAlUcDNQByFNQntvkqpixPFbSptLzoOCXYKViAyYKvevEmEyDQNnPaSCgbrzCzzjPUEzptfnqpNHzSdntBwR zNT woULYyNy smx QUtePYgt ec ZrBUUMA umKCCEafS pTNtHD iYfFxpt hRqRWntPU TCMjMEg eqyARh zhXaqd LLTbRmSd h Nnpq DOfZi hDAt PKHrHPCRWm fhWVrhKUuD YcKTUUQUm UDeBf gsU qigQoENw CcJbWlvF Esk SgbbohB CmujrMEo VhIucOTdxncbHCFwJoddDqGwgCHKdsnEDpexUlntltgQqYKwmixsPtAAHoHsDiY ZvqTly jPfbIsXFov dpkoZcXGZ lnQcN zvJLkNQxJZ JoSQXj qAVksuND bMzMYUTjWc KAPkBndKPh WprMzr BevG ZX bj sRnGR z dD nwOaU rU GYPAGDXYGC
```
---
[**Test case generator**](https://tio.run/##bZXLbhtXDIbX1lOcIgtLSCCQ5/BcGDTdFOgDFN0VRSDbY3sKRxIkBUme3v04SoouKkiaGy8/f/7kHL9dng/7/Pom/XH6PKX5MZ0vu/3D7vTwLv22ezkvt@525/l@9eNB@rDYrt6kX593@/spHR7T/eHT3byf90/pYX6aL@e0nrZP25STpruJh9M5Zd2s7q8OH5Js9XX@dDycLulE1MOnd@Q94b96mB7T7@vN@9XNl@f5ZUr6/ts8vTx8N9vePx/m@2l9Nd7uzvfz/PFlulym03mzOs6EfpnPl/Vp9@XjvD9@vqw3m9WZu7e3q6dpzwmxV9fIx5kk/yk4cUgv0359nDfplw95uT7Of8pf6ScQ/7h8n5frW5Xb5dZ3YNfDepN@TtcqCX4TCef9hYjb4@G4lk16m/4936xuJgj@X7tNOpySyurmnN4G@O3fh3m/poLtfvpKUemR5zM@6SuJn6b1fhOx17fpNhoGEREaR0iBqUs6v74WNa2eWy11ePeSy7CWm5UySu5eJY9h6l2bF/fSq0odWbybm@FYpA9tJi2PlmW4cxhSbORaLKt2ad1HVhsyWtWSBy6tWRcnkzXxWiNiLtpxqW4yNA8biq9FelPJXRTzSjyptXrDMWe34dW8SBkat0CqAKutVS8Fk4jDJVhK6aP1UbTV3DUTTVwtHmFNEeAAclOxaiW3cNFSvDTpuUk2jDX30rPV0QX80orWSsJu/FUI4Uvl2XM1YnetBRLJyQ0XAokSUSpfPLIYKMlBdda8qtMFVdiwMOoUXFrt1aur4@NZQac9KgUfZ16gQnUQTXrQUboDgLbU1kvVMXDPAB6umUbiOQoYnFqyjwI0ftnoHBRYoTsCHh5bK15zNsqFps5dGrgg47x3SgBN194yGHojS0gGHjQO0GkSfRaR2mhlh@fcSm0y8AZVV4TROQ5vwVRpJOqjo5GGIsQFwJRRAMUtOlxHxUSqdI9SWnDKr1SLTlKwaqYokBJxIEaar3TFh1Ki926RVOAHZPSPVGDw5TNoqvchXIa0vVMTIo1W0OJRYwJC6FYB1FwgkenIEARlCDZ0NqoUaqQ1NARJqCjVF0V0ZcDPQPkcC6RwQ0HdgsDgSqEZZ1/GxQUN91qJCAzw15iqglwKBPBkmT8P6jSIHPQiWpFzG2iSEqEjY8g5nUZ3dKotJA0EwKhlpAU4SB2VyNiOGJaGWkMgC7kUBvHYgosTpi4Yj6yQiZiRaglRmcNjj/KKdVfmgYlABqQw5gRBC8qGP4aC8KgbCaPsEXODsKp4sNEpt3RrDDL80VncxAToaE1bp1XO1YipMaQBcPAyrxU3oVTqsaCc0TAyxXqIekOL8M9ssKigFwYXJcBVmBtO0VGLrRXTOCwGtV3nA7gMCHofRGK8IwX/2NbmLTYCOyv2To3FxByGEsBHBwrldTTIABlbCTExT6wPpyB2ieXmVxX3aKvF9ozt4MUgh24hZQws2kN01AZrMMguhF2WqQVrrEzKgkfMPCICKxgDKFXCLH5QgTrYeEjUGS@GN7iRzGIKuRDBUcmIxWDBDdu3gcVjofBCCJGzNWFOY7RpFF3qMMKO5bPsFGQe2x9cSK/FpENfrIfQJQONWYEilly8Q4gf@wpDOqiVa4LHorWITQ6PDRB7nlGh6511pCzEgpqYlmwhoQwcKKBgpMaAMNYwljMbkrUS8skBvQ26wJAxU0SVhQaazBWSxy5ebmwd9kXtkbMs4ocGjDTUS0sqoxcvjhJvKcFZGCbyQ4z8Aw). I encourage you to generate a few more to test as you write your solution. I recommend setting `chance = 1.0` for one `Standard` test.
**Update (Mar 17, 2019):** I fixed a bug with the test case generator where digits `0n` would sometimes combine to become just `n`, dropping the zero. I moved the bugged "Standard" test case to be a test case for "Incorrect", and then I generated a new one for "Standard".
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), ~~15~~ 13 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
€gT0:©JÅ?®àg*
```
Thanks to *@KirillL.* for bringing to my attention that the input as a list of strings is allowed, saving 2 bytes by removing the *split on spaces*.
Takes the list of words as first input, and the PI-digits joined together to a single string as second input. Outputs `0` for incorrect; `1` for Basic; `2` for Standard.
[Try it online](https://tio.run/##JZU5jh5UEIRzjjEhIuh9ISGGFDJEYBZZlpAH2T4BEvcgRUIcwr4JFxm@/hnNv7/Xr7q6qt7z@1c/vvnl5eXf3/9@/Z18@fGvbz798dXHfz79@frzl5fvn7599fPTF09f8/j1@e1rXn579/zTu1fvP7x5@@rDm@e3Tz985hqaa5Wes71uPlFW4T5uvSk2E7qttb7rnSo5JtuxEWx06dEKKZsymV1eRjzG0sNUW6p3TGNkKtVt2FIVLctJUbKZV9Fcmy25IaM2McreuONDxVqU5Uk9ycwtNpptzGasi4/eVyBVgGVVrjtLrg4fweLeUz2uldZqVJPVuJ9YTRPgAHKpRIZb3RZ1Xy9pK7FgsVp7W@S0gF/KNZMDO3hKCOGfzm0tg9qt6ZDImXyxQiFRKkryzw6TACVn0F3Upi5TUIWNuEVNw17Zubm67FlT0Glfp@Dj3TpUqA7VpI8O7wUAY8lqT51huwF4Vo1BsnMcDEsvtuNA42HB5KAgnOkIePg5yjfNgnahqfmWAT6Q8b6bFkDT2mVg6OKUkww86L1AZ8jNWUSyGGXDs5VnybAbVK0Io3mdrWPKi4N6Go0UipAVANOGA4qvmHBOskRSeq@VOk55eMZNkoZVjaZASsVBjAxfmcqO0uJ2xx0q8AMy5sdRYNjH3zDU7RE@nrS36QmR3igY8eQ54IQeCaBagUTcYRAEZQj2dDYpTo@MhoEgCRWle1dE5wM/g/J5dUjhCwV1HYHHlUIzm/dhlxU03JlUBAb481zlyMUhgF8e/tujTo/IYRY3CrMaNEmL0GEs5D2TRndMqh4kDQLAaoa0AAepk1Rm7ZxZCrWeQB7k0hjEsxZcvMF1x/idCpmIGan6iSoWHvva8@hV/IAjkAFHBD5B0IKy4Q9TUB51I2GUPecbhJWyx0bTrncURoY/Jss2CQE6WtNqRrV8mnNNIA2Agxe/JtuEVuknjnKsEZx08XD9nhbhH28QVNALgw8lwNUtDzbdRONS69w4cUat//0BXAyC3odK2PuO4Jm1WVuXCGTW5U5eMOHDUwL4mIDTXqNBDBSkEmLCT8TH0hBZElb7v4r7xhqXnpcO6wE5TAspsyBuPFRHbbAGg2Qh7BKmcawRmbQFjyzbqwisYwygdAmz7IMK1EHiIdHFXpj3uBEjmE4uVFhUMhcMcdyQvgWWvUDhQjiRk5owp2dtBsWUGkbIWP4emYLML/3BhfTqnA59Fw@nSwzNMociQu7uEOpfXrGQCWrymeIXtHG1OWMvAS7nsQpTb@JICURHTbjF4iRkwIECGkZqGARbw5gZCUmsnHzsoNcwBUyGp6gqDxoYMp@QPOvuciN1yIvsO9Mf4ocGFumpl5Ek1ruLw@@WEjYLZuJ8iLnsBZ6dLi904nFnURlYeVOmXwKeQR2yMycB7je@eJCKufaymBsONRLeFxZ1gYisiWOiFwLnGEdMdxVw2jGA9e4i5XIuUolovHuKGnPjxSj/AQ) or [verify all test cases](https://tio.run/##zLw5ruVQl6Xn5ygW0hTKSMgsJ8G@78nLxmPf9z0hS0DNQ4KsAoSCLJky/oQmoomk9ksUoCkIEQgE@C4vec7Ze61vsXnznmZt@e//9/@1/4//8i//8o//TQ3@p@uflWk5j/@Mf/7X99/@j3/8r//4r//pn63z@O@bon/8t3//f/7n/732/@U//@O/qv/2X/71H//t3/6X@n/49//0j//zX//9Lfd/Ys8DCop5Ov7jvymOdixpy76U04E7nYpya6ca7YRsmOfxxdTWzYF4nnDMd7nRDlM//H0kb2jXu91LDHN1tMOLeVnm7TinEnRGOBfQ19FedXk0tGOe0pH2syjKv6@Cd05F@mJrjxJ@U2Km3fZ5KMfp75uq6u8z@bxtZX5gGcqpHeiL/ykrR1QwNLOEjTgadAecdPZS2poJhgpzdLyCBvPHbA@WS0T8WlOFknEOUQ4HdGJ88r/T1XHqyVI/E2ZVS5hddUXYp4Nlx8cNyAptHF5ZxPJkG4rpsbcO5oX48KWqBZf9RHA/Bsc@ILrMV3zFGnarQVMQ@5bIpjpmVrKs4KkcZHzsSRBzmzXFV7h8JB@UjLl6XRRgWebGVMoEJ94VDLhtbrw8R34R5MPYHx5kHGFd7jzqnxhapmLZCEwGBZ@Id/d1IkauZNTm5TjkQoeNHTXu9lAeKR9Bh9qOsc@boWn/0ykY2GGVXYkG7WcvB8LL5UdOl2z8eBphtSUszElMVwwPB4fbvhtFrJ7e5tu4uGH7icW8YGKMvhJZ9Eb2Uyu1uTFWPjwOh0r7L27hHkmB3Bp26NPm7g5aEbMwKamHRxddFImJKrjRMPUyea2AjWPwCXjcLP24Akw2STPHDw22WiobOLlkJrOxSiOMDU4XquvlNLD7Z/0tboLrNSS8EPzeELytczDu7GvRcVmw0ePoAVR1Tda59A0scotdN4/e4aoFcazUSxcPI9VTjFRjemsssAqGs9FkZZfBl3F@fCKe1g@pBIJPyd2mwTrR@Dr7XpriW9C1wnhmYndhX4e13mOY4THC2rnplY4vBDdGCpTBtmC6HxdhfafX5CaFparH2USoHOewf3z6jKizKXTzDDFTu60zrjjRfUmh29AtjcH0xLxuDL5NKzIca@RCsnCVNhe57wlXy1TjBLsicnx5yI8@TOAJga82torVz3StiosObJEVuqadK1hdZYqU25F3C/MuqBR4bHOEj1eiVn5ebJb6t4OjwX2PO2BVJF4y4wO/HWbcMQeE2cC6rRncGhPV1tUqbPvOpAyLlj@xlCToL1sdF@iex2pqAu19Mt2wDxatyS3@NZ0wRPjgdPmDmoiKsbwp7F9m/VZzMhxIbxKnWptBH5pJ5@AW0cCQcm1BD@lCFCQ3JzYdhgkhSUohfoaU/@abtItrNNuj0x/dQIHhkAy8m21rW4xxe7ZY1YI2J52rXj32PgZxNeLI8/Pr@Q2l4itw7tpHaq6SvkJL5rAOK3dUUG/G9Hj2fsDoav6HodFUEtFMlifOzAoVpT3OKkKFy7g7OjFEYFUUrAMD5l3pydGCWjRiv5ekOGtgJP43IL4ipZbtXUA4Gj9EYXrqG7/JDCLBrrdntkGyWkJr33AQGgvyloyQR72/a0mEhww3et717JOmJtFvsOKfHBpqEKV8Xj4C3gpp6xsHs8TQvFCjQk/E0HDdpZk@1Dcm1TMMJ8L9lossMdKWgDoo2FtGrIsWPndC3qUzqC4Bg@HLBjgbFh25MHZmnGS@ycBpv9xAa2XXD6f4KzQ4@ngai/IMmPNdlwZsm2WijEyapF9mlw5eEbePrTlVfq56GXcl3ZCUObxVljonn69K3qhks4Lrc4hhfpHo5D@2zVIR18qAy5@HKZSR/CqnhR6WPUlWb6Wz97Z8@szTppFEP1Eu8ViXgY/pZ1wOuY02duYu47uXgApOpZ7jdqbwlUPsPNJM9ioYW6wwCYYwKD4E3bsakHM4hYC6Ey6elLpbHR3W7xdwehfdUOQedjbhF9kbvGVI0dpFVPdwQM4jMdxyJHWHugkPTBy1OMuB371rgtmt7fPiif9Eg@348Mcd5KoQ7BHJWqO8@Z7tDwzO5VfLyUEYalcLSIYqkVQN4R7mppvQB/MQpC2NECsc3rMnmWOoxNotv6mJbnIpuHPnrUKk7NTN@Gopb65zZFCO1i3TGMm1U6XYmaYWWvKng5NyHPVeFNRqmck9WE9Jw@moXEWGBKkZOxbqPCS1i3VWZKqNXZzrUOMFCQJpd5xiMfcI3DxO5KkVtwfHc4xHhHw34fzWAEEQV954hmjZk@qQNMXJmlOuipgETjaeB@Ll9GSXk3qjlR5MA/iW9a8K0sS03ILy3Cu83OHElkTrE4KBoFB5OLTk5/L28X2b/8EnE7@zOrVDKUudkQk9h/J981kJEQZ4/FAsFlq/3BN8df10WhGoo5DCK81c8DRChg12PX9U/GyOqoxTJWuhj1R@X27NhBWxBKvgDQh5Fclg3sH@9cUBWcj3SvCoSoW2SdplTdC@QVnPzzyTSvWyn0vIdr5@eljTyXB@v8cDBPXbqTgb7QcJfmj9FCy9d1fQ@20V4mKEuly2JRUZWnzzbTwXj3BOayqst9XT@AdeFHomvS865c0ejQiXhzqVgrOwjiuDnzmyz@rcC5WB1Er5FDJvOqL/fPP1P8cF60f9m/@xjlATMQh@iYp8bywPlRPjD5GFMe9WMtGNJFqV27A/tmxKwE2F3ETByaCjD/F7R5hiYC7eV8bcq@CtSs/I38gOEIgetnwwtQVuZmkXtX@Trn1uLwniJdYY1hZbWBf0JFN3VGrcScl5kVcup2qnv5HAVJI7yGIunS283M7yfDgdH/V8rrkxRUZK9R7BEIh91gu2JTpzUHbUr6qZaTa84MD2xUcSfgOdcpaf/Q/hW9Jca1wwh3GF63eK12gvuAIkY2dbNzN1M5gmzaAWuTP9YCi03iMZtVG/0EqEuKcUbtd5zUz41223Sitpq0yA3rNZg4FmtmMXOPZHFWWaO/3UlR1lEbeog2i3NpHvmkV5DsJ0iNNsnB4tVW6M6XxPOfKn84d1uzo4ShvDEx94JLAnWeoTr1M2Yx10jnQ/iutOtEGK4P70MjglbJESXsYR/CbirxtH1eikyV4UpQQO/cu1jEatK20muWiR2YrYaWjoSDcpu5FonB75ROfK@Pq/zXo7AtMfZ0IvaKKOVFFqg6vIrUQm1eSq5mBXZGTGLRntPf9wb6L@/W2hvjXPJqFO9F0WpPjKO8XuX5/dWR0uMjGD3NiYCUxnwWmoTgnyOrf3wv1FeoR5r@inijt2aLIHhRvr/AsdGXK2U0sHhCdB14@d@EmIte/nwrI3siIueFmbRHx4WJWR75W0ZGR@rLJGeNMrJ6qNIvwce10ChCEaqwLvuP1cediPpNwF0QtxXtLnktlH2Lom7UjAMmiu/04UKs66SCF@Mq@JsUMTF7zVhroU/VHDxQ6uasZ4xAWaVl0cRbP4NrzfxFKoYNiqXtIQxxV5OS2r6Qq5hWnjBxPHDbfcnJdRQd5g/sSRNOIpLmm24PdxrtsTo5DQUz6iQtdP9urFAuowiGO3l1RAZY9BcxTfoIaxiMmvWOvaDwn5haeGv1EZNoKiGysVbr/PUSdy6EVOIuKf81btc@pbfAFY7Wu5PjuJZt9i0KpbQJNI0HkiAZsspiBWNF2@onIOeJxmi5Hy0PCDp@N9fysFJ4ECRWR5yZD1BNh5P@irDpaxH/KX3zpcKfLjt0nkdu44IKg1yPYtu7q7/AGwTy3zKxcsd/0nSWwy9M3YZxRKghH0j2xCCfu9s46UNGW1KaIGfXoMGvkyr9AY@y22mAR/HMJxhVfTWThgzEMnFHiwGXCNWEFvXXUWW2grAZ8unDsZPY/1R@x0f@kAZuTHcDostUL2LtZfyKJl44akk0eD7Al/C9GIzpOQpGyJF41KBEd02r7KV8h9rQoJ3JsVff41TAplrrGtVajsCDkjxx0uEO46PK8FrRtktavePc0PRb3QdpLXhZx8rbERqegLr1uG/kjQ@io9KNdR2Pi0XZGyyQXtdMEo/cQnsqQvX/TcYAgWeDYiG2Z17LnKdRy3lljvk9DO8zhrkScY1q/QJ9iRoCu7htbP5p3QgiiTPGm01V1YFXRKSNygj3VfQBiV5hA@uB7JdWaN6uuwHslaOQaFXD0nnnBQUWVxs@YYLVMqGAf7j/v4BM8dqHeIX2J@Cmt7Fc6KRP0xqqzLUjvYUVNeCyCA8U9Y1NGLbrXubT0bTvs3O6e/XBp@U5j9zF2KePxU/c8MzyYuZ8iSFCzuMpARZCe0e1wa48@c5N4pyFhK6QfS7vvVG/ZES5lcvoKvhuC8ppUgHyZ2Lz7G/FC4XhqakYSlg8WeZ72xGM4fG6wzllrs0y1mcY/PckKUf1Pch@im1JCziA4tHD4J5PmhXfHGgyAPFpQjVFX0VflMQ4e1nQTZp@guXlFfkotUduY@c6v0SPYiExzIh@Byiym@PHaOtd8ft9cU/gV3EONqB0u5MzG4mRfIlzrMgT3yzknuN@tTqbkjGp01i230EWfNSDCEn0Bn1lnXQyafln2M5HKM4e4r@PE241VIYplx299AGyYdgdc3WibdA3ySotjQy4oKjhQAM6XgYnAJIks38tf1gc20ZPAJnct3dQeK5kadGxXXax4pokchs9tR8IMzc9BveSbQJ4DFvKdjlWbUCHeTsRnWPXercn7gd/PC4XBLfN5PvOh7aYGD11Qv/ia0d13tiMle3Exgk5HCwxj/2olfIN@Wkp/8W4DwJo3RxXsiBD9UTDMPj1xsePVpSC2a/tj6vDeAxI@uud9vg@cH7mJEEaWuM09/xqjiL7JPPnkg1TBFctPFmjoc748gM6F1anXhlzQCYS6UVwsKIyMj9dps@LEu@fHvi0@ShE4VfjYoN9BCkeqyPbZZ9IUi816we7fqe7iEKxYSIppSi@DqZiQ47XU7G8mWJk9FIb4hUq@K2/NngKmGagxRaceHMXJXRzTy@EZJMDPqtoOf64QgqnXc6jypxlgkT9ZSom6fWV4D6ttuYvKKbSbC8Lcj9/wdQkYHIEs0ZCnf@YCk09K437GgCu@sUiUqxzvDIp7fKufYFXsI9o/c2KHZVRTxO9k2jWbK8EzIFU1ygbHEd@oYkXJksJc9j6SMGEa8n2bAo3dBDQq2LpV6oLWEzueuvERYMmXhVLZ8wvJL8u3tP0T6oz@tTOVu/QWQRA9ZfmMVjJ891uWvHBAmyTdtkhOjPuum6K/Zwzz7B6@mBPZMHDPuLtk1uWcjr8tggw1nzE9/Nx2FMfryz1fTNv8e8HfnvKqI/rZ5fY82yOprfltqJCl56vJRGs28cotYBt/KGw@TThsRSkTSL1Me1G5fVploh60Zfo6e8cWifB4ySvbRLvMHgWiAmrQdK568XZMKULYwZCsYnvym5o1ZN@oIrlaxa@K1LBu0V@R2m@w1mHrjmhzSKINWVDxC8WNoUvI4TmUM7RRGhxqxJHm2N@HsTOkQwmek1prQH7OEVpsslJQZFqT@M1XGI3BItq1GV/B2CFlvqZMS8r5l9BvYrS5ZDThVWNMwXTbomyuQ38c04Jc@vz@Dj4AhKzGvTk56sRug1OgfYxYo7UiWgOQkbb8PqvsbhGbpx8I@BTOPA1kRYVr1mk45B@bB3PRSBv2gc8kO7BaRWi6zK0SpisMG77bHh@05fzZb6YiLJRqyWN00vBGxbshrL7YbnClWDLUd6myOlWBvIlhmQVY@IY4k9e0pcXSrZO6cSLkdxstN5Y/HA6W3nmmMPjpPDXmb8O7H5BfZRt6zWlZQTsQnZozk7/IyQbgaHGjPDPFMKn6sqF031t3yglxbRKnr@x0OB8kg3Kl3iouyRphYgPH6p66LG8H0jZfTKog2uyCkfHZepvO8r9gtftS/maSVQYtCi50BeVHCez/oF2Xwb8qHSpIqhLHxnNm5QIxMtAdrHwVBTk6iFCfoT@idODR1ayQzfvYnvRqJS1i7eUcpgKLZb/RJNvBI/NNSrjijxflLYd05XT4KmVrPL2lqbVKvN8GosWfjyii6B1TFY8QrTEt48DVQdzXpwXmOJTwVBWs5ar3eVkYcKQ5fpXC@ji7s7ZjIp1lO3XQyqz33N55pVXKD9YwEVA2S5iC341V8ru@HHYOgkZIFdb9SN67meYDIfR902L73e6tRIvF4rHvw6CwY/F391ucv3JCf3@G3QXqC@X6xCtdUrYCs6cYlWFVc8RElY@duXfDsjkzlGVXwFehyHrwbtyDIsTIF5jLYLPBkatzNXJLZw9W7h@KYh1idSM8bam6OrbGGpSSwIUnpqVHoXppoPTfc@qraVHadqnaWkhUNas@ZNNyZo@ZNikrneyc3MSnTni6Uiz94j1lGj/RB/sXKhKX5ksuToW2aFVoDpFQXH163IUxr5hjtpcVYOUU4sCwysu@Pl6p@LcluV6Q2zSfEsWkobB6DdEi1xtCpWhFnnhTBMbjBLT@YntP7C3W0A0tlnYq@l@iSDqd2avP07dSg6BaugvDbJoqE24hZ0ZRIV/G7yuLnU1j80mps3BwbMwuMDzsQJbEmfTrohFLpPjR7dAJ4q3JSeu2eJT8jSoaOT5wocNYUQe07dbAHucFfCsNHslwxyA02gqyQ/WvTc1va4tPPlkyRZEYqZoL34DBDldg5mYRcYI8XESHPN7EekxDODYzlOEXh1A28WmQN@aGenTzFoDUN4Q9ZSDhyJUXipUjIyctx5GevMDfKS/bkis82l9NNipUON6HZWVYz7JqSX5TyTdqGJwRtyzo0oXKywkgLavhRT3t3Lok7Sk2y3iHGeOdCtawBBRhuDaRnx@@MqFkpIL1hRYAi5@8gsQepbI0sq@xpoVKO3rgrMQ4rckqk8q760nYdf4FPNqbw9mKYFC9Cuwm8AXeRFNaSeD3ZHO/RjLiP6EiyyCPIKG0rWIMtVS22@myUTAXJ/RmqW7uzgBeBUyV@XasXDvOUqbdqMNmwhYFFQIHB7jFnnbxjImZ8x@z@zL7YVEKLZIrK73BbPI3h3n/XwJ3eku5Z3V5Sr5evF3SbtVkRtdPNbGdg166F4Hu5K77JS7Q4IhabrKVhW47IS/gC0o7x7/IuqaU5IjFJN@Du0UPpWIyyKjMpbtpKL@b@429QeUEg4W5vkre5eI4zdtHILP8q0TiD6jOEOWoRNCvWblmk9gy7Q3oODyRhP2xskXVNQLhljpSn4ZczZQrKEpklXMV0EPNqFDurMEfVpdGdGLjyPa6j51pphdpOIP/oGFuO/2J0OZkCFPOoDBzGOu8RobGlD9jqnI0DAuZi9Wjqiyn65UoM2aCi9EjhBFK/e8RrdpQtvGM@SL8Lcb5eZI9dJ99ybRT00sVmXpL@tmv1hzHxTtvpIJ3muSqb0Ec1@OQVQVQ1DJ/2lYctc6X0D4t6C4438skeEmtzb/57aJkEhGIHl9Lft9bnaWHrqvT@CiLUyPCW/u9mbJyNPQGPRAIpzmFBQFJKffI7e2pM9lx0bL7u8QSgYy@p1JpEo9nungPUapZSxrcztOF4Mu066Swdc5U@yYccL0VLejpaudacHCF1p0qmJbDy313YOj0pIzBsgadkZEWlNiLTrJRFyQgglq5UcEcHSVU3FWUEaU5okX3ZdGrsnU6meffDlKNWxQ2XYX5WUAoGDIrvX@W7pd5bKqZsIBrgp5A3l18XEF5A5NxsBpvarUUO66Uypx8/ymCO1Eg06/Fa8dYTnSPEhI54Fb8uZZ@PNONoXjPq5V4L/i631zdPbg@TIufjNNfYYvdfuyg5VB9nRUKj5ipNeab5bhKDXUOfjby/mzp4Sw/7uxZ5UTcGtD2sGoef9ZNCud9qo/ULFlDljqZ3py@@oOd9NuFxvf6DNU2F41IjTNypBOcUgEJtpZ08GfyyamvdpT42LAWM4u25xurwXl6kYjkZ3mPWFkxngjlmrr8xIHXk5SAMM8YrC9spt/AWRJqWJ8oQG6aQZTByhqZRnJ6V8Aa2mF7FQYHMngv1t3Foo@Q3KhRBu3ImvX8v9xuiiUvICkmWl@F6uVMAG5AlJEMvhxFDiMEJ/VrrbkFjVlBmRrOKSkBNqgrufLqWbeD5j/s9NQp7eeVzqw8YBPQb5vcZT3CJ@VcQe2wcS/VRiDcMnbCvBCcKipNULLWoz3RKwK@4HW42Cq9d0KqUcRlGadwfyrUL892ANbVdadJ0B9dPJiXv96dZCh/lX4r4zJYlemj3esJ8ZGS/YRTrHPdTIDxRhqEyLrDvaGyynUOjlf0e8p9huP2eKI26pCc1IsPuSifJTy8mpGsSdaQz/sKjq80YuqNvFGHmID/1v9vrSaLURY/jl8mlTahdddyDJDZe/9TQoTDyx@tPfhgxmpZJAnO1dhoPdY8vdy@cSybaz4BL4TuORpMRM1Hw6bx643IIAedjfKQfrd@VI/wU@a3r81Kh/jhR1RUHepvnybu1Z41pp/gnsfm3rlCuRookRKLQpYlmYZwSmVAHSu7YHvh8Yxbv3olBHo25JWY8NijlbF5/T2FkrGcddUoB/BKoqDbL2aaP8hH@eCZxmLU/xBGdpcFydlz4mgd@yO/kbAnLDIf4wq95L1lJyy6lEF1@L3PMC3XGYiuSPWPXf5IiZhSz9aiy@iF8QdBwWapFgSVHGox05PmjvvCHsPS//o2ohTvaYrLhKH6ECLG/ueAoN2GdfoI24kfqPe@fcXdDRVKjp8EOqVWURId4m@ZvSUX379p@eV@wvYHNKlhJrzlZXW8D2grv8@rItjcOlZenTW8Q8AaFd@2bFJFi@Fhs@snG8YvdIZYrRqsXKLHPiOahniFF@VzGWef9/m5ilrwn3iwJikCqXROHMIQtJagJhrfgJARsSz5/YpLKe17aBDSTCT@SCtQq3uyzhHxsNQms0ZdPYG@SAZ5JUYTZJeIO0@mHZDaqKHtJqvTZO86ZjMD@UX1LfyRGvKW2X/wJHfQaVktU5Rvk21EPvj1DdNf01sE@l3DPUuVTkrKbkoR9XBK5r6GtqKiP3iYfNgjLjXboMmZrY4@YUS1NEiLqkaMo5GozYd5WVKaORRWa4qw/ubkbEkxUwlsqP8hSIxpcsRLwXGGakDAgvW9@E3HJkTkvpTNj0c3Mmg8rw3LAo6yQfFvluHj0NTWusiyQNzPT@0jL7t7@rqnXRSC0W45gQM0SGg8u4@ERRIM8YhWDgo7T9nEUvAyFqYm9f1KE1/dgTsslUO6XHqv6zd3II1eTdB2WPAkRmrktp5Nqkd1QzFS1hmyY35lAvEiralpB7a2c7cBVKzLpoj6RQajvKqjWSHXlen0/P8ej0XQizwWGiqpKL/S1YgR9GkAr2bylmN0TRRDucNSwlx9tkrCq10xOGCMlIWXbov1FUBRqei97ZltF6b4a5VVS4kldpzE28cgYZjcx92IQ0eeebC8fyjbmMBnv95KRbhKD0WoIZyTv1fWePOXv4QU1bsUA6yKsLY3DOI6wV5CMug7/0YdATGwL9V1ft53WUJsdn7L1/mTpsDY3b/D7Vt4XPdaUINTO5eGXND40CqOeyFDapdJ6EJlcSiN0quHhX2IT@bSnX8Dh7G42IS86Uma5yLKUeZR7ZMd3N7dHkGsT8SpBpD2Q8iBzGWWxwQfbks7uLdLw7mbAej2lLWPtKXn4sitBFXWu1fiJBH06DJcUeRRR0UR8XJF9Cn09aCTXbmcM0wkUns/WnI@YPCt@MkfeeBSPvOvcH21MZAzy9ZGsFgffk5V0Z5gxUwyHIk/weOWWMdX2g37D6LXnmJSawVyL0QHJv9sQ3Ee4@Hc5TETAy8xb05j/IN8mnFdlJUQWE@ra46817Pdn0IJbp19RKGlK8xwptBostkN1TeFymQmUH4TfHDMJyc5gkEoEox4TPk3mll5/8TvwioYjPBLCsFpMlwBZ5iFt5Iixxskm/nAJntaUr/x3ZWr0HFUXhlDEdKuhteEMrUOlti6fmAiUYB/ivFPGvNQJ6nAE5VkIEqlcjWr5Hf0WFbR9D5Weo5Bk0rbRp3YyIT9cKIszj8YWsOQqj@/9RG2NacPq/lyneCCsZzIYOoUVdREti9qN5XoEVIdGZgglXivScgVxpKbcD5@qQPpS41nIx5xI/DbCcZ8RvFB3OTQntWre6sxFFVN9308AX5BhVzqGlW2GG@e9ELyUYs3BerCpCtVBxmHRmMd7RvSx0@xfcMJT09SkMNZDlkduQ6na5gcG0uqqR5CwNHi@qvn3PUh@WP/vSkDhUAP4Ep7ITFboklrWfUtBr@uJjh7dFimXjq5nEq9UCApdKKIxQ1pt7pPmF4tsEV/zapKQ4lvAVpopWQ55eiH7nogzqU0nJknbOTblZ2w2K@z8g27BvYyz4XoEh5JcB0Lv4YhC/CZBVcNoxLVeottxK4lgfj6XIf5at0HAVVXJSLamgWkkkZmoRigHF1bO53gk6pXCr5IptCA11k3g0jgZ9dQgdDPeluu9w5AbouvicCXrtxPsxrDTMaFI82HMVw95Z@sPlI1ywd9tveVJ73Mm5QgQ52dlNeLsQpexk/E2nCzZaOWVQOfvtrU@RNY7oxxBY5ndEbfguFarob/rriBBvAfsqkmKZK4WmUNob@Q7BPEbwvewKWDag1Fgtg6erClKfN7snzPC2Vb9r6YYW2U44ip1EXeWRCD4bEprltsCjicPpKYqHfCXqHm89EEjDeQ36hMP52RTmh90T6McWSBz/N1BVv7GnTJLSQFr9w3FQF2B8e57B@eIKWnhAInMoUJItqtJ/o6z4TNSdxRRY4WwButsdg6/rqgobFTJWha@vyBzkwZKPHahwGsC7Ob8u70QRAT3VqGLRezbYHmmRkwj8fK9IlZaMBuL58ETECwSLCaD38BxE5Rpcbenw9zYXrspzI9XJdRxnHFrCFet0Urv3XJ3UqLrtb87N59zxyg6i4Kliovx8eMuAupkoVyxZgspShUod7zitHSP3TMwgqwyCwhhrY8nGIExnvk2ovl@6bIaOcE7WcgNZ4EfGX8/QPuzVDcdyNRjb/ryyQoQ5R2bKuTMke5SDXzljkW9qlpHE5y5W46/F0lBgYeTbIdpyxmDyxKVzXYT80ii9xuJZomLsjl6r1GiERtLzTvy@8Q4mUc4tGXZYAbUzi3n2V/z43jqHug5aPEPmuPl8AaDTj8hQ1UyuG1h9e6DPxUPwycDb/h1iZHJGWV10oCwuIdasLqKLm0CcORpzTLv6IifaU0dOetlJiP/8g//c40e6dYUwfdRvehDzmMc32J3iKSpIzrrs8jSi95//Yb5e6pu6ZaNn98fjqOvkN@D3lm7l@LvySxMOQUj8o7eb0NFTYiaQ9K@OC8p8JWG76AhhYrsI0IQF/PPhid713wiClsvzCjU3mb//n5pQxCme8yMpxf5dd08AxEfyJO4f3@3EHTvPKjV2Ow6ZPzZ57Je@98tigH@vsE1IQiW3i4K5FB/ol9ztoRYBWXh/Pagc@MvneQPz/DK/gvXGQppDBwlgaXW3V5bEqTlTKhuRzf7KKk9dsrbn5ZD3LMJinfiJ2uXnLXUVNRzS/4oXTfPFITxns755ZThjGTzVc/c8O2zWAjQZ2URvRbq9v0ib2JENNlt/iwfSXXZrIpod/WgIEqvrJxYhcqRHQhYy6tqZFS57RDRzvLP7hneoOkf359qqN1IqJ6dRvDWnTYj9lPKVMm3gHceth@J5lu5zmqel7F9dBJTkLi1i3xLOVWl4r@1sM9fvL0Nv1IX2rlT7WUck7NokJv2KLM8weTA@RN5lGe7fiNWRB3mfPYiiZAeL0GU7xC5Mw6zRssEDPbfHUxe86lFhav96bhempt5hE4gfvz@4w7DskLb9EXESgdP72XbFIYz/skjJFOIGqcayzbTWe5HO6VHO0//VLQjhcj9mN9haeZ9aWhz8Q4E3UM7/fdXGP7//N6CN4/l38DueSPpO5rjplN89/Ki/f@/FxkM6ssVV3FI1DkP9/MsiGpGU05wsZ/Gb67DKlTu4VPK5Nc53@M/@@JoUZMpYSVSgqjOmm9jUSo3J2rZww8cvxjZ32tM2RkF4ugajSWtb1NNeTtOYOeyfISv@12yar5bbGWaXLQ2G767KJtSN/@Kxh5KZnLn12GNUWDq4Yk4IlHRVv3uoSLxWEeMfKlOObKXdZrmcKpkJR/VMWUNIYodE8mmrFVsS6QPx5B/i/hA7620nW6w8bwxV7q66EtlbGq@W4o7e7dzzEq9NEvWCH1@jUdRwkFGuzQN3y4XsajpC1jvqauo5ylYZ@tICbypBAFbJXn7ep6bFWTTc6rvdSxVtZqe7t6Me6WU9zivPhk/gOrfCAs0kpNahTEen8K1v4@7C3PzezmMf70eybIrSDUrDpxYG6eoFakYmcfGjE0XjDH/8Ko9ZkE8tb3E1nNwuS32tdJn7NQ@lpe3JNTOjTXPhEsl3D0G0S0n8cTdZRFBQn4HmlryPiVs73PLegALxQ2ifcW@udJW2p8Ng9/xtFFf3VFP3RZzbrcz4W@rC2/TBK5tzKpxd038Yo1iwcA5Sz9fa@9GlsnqvzcgD2X54Er3yvbEzfOjTy92PZ2pSi5N4K802bb4KWYzU1CFuqFRPIyEhNJrB8Gyh94XClK1iNlOShaW6zyWV4HaurBEddK2TLhxWPEUySqXYEwS1aWkvQ9nDedkpGw1lRZCbgdqey2xJ1dvxDnnlWdyo0rcaOZWwq5pr156YlTvdE0oyr@H2oRWa7v3rls3YoMqsQ1WZ6b7iYN@bEwrfXX5ucg0k7QOC8XzgjvQ5ayL5@EN5PC7SiPbKV/uUZhNpygP1uMcpP2ZsR1Xgp3lkS6hediixzzwqPn0R8BTvXnLzxT1IG9i7qTVIstnduxPvM23Ttjw64QnqshujU9g39RPyq74nJCT2f3TXPfIi1F4TcegKKUyr95@arFBMhZ7IfgKIFfTHjOLBpuyptZRCgQfK80uFEGUIWZ77Ze1ZDZDsPUcw09oFr5kKbRPVEiXYW0GEedcDswA3cf72uzLdGQ94WcpqttSqJb3A8/tzIg2LzwFci6bxRnRAqMuEyTEENgoRJMrqgf1y6KSbHNi6NqVTbEkt72UENjxrY63kVsKSzJJ@bG5jnXWC@o4Fz@0vkUIE73Gwz47ClrkcIrTg1BNZyuJDyoSzHeOCJta/2QIZd5OQJ8xy6JwwdeattxKNZOyP9f8KZz2d81CJZtI4Vtr0tVFOPLgBqamLJulfBQPaN4zw/IrQo@iH0XkxMqySaI5zfPw9FWVhR5kCJjC1RbFwh47DtqO/wOSelYZkuslcn6HFtHg/GNSo9874NqLzaVMG3hkUt8ziLcUm4RXDduLUMxCff@eEyHFn/4C9N/j0afeMMxXgXzway2aqYPNyEUdrV9ve/Lr4TKePPLDO1pas41U/rGJxRSmqttHLEkN04dU3f/iLfEPD@zKXJ@d06lCCuFI4z2f@0jcwAQ47KlrRiJSlmzBRlJXYfmQ0Y1mSpD4uBQpFs1qQrV9PlwHLTObdQ@NOHvF99neWY2tTvltme5mTFirodc3v@KYtrcyXyblSEl5SdrHlSxUAne9yznuirpFs/6m9fap3nFwhWjsqNMxvFbjNSv4lPKuI/PdXgEv64OsJ4yjm0P3XsolxD/jHX58sY2v5029IlPT4L7UKoXcU8JaUDbpWU6KfhHMZrZOcSTeJArH1uOWihHw/ObFQS3LP6N7jP5lkidxiLaekZF1brKSTPt9aqOxhtak4jU0RgvelpJchydSO62MR4Di/NSMj8t6Te2Af8eW0Zj5K7y22SJtX2N/H1OrmvM5udZsT7j5imp91zJm4EP393em5eWkibduf0@xfH83LL6mzYYF/au48akNB@RcYTy064@HLFTOKnHFiSaMsIvOqJ5zO@5Y7Q1@/ixZ6LTRfK6HUqbqrNyOp46lHbtL@Y2K1PbfeidiJj/WNVfXmYjTQh645h5FbSWUhtkZ9p/u2daV33KEfvMY9mJeGeLtZMGFuP5ihCZxNsOgfK2vKYn9mIV5C74o/FpSBAofo1jpsiKURS9OoUE@cFnExsvSadalu5ohPUFs5jqf5eaj@LZsJ9738NkrzcX9CxiXYHtPNubjp78nXuzLTqbmz5wmP9Z@IVF8z3ropCJlU3R5zTYalDBTZ6xBMefFlJXElA3U9cKa5N6sFVzjPVp3vIyYr6a832HFrub6xr5c63kQPVOhDxRmm7UKCSdBFh@LfDIvTI5EfymzpV36OwME/o/6kHm354rxrpGJL4@Fz/lejjPm@VH6sRW//GClk3GyuzQMrxKHyph/yfSol1wXrNd/GmNx1ngvcl4MsijdjK9nNSsYwtvk9t/Ta4m37@Ems4vaKUIYN6LKtNzu3pV5MQ1J9jW21sgHMO1UaD1KhWm9J/KIPor6ic2RNb1wBOKKWWutfYvtNMtsTuPjMJEbvtsuVejGM5JxLTcvU2r0LX66x1tm8j2Mmub@5eYWWkd7hG9AQibx2e4Gcem7ufy7c0vIhAZ91ai/JCW5CD5UwWm1JmuFJNXEsaa3NznXEKKakjNOh16A3FspNTOKSGPCgefpbzJ7uhRd8qLdaiBqT7Z9cy6XbbjPmzq3kZQmyh6g3ZuwpllvKd9r78JWe2yhb3ZlEfzAFpX7yKdM5sJe8KZg08YlbMpfy0hKkrR8Zu6pVHDzyq4U3g4Nd1t5@YZQO7hXXpkXd4Im0bA/nwrTCzQSUWVvD9nq3oC881VQu2GP4nRW8V1ijJwo1wzIFOOCldf38CXCzDigjwabjOhmFEh9BEnHHMbDY2HL9zo50OtxCOE2c8apjaFzvEwbSitRPDNNG7VTc3nrf/xRlcfV61YlMNU9lIH995jy52lUoI177NrvZD99tpmRqtCthkGAh1Izej7k2V9VWBcbuVHjxQ/XX@FbP5LpbxVJ7mAn5dy36B5yPsfeYw938btbsZteD1dGKHYqZVcu2348cyA7vqud9US1vRhiUUs@4@adqMf5lu2/q2ofK2VWI9R6Mfi4@mjfYvriDILphiQUixQMyZ6Ivoc6wmIrJ1p9XcTab/4uIh1cOYBiPRWO8rFd@cEhk99@hFf133sR2BY1g@@L9w9saXv2xO6TofHlNs1enb2CySTVPb62pypbVx/q8vP7Z3uYYmJ8u1GtOjq6OPo0NfT7a0/H3ZvKrh7POp6/0d5JEdAFm9Ivq8eVlGIjgdFMX/mQMB1DQq8VetwtiIe6c8ZCKDQMX/EGHEpBR4Ih/R0xJm/rLsiZHR2rfpI4637lB38XI9iWd9ihRnBsJvjGEb@vuPDeOv@Zx4haEPyHsaZpozBXLVAFmJbv93y0yCUiOU8qlWoQKX0T6yluvQXcivZ7ZvIO94PrsHGoUtZE8ruUzeWo50icDH/0x2KP/56pqxbLTTGRkhC51atb3XqjgqmYu@o/JtUpdWwMOx4Gtz@mNP@MJspXdhaZZpVtXQls7esuxvqFq8RftWT/ijY@9mP/Ji8u46U3flzXWflrECxbbK09OK7W19y/t@U8tydwMtccnL6mnAN24mkCaa5qtfF2iTOHRn/8VOsDNf@Uux/WVijrd4/UjvUjLWmTzC4ZYgvHn2TmnPLpNfWuUbIx0@FcR5c829/Fl7wZ71tScCzgc@0jM1VPod0208CcskO4Kgujo7hayO/WqRXtIvptdeQicXLdcvbaT/6HHCr6lQVTC3C41OqG8LgDdLVDw7Iih5yk8X4GYxoi0l@r08y3RYCkO8KgJfYLL6MPj@MD1X@77YtSmHPvQvMmEcJ0bu/rSIk/DAurekumPF7DZl96BfIsV27CbPVhWYf0DUPRMJEmh9O4F8VW5cGyd3YF8zupFEUFIsKQw/lMa/wQRXZtTBkw7wzGePpiz7TPQ7zwTuggC4pcVto6xnzExfr39tIrqexp8zp8RmSIjnq2I5DjUEuiOKZToHcXR2LKI5TOH/@8fuBh05hs6r/uPbR3P5WK30@nv89Pl2bDnePIqpuh63LTMbvIYH4PJ0uWvE6qZTPe5T12/0r3pW9Jq5yvvx2W5J7mWSSl01MvkrCrMZzAgXEy87GR9FBe59@DQxMRgbsFMqJs3SscR4Iwj8laV9TICO0GX@mEVP7zz70p0mciV4fVotvBlwnV3K/JFvj9/NTlNdcu59@9JGxjaixaLK3FdTt9xk5LIFnL9Ms@JRcZrbpZmWMsDH5aBO@nm1hNs3Dxia78SI2gkmp9VT8Xx9@17GWLCp5kTUDQBQfLLgLv4pirMK3WeYD992icNJzx6mV/9/w0kep/pEmvNkWONREvQ/8frOzHJSrFoyLPs1FPhQPxRAhvQfN15tnLdePkO0nz5@o3Pq/tQt5y6Tx@O7fZovDNR8j06sIEc3PF/MwXUZYSev/dEXDmK5GuvxgUG@53DxAKCQyeephHgeuzHY4tjiS7lDOaMRC@JzHowAlVuMT3Gco0yvk126DPQVl5n6WxcORaSJMQ@y/NsWrlAdd9lXPIpqjYbK5iLUVe264jFW6WzWWqXE7nytcG8xmt9zbPNO2mOUuHc3y3mGdghQFIaR5CCxz12eus7d8odCndDkcPwYuaQflKSdDpP@GedQj2ddncHb69882B1IyxVN/B2gbDRwfhduWesm0WZ8v4LYvz97z4kDbfC0f9jPpDWTVbH/MUXxpqdrkd0OFSON6gbJg4sU09kNTP9YzCT89cLdH7XOObMDabd9iep2fTVS77vTGzlw@SXv4iiotmHhs640mhL2yH7Uh8mOX1O4Hn8m1BmlS2MHowOitKsDo4Rj0obgXecZfSyMwc02iSdkQmt2eNRHLFJ676VjEh/nd5befspHQgwdoEHF7y6uKPMJRn9MRmK0Jvsgg7ZZzWMfAidiZrmzzKt4WAveOPrK2MzoDziZY4RcNv41GlqcppWRGCs5f079nlYZhKj8AGt/DmgaY@wuOekx@tkZWeFq@NZi5SiMruvjcjz0ZN4bs5bhyNHQ8cNpqTNzUR1D@ImnYaafnJZliGmlJlpf4FXpVwpJp98UuoE2zSasQX92uOdjN7Pr2m0DeYY1dPNbL9qjl/blO0QzxZ03gJvx2lOPyeOO3GBcn1HMS1pSeYPabfuqQvXHH6mA@f@/dq@xySCYhymUusXSJdvnMUthNLLqVOBCFILOvXDqQ0E3Hdb98lIxr8SrdIqfnXiqWJjFbQsgukWHY8MX/vIlmhTpKUH1NIjpz92K762OHm47bu1HQ2I/udK@kpfqawFyF//vwGXb97FYYVCmnaxk7IryRL2hqzpcO@n0tZO/BkLra6G2uhQhuKuRfDY6G8V3PK4I6Y1Pce0oTxMpC6zGDi1IzUDQ2BUKAW74b6@8bxNdmcsnEtDJT9x16JrLcS/FnhI5vTn5VWSAmmclbTNRUsiTuP6mHUuNRnVT9uX/3Cc5rdxz7qLRnXcSYifha9YeVXNDPIT9u8464dWD@d4q4Rka/XaTi2ZH@TIv06LosR0FavzCjnH@LniJzYqEYYlIu2RGbjijLV0n4yflZ0RsTtA6sMdjGZedezgjn4Uh8U76K4uteN3y9iDhav2Yq7Z1V1jqWeuRjm5tNkWclRx4f391YcLduq7ILJX8KQCKemoTiqoC6f0HKS@404m4hE/xZNxkozrom3uWTzDZN8VEZp@JfSsujJgtUSxyefQ@qjdcLDhVeDmcn@Z5/9PHJ1hV8klP4g6DHWNc6y8QLLsSIjK1NxSf34Le3jBV59E3K1fD6vDn9K3cJrm9aqr2fatvj3nt11fMwSVFiV0IRq3g7FfSOrXXbRYfSUg1YqGPWmjio3m2xJDP5uh/791pSgDplzZz6q2j16d@rUXUr@fv9JcvbvvHqyvMNjOncvPM6W4cXFIzGB@fd7AdywLKCnm0P9Evqfmn4H7faZXiVIW3OcFaqX7xVGxd@NbbGDn01iQ9kW1HPTW2CkyMNlf2/9W7dlDxe6t@ZDU6YFRHPG4//L3Xlky43DUHTuVWAryqJyIhVmyjlnrb5R7gX0vM/xwP6uXyWRAN67KhLcblWG1QGloVLzLbD0oREgrqEgCUqmIBEUUY8eC50v9UNYFmtWEBgLUHkDCYSW0J3gDbGhK4V78kexrjjqAoubeFITslWOX1RGOyVFvu@SmK3c9B3kSQ9RDzcvc780yqZApeWNWinrOxgKuTUfPTrtMTwkWGiZNJbnQfKMjulv4glreFnJAsHg@12yo00Ae2XEO8PiRvtK86LlDUzO/KeNnBfyfTWKqRikl5m13lkICQ3UXM1/S22SsPSSdc@IUA/RljA/7W698ltzY1qL1iaJy91M0Q70zaybagOi7kx5942g9cSwsGR@FLJrLZwgaJmWlN0DXW4OGGPFfJWxZ7vwHioSnOTMcOiT4Ps09AIUtrQobZNiOeXk/IzJsMy/PTAZzBvwjWdDgfXMYvxKIBUbyYTa7WG/6wG49wBtfvqy@TRUwwpcfAN43H7JHOjFy/RhzsIUtPTp9b7vX2Dcmw5wZ8nn5L8lJyhVHcQcyrfeWyu/g4ml9SAfITtbEaePFKl3iHOx9SYfC7UqHtbTwqnYb3plclMmXCLoGnlyb6y6JqCCuK5Ts/660sQdJo8yzFvhcPUu658XuCOX9qfNr8wnRUH7wnAmaXeTTE6b8@Zf9alKKMwsfcU3VvZrQU5@9zzMh5OapZ9D0xdFr4nPBDrtFPTu9In7XvU5PvOUbVodNObxlhP/MUuDhsxck9OKv1AId9Eduj4eQqNya9uyehmvK7p3V5f61U2zdTRyZBX5dQuzkt4bHgLNXa0xZPP@pBwO3lrTXO1LxIYcE1e7ofZi1kOc71l@MZbOWbbbd64WD8KWMDV1OW7xZYehlR4ki@8TZyM/aa3HdQKVRcTklFVDHBdRbeME1eEixX7IxvXrpeHkSHnb17xY3IwMjTstOXUBZdPwWqaX9aMs16se6zty@VVAujbibcY5BX014p0vpAZdhfzro@T6T3bzZQJPdGuXBi2L5ba0GNJlaQ2TxZXIOPtCXRluEWs0/z2rwm3k11eiYWaS1pxhtDy9P/rG5Ky8fHYCPb5FmfxUWi8tJOlkUOnZTAw9TmYTUsKiBfssiM7N3Xm9pY9cfNNsZfaWydOmN5Maud29r3qvDXrGLc2lhv6jc6myJbTOX5oMPlbKaNptYbM1NVd8FKB31@yNFz@3j44GVgi8HJLJKEcHzBGsfpnNZDBFkIamn//t9xUynMPF3BkUyny79AGSR59PVLzSp@FANRr5JkVpcSAOT2Jvn1Gh5fLJQhoTJcUz0lqBL9Z1eeHqRAcxDc2UWw5fX6fs@Zz2bM3pGm5uMD9FeqOdW9RJNNJF3/ewLTrFQMyZO1WvUQfo87gu2vHokb46C3iJwkU/1z498F64WKbbc8Y/mghP@aE/VBMwlfB24lesQRNKed75M4HQuuoyWeYMX5Yu49B5KfALloGV3D5I4cDebj7QAWRltRSLB@94wNmTOMgFGDtYpcziQrTxEFz6VQUreJqrk1pv4Q7s73ZrZFPUyk4Hxx@D4zhqGfJue70rOzKomtvzsfS/rrd105p9OE4r1W8cTKPohnlSEdQxOZoU1jzC6ODrQChHzO36@u1r3o79Uh8eTSuMhMaI7nwT9wZWWGmEOOXNJaY4n60z9F1zTokZz6kpn8toalNQ9@7@qmnX3FbdnZKYjpJRpHYUT@EnmFpFVKGXJZ4ZqIQG1Z@T5QpsRlypYJCA2ORCdSu3MNrAY0czkCPiNSDNSnrfOHDYGA2lXGCyP2yRgDab4eXFRTWDlmTteememWv7gZSgF6O5SHJuWBIplZasUnWSvY2neE9ThUuqzbH5Ldud9FnfS0jks5Uds1trbcgrmdoPofIZLaYUsFtBXbsysQEkXvlBwnmxWogbTLwf3xGQgQ/LF38ZGiei3GW@mwJK5bvZcFqYtugmk2n0b0Y49L3oTUT14nSQlEmB8EbMwbIZzEwqrzi/hpNde@CKIPdwob5UFJDySGWZunQDVbtZJxZGYwiV61cIkYqDRiWFQcwD2BIZacy6SIRm2KRBVjo1anU3NlBeajUrqpt3kBc4utdimIAClpzMeDxi02D6FCwm0XkzLmgKuvtSMHE1f/uTNgk08/25qgrZTeusK40IsfpL8JOxGk6@2QuxGZYBqu79GDG5a4W6/jrNYdtNTbDbmHzpu4TETgavzIw8skKZGmlJwnRH4DIoI8Pu5zIXc2daowhEtTSj4K3wenuaZNkAEdX4vv/tL0bqf/bfY6MQEpq1ocm5EYELK61OSJcQ44FA7wjv77rTQIXqwS3bVLcgJD5o96IJUT3xtKt1sHYy3N0NaVSeo9OhHwgwIdZJtttohBPtqKg3sFh00UAoQPYX/bSVD8yzEw5tv6DmIw5tRK@NWQvNYn7cEe0gh9tkXh6cR@5fbOb0njjJPCq@ycI@dofsMM3lPmZu4rhckcbbNNfm4vzfkDwoBcsauH27fpeRX5Fwl3v2acvTLi6z7GAGuY3XSWL1dwNZuhSt3AiE3bBqq3P746@xWS3lBcQWOk0EdnHWZoRidSR79XtEks7vZHXgQ5sw7@MjqHqZq6wYahsVR4Di7oPWQr5SRSE5RREH2srXEQJ@cdxUAbILMGuveAkKb9qwYnFRZm7ToFGkPVyHDQ3p8mz1RFTvkeK8KvUWWenMI5@ZneeGl5q9S30GfDyfBK1mqus2sw2lWXrbZWOSVZdTfqkd14@9WRufTEcL7uoXAsQGXozbBfBVUn3zRSpCxk2dHhZ1gY7/azPA@Wj8ZG@D2RxzU2@8fP@2ix2DoJTLVNrj0H5SUnXyI7UuclGYmemjOJxXj2Zmq3N9DK/utNlnV3fCooI7xFnUPbHFVLe3kUJvP08DZtDzEARSKeiAHuegpS5AXR/z1jrwsl/rqQHeOm5kKOuc2Idd3jBXUyj9vpBeQ/63IzNvtrrIdlTFeFfnABJjA3sZUvMJWnRbdROJ5gMRAnKOH3ZcQ4OzaoM6hdN7pui5tDXQlBK@dmxtPS6L9@amvBI507DVwrj5YLs6lyVHxlUBoeYydCfDMDOKKDyHpbKCr@4wiXYxFR79avnkAvd0yuFKBg28bAQxk7pp0J7paxmL@iASnqN31CJf23d5ua0szYI4tVxmYsJ0FhKaznLgqCbbplaWEab3ZHi0lvEZ/DohqpL7BbEASfV2BsyCybKphV1dBBnv9AtNvjRqFTQom@EeEq2GfdrzvfKk9yoXQc8d0VE/0l8ijqUXK/Y@5KHE@O/Ssu3aK6tX2B3HnMX9NpZtXeMiV8fjmVnxA1XBSXTuN1XELI8cAgdKIIaQAkbOspAPkFv5FSx8pd8Ezw5dVEVpF24w4JvzVivtEUgPN34fLO5Ho9@y41@/V2JbucA14z5CQ1rlngypt3/7@Vb8e3kZLSBEMGlwS2LCmbZpcA@OGD2F1z98MU3uPFyWhdFT7U0vCt4WGb14lvrKiyGNiEkFt1H9sZvNLMfr6bT13PiB6alHl7KqLv8tX9DOUik8kKfA@S3EsS26xwYneWqXXGjtuG56nVqNLA5fWBbbW/pyRy2@dNJpuXaZw5hkGLUjYLIvodT7I1TG@MZgVfs@PPpywpl48iXrYqaASHycad/g4Lf2Blx//tQY9mucoN1QJCvpy6q7Qj8Fb/WxOu8Q8YuF8l@nH3BbTUKZiybvt8HGctpFIiGaxvSs/UJ5mwRKxnc@28wYUsd@FSgNEGnUPlD3KdP1AfoLMPSuqeuNzf21BKm4u6sMcyHQ2XIh4s@MUzjh3gcdquGVxRb/pY1c9ghebl9VuLQREzmHPJTbbn7iiJZoxVBuAt2X3CxbZ/LoUVfSuhzhpgJ1m5FXweJNOC64uUgatMauE6FXQnlevZVORHSEazuEKvrONpbco8/DNW/izO3YZTvLPP2@EyCGPFrmq51hSsNq9N3LAil1hmOXQ8gqNd9C0JHO0FFwKbfrxObhCE14RlFrPIxRZ5cSGcTWB3IlcEi@mmqbaPoH9xyPtg7WasWhk4bWXQcGevxrUTOd@ySt9XLGv2W7ZI3ZrjToqjlYOf7su7IkiVQyvGlVB680vc70ELAY3J/Ef/6P5O1zaNjy61xUp7kBjxSGhqym6HVA0RzIBY2OoSN4I6TNAEPwRvNOqnWGDRADh3u83Bl0ufZv0DMwbnO2zntmC9w8B6aqJgmMkggLx00y0lbsYAJd767frf5bJOuyAVwLnuS@Myr0E7ipoXkrUGVRxrfIwPLKbn1q3QWyCTFnT4hfoRgWJjTNmwcS/m6pH2rR/55JQWNfZmDIHqn20j2RF/J2XC5jX4W6s0m8yc376o2aTnHUmtmhWNFno123W50/EgHaC/R24jvob1UdDLoOsOmjpEk3Intm6hTjPplzCKNLH41mh90MbNbqtHYjnx6VcO5a5bScm9lMaj83KS9e6rvlEKwGpQfLYKgk3h7OZjmg1BI3H8rYdcZxVJpK3406FkxHVPJ0wMELd3A1VMYg7ZJZv5wAZiuRv/BDWopZ2SjbeuKkNWIVuhrjgPaebOI4JNaTJMnMC4d35VmsVh@mRMB74VQnb1e90xRNibh7ksbkmLZ3MeZBv1pJTszEFBJRacrYjFVhHZDw3Gk3zix0k0bjKnMpqfmaO9fQnHbw29lrFr/dWNOiacTTnaf1nrZ9sDBMneSRtXNyklT75WYNn7BvEoNICZRo8XZLt61Fi6chbdTvOjttThzN52cEjw2Qo8RH4smUTW8zvvqqj7nnBFax9rlbZsMN0Xx2IzBYpMbggZx2YsFU@kEamdApo4q4/5aX7PuwyM/LYbHScm0QgLPxltKA7wqJntK17mZSufycz8GorEFU3XEvTzK5MYr4Eh1h5IA9XHoF6VD9en2ItjASkBci3HtsBR3YbjPjZ5eT2g3m5jqgcud1QJAvdiMobwRaqhkqcnMzlVEex/jLx6S9/a8JLeqVq@i2sU8LZM2JIV74JcxriVGmwuTsA5r67dl2Wjki7OF1xvtvNfoYNIe8vXlUxguH0PqA8i3DPPMg9DefqqEAos/uEjbR5kSpeLP6y8pB5IR@1D1lF/ycUY0WIq@1E0fr3kHdvpevem33a0bbjnIwanJGfYziPhncqa@jhbQ@mbM3zhiAnmcMsz9AdvLpA5o8Oto8puoARb6wJot/XzhoCpkib4Ngw2u/xIHVcwkSWHok87tMHW3VnfxUriIaBXIp3HOnSh8s2rK6oiT2Rh7481NUl7pGUnk3l21JbTarpE1Dz1NsK5yx/lMLPikyf2sf3Q3m6xp5mUAd3h2I7rx0Pgx7t@O0JVjr02SCfroCL3XGeKxzwe/KG6k8tNMiyzStH2luNDw9zRfOnUMDoWTcxyuBrZRtll9Om@SOk1gHz9Wb/kxhegpr6dfn8ar5lFE6MmKbJqusfUS6QIJ6PE5gyNTS5zXOeQQKX6iVdRWDdBGYGJoNkM7eauGR1TLSKToCyOSquBPwHsu8xk19BfBIgSzg5GKyXjOyhC@/c6jqk/cBmvV6YbVEoaCgyjaRTgF8MyXJRGBWptYkD6l@X5Va02XTG4yXS4hcQlynYYUuUT9riOQcniy88lr2EDgkTk5K56lzaHtJYo2vLCJ82ZW7TslacEhxVzuaJGUhmkBqQ3gqvT7Krg3i49obnaRTtWOkPaFqtJqS1vfdKHeUoIBP7HHN43lVhdPjmzebXNIZqwSeb/bzuMpMqVcj@HRv7tKGt2flE7z6OHokTYVr9oBevZfVTEIaLu/jfaAfegb1JorHmmbHieb8DMBI5UdPP2T52/16UGvx2RkaC1d1TW4YK64fxy/QP3eKNz1WzLGUhqt3b@@pCjRKq9RTZ0MhvsbFHDSTwG@zRZtokQKesrjjBiTwgTfr1YpWGLUYqfk63QnGs@@1ourawlti3Utm4mhh2ru9VOmdumYzlxxOXhhbdmzrcSlql7n1Qhr1mFEJn3aLsksqRmqKjwhr3tGDQnrH1SRr6RHCArSsfWnynryBj3c0uJ/qcINdvo5nmT@xVuZnGmsivx7lp3bvz/hW0d9nfBrrdTWxqvesM@lMoVbqy/rG@GquzxBhGKe2yIUZA@OGrTXCcF0dHArHY3utN20AVrQYMGawS2irSr6dgM8nFqEhuIkIcbCUIWiZa787DgKY4p2TFWcjVtcjFvS7gP5xWSEVKiLAmZV2wrlAm@SDY9US2wNFbK1Ay@BQ2t@aZs9WRM4VQbUr3@YtAj/iStSUM3MTIk3Toe/b3yKNPDaE12Gg8psPguRV4KtxIZ9jAwwBwCSOD2FbagrIzgVTd1F6a3B0Fe277Zohm2qLsALSYxrcyYItD10IerfdgxW@A9JHrtMdGouWSZIhyzCbwKcwp6wEnJBEv@70iqoD4eL6MMTlbhHjo5DQIyTkt7yvH707BI6IrQtPiiQRcz1Mg1LVB2SXtgIX8zT8NbWDsREIUhzxXtgF@@LGIYJcXp81dfoSWZl6EiiJNatSpC6cOubOdve8@yrloEW5dnPmcitUdHerJr5gq@IidW4/8ZtCb24UuptmC05hddWbzfoEuI2pYHjIrxTtoTrzuksTpYGI2GNTJ53zwnSoY/N7nHppY/0grs55I8Gg@EfIxaSDEga0TE8eXp3QRfqvusljpPpR07fIWN7bpYaQKptnmdxOlXyiWVdmPDm1zLzq5xwHh7Wh2OtWNKWp36yjjEZb0TVZVHknm2z0ZEeKQs8pIXSCqSIAGFfXS98Id5Idnp3AfZPNORBARghQNvvIvprFAtkzXc/rFRT/bNiD6ighMwJZYZlAIYfGe19EvE36Ck9XNUl6Xc/YM5YpNiRlSCcul88K8uM5fh10gxnN8BhGxEJ0hRbd7XwvPeCfu4t5Uz6M0YS3ZOg1jEPr1tkZ1nw8nK@JfDkIg9humHi1o2pMa05qfZCiw6lHHKSxR7JrBu7ubT/KDmtaW7af0NFcy2dk0A8NP@R8EFYf2bYd1gTSvF2gSN2YNJlcWmCskliC07955@oiUElTHp3bog2Y8AILuVkyuQJ@@8RkmaKtKerJktTp12MwmULmV31TQdBEYGoYVvCAXQmympMtL4YU3lMtbPxvHzpLBjrXz3hSTOQShO5Eq5KaoHG@s38@GQpouX47xmBBjlmt/r46v8iDVcy26N07LxXYV@T@6s55e5UPBcXPkwVmX5nXsL6B6VJs9S9O6osA82uegZnVxKOScwz/ehmgfaoFfd0yvrJAn@oV@Gar82NTLOCDq1jjbgp9t8jlKAiSzKz3TBnXg5P0JjG6N2rjNyWiMLDqPGejDqvLKiOWd/hWMfBR4Tl1B6pxQNzDPGJ9rc0VU6clC9/faf@tW6YLgbsy5ZmXJ7RNYd03kVjcUU9r5ys7vvvkvcEu6lCbEb24tG@gA7OLcVZhUs@wG7c2gSwJMtI0AQJ4Bn1lK2mcwYS2I@UpBnJTmPHRW8tgwGaQBSzU4zedpAA4U4rIQLkDzvPSKt8r9d8CmZFC6Msn8UrQZldJe9bXEFfn99sKMRXn8FJo6sf0r10HJ9ilUnQGryUvQ0yb5iW46wa87nvQNHFUhKpNrY1hjkySu/TJjlE/E92TFjAwRoJK2s0cNjIlNOTO8gVPPVj4GGlRo4Tk7rMVRQq9m0NXS@@vM2HMjF73gI9BA80d8iYBaVdj@C0pRcNrfdt35Q7WSWllu3SYZAdBfe6AT7oO60NDjYusQvU9kgrkt0gRbS6Ckn8o8KWs8g74XhwGrOH3LYAtXWbl@B6Wtmb3Yey1UOVPY/6dAwSp@nJR/dtMODnBif8LkklcWqc6RAbqiKHXbZGqIMQLUTe0XOqbgDpEaC6vS2xGoB5JZ@iyz7XCF7hUPdotI1g8E/Or0UYoclA971AdvbhvctCnU@rrctoNX03qqyqidJ6dpRSmTrXVOA1rO35Y1QVHGWhbeClP2vO16J1BBIdmiM5HXwm4J9UK//c0sdDAPnV5f/AfhLoVyo3KtqrarMKFrkurGw2jWcz@pg2isoUPn/jHK/jDkFHLmsVrtaRYKZqwMjaUMHQBrQmnqOLwTfHcQLPSsNMjp/UZy6zcM5nH0tqPunwq10yY9J4Ii1Qvbn5GvNWT9A3DT@yDLXL32BPQ2SwpK0su@WbBWdbi4vs9ipmE5KDcC6y84vZsFcFHmnRtcGot8erdcWB3IOy6326F4S3bwDkFpIco6iIs4TW49cuHQN2LIihx3@AM05QHEFm@R@Lhrn47SQ1bHO0nBPUAwuWL4f6yGsGjSFCFPNHOBZhTtrI2A1u9C1XhM7TKTZ47HdZQw08uUN2xnJL3607YgtBPNK9JQe9ToLK9cfq8uVjmNEi8b9IyxhgoM886ULrSRWjENJPw6gDxzlh8LG5hanInSNYKajBPoCqrM6irUUo4Olv9JpfGF0dQS62xFgXh@rk@zcDl7Kd2mRKioV/F5kvMFQ1OqhJLKqwklITM8p3CXPpaKEnd84sl0fshl/YULL@1kDZd7cTjPodewtlCZttbTJyDJU4e8minEr4obZejsK9w@0Jimguw1kfloduapEDcklb2iMQp1wfpJvBts3Mu6ZgmQDNtq8JmHbU@PsYuvMewGagez3u6@6Yb5xfIp9GKUf1K@Frd2hwr5nlf8Jpe6jJ5zYumGAtbsOKInXJuHVPsnZ4N8dBpu@seYLatJORHn1DYNmkqLggWPaM/K55ZLoJtsMGQf9x8t3Zvzb6Qja2Vtis7NuOsh70tZkqi@myI8sZKaV5n2mU6vxfdSzqUPxZnvhKn4lP1t5dmJ/M/cbCzY2mPbD86pvqKdHs7ZFiqhNaZIi1fbcBh9gw/RYzlm7ISG0HgJyIvsfjqrxyGj3OLreFpXxyMNmWDb/hxp59PMs@WaGKoHN@nZ7kZ7cqrDooUR6@KLqrS9e/XE76uXJ9BweeQyFhgT8nvFueAMQ3O/u4t9LhfporZBVozENVsUCiW2gAvqsDxrW6FKftmv4KUnStBKi9NmB7ZsCVgYxk5XyCq8G7KQr9SAyuMit4zf/0s@btM1lAAec8zyCIoWKOseCHUR7PFmp1AaYNtC1oEcQcnfhK3eK21ZKUnylj@VH75zpnK98O08uuFzC8dseLoNs36YEnWfJTb01mnX9ZpJq3n2912hxlj8okK9DYv/4Lhd3pUww/Q7SJh6Cj1N63lIH7qrsl8efn1t9bXMc9d9Ai7k6@/BdhF6HpYwreQP38pxyZ709Eg4608hEWbDMa9vLzRq/VyrrqwfHKHb6yqp64xqdbVT1pCtFTcLUujFO9exVfLyf16Yh/G4Wpdu5dH2sutBCX/uaMv@Ogao224hwgN6RYyY7g59GiNatBORZcEAZ87a8lA6zZHu3JQ9PLEsUUMSMoRxcH7bQ1L5COPntAMyPdkjuk6hmi4N5mzcieXSg055Aat6zivqT/@W66GNqIedirteyk7BL4u8t6Vz3h259oCrndA7g772OIEtjFdvMz5HbfjiHGum@16FuDak9Lnkqd3IBqmHz0jFiGwG9VFy1xS@jsQj9tWDQ3GvdlJGX/nCSx2wvaGdd7Onmi77CAibd7Rr0EtYGmb8zShG8TQHxwBHW0i@uwIriGPwRMe/jHTXdx2rzdn83l0x5UFS7DP5QgHSRysXUwdnX@/5rGKZaCbNJ5pKyljpuqcJYzvG/KmFBYlVkOTLB3iA@0UVsuwnrGpOOmowHHAdU5F1JD@6zTPdMgtwyyj2v9WSmhvynGLDYUFv2YxMc7Nbw/lZkKV5MbStHDVYO4NONfdn5AUzNvk9Xc8wAinscSVoIZas6n1frsZqRWla@k3KvHk@lFhL0z/bJzXzpcYBLNnIja3gm7MZvGWUNMl7Sa3V6VvNbr0PONHzPNu7ZIuchtHLYoBXZLLJYcqW97BHosW@UvD4frUKiNxsolnWWY4zqXLZnSC8S0U6Er88cjm8/itWul1aGO8CXrFuRvbOHPgSvm61oB23cCq1XUeyTFJArij/gvA95K3rpEnOguIxhTEqG326FMka6Jj/R2jkB@Ds7wiDXl5/GkaD4Ek1Y10pZEak/fXFBpzjQhA4tj@nRO4k@2JIVyCZbgTZNpvgRfaSEo/HauRMQ1oZ3fb7FlBejhERwMvUEejhrWq57IuCmCp1IMSB9CMZ9gH4QqMFM4Iwg2/1i/fWWOWQ/VIQPcg36q7MCFJM7Gs4mBH3Q/5Wgt7cPafvI5FHmo6WrqPiDByczK3QbvP3vXrAzhF0/30/vzNbfwcgkFTs8n7IW2NSgudJ4AOizApzu53AGSlMmsaLHVL4yPvBu/la3c85OCeS3VtZV6IXNGs9FR/jvnMnKeePWAyYs9mg0a2hgYeLEP0axdyx6AuXQoyugUq6ShdNTdIw/2A1fteO8iKLJcZ3YJoUMeydr97p3N1M@qwYHENE2OOrq9xV@nSME5fZiOJ9Vwj0Ji/tUo2UE0mw8m9EI2dQv1zN@AdQl6eA0H2lvmlwyBmAfOvJyjyWjaCcPGeM0muy9LGdyxCNaOs2GWz7YWlz79ysp/p69nCqGQJYZGGXHajYb4M8QD@iV1LjXWyV1K/oh9@B6F316ooall/m718KV3MfC2YuHhynVGnK@p2ufc4ikfXMnKlIxFWGUMD5So5JStkeAaRHeBbmD@QiNoojlC3EHzKxDUNl8bgYPpHc74vQFm3tBWLGw8Hb6XCqmztOVd2FtKhvZTFaNY3sfma@3Qtb7FycEM1nIM/FENZZ4o@zfEQW2vS8q40t@@RSV43dqTIdX4C5OL3SdezX1H2XzhD4BBMIN2jSVflHN7x12OUQOv4vuh/UDF4Ze@37fQyTRNWdObM2EqewieDOLhXChWqPaBdyDrVuqBX5K5EGRME6xv769c0dOtWjNVuWzmCsMt7iYR3n3IR/4gEPJB6uemv2s3HPX@PQKzYnth3WH/rGoRvxIX@0FRXb35nYfX70Y5LeFB1M8swVyProqs@Oq9j6XlhcM58gz8cnk27hvYgCckNN4m8PVfnCnyGVBbamTURYMFvzb3bhgRBSEtsQq@3KSZ/QEWtLrNZEKA2GPkERaZ2p1YHbfRmTYcr9cXHFiKksUP@zpiOEdwGwrztsUi4VP@GnNPuRHIUK1W/wyltLzlsuhYZ13spz@1jk@I7Gk5/0CDRDn445eAk8mArxncea//8jmJhVaVxYmJFda65nfP6FTodUkd@xn5f25Pb4KIhboO9flJ5j2pFtPxMs6GqINRS@DKweE/Y2Ayc5jKNtkgIIohHGPh@A3002q3a9rBjheYruDWeO8dqnnt0PyW1MpeDMXs8Dzb7C4o0A6VKDVGPPMhG9CHx0kBeslhn868xZATjVTGmXe2vD9lJrTwddggiozK9/kaKSxzkNmDP7VfOCV3hpi2mHwdPwgpnTcEJs0LcYYjmw2NwH0Xj59MLOexCY0Me1vkAaxN74MLbTQyNs@XibxW2Q3fZYyaSvmtabmbEiI/8IcHva4PLRC43bh@48hnF314No4@AhEtqhhnULonnWlPA02/vjOHIRVCewphnSMeOvvtBTxc0R0Tv@404HM2ScRgL46iHQXS4YOJsPBSK62LD5DXIX6PCo98ITYjSMB80PT4vwLlVhx46TUCZwuHxfw151t8Bi01@Y@06KkwxZXq9C2YC1GoRhYZMIn/sKS/hXBCl/m0o9B@9h/4frYcgS1Fx8ZVHg9e0/3Hm3zm3U@i66OUUlBY0p7KQx/FjfyChVZfdbZcB5fesoO0KoG8cKpCcl8UvdQnhW1yf1noEwtg4dO637lpuP3/5fEgx0xsZfudgFNE6lEOKAib8Drt9qqTOQfLBL/2afiDT8YG3QZPl@lCSyt7smAOd2b8i@D3KUAgJRG16DThpDzjxMsg43pZJikLztd@poU4pfupDZ3AzZV6umwffNQz0@0bYz2Oa/46EsrPyi36PgQ16XQKqhSZTOysQ8cMFcalka@XKPAeaq2ipzBwd/i5tK3nTQ07ivdkrYeqq6CV89TV/mprDdDmXDQsS8KmfbmDHcvW9rMDitQA/stp0gComIpM5nfAJHSqsbc5LvqOYj0zayZrmCsxKt2sygz7D2lrqQfj3GX@eI3LtUOj12KpiGPVEcsY5uMk5Dk2fz0IneiFpVhobe5pzt@PLmnAVxHvGlhtesdQfK7GeLfIGhydtYUXO6pxzKt8W9Obk3QwETNmm@z2TFbfUR0clwS8wV2H4najIBcYVVw2dlKCdHVTEWrUiWteO2nmLeVXP60xLdli@mNyaMjkI/PYTuHyj7AW9eivSDUcp57k1OhMMGXhNajrlFFNi@asfb9dcfaZaUCXaRL2u1qcbbZO@2rvYRc/zey0mQtAh1qxjbxnLueWidohlfPvJIdchmG5HLaACC@wbpUeCpIKiT3fzS11wLJXswyQC@podIvC8LZqOBJNBejQr2i9M5oqYBlpHfRRsM/s8HyzDAsGiwTGd7wjEXcn8RHUMAucD0b2XMygYT7est5mIMsJvNXyJspkR501lfkamfNmaqbhBqsb0HsampLmM3HtZksbl0s0e6PgviUC@NzVCZwlsaXMrFJs1u4d2Xxkb5QtcPl4eLucZLPrDbXX/rsti84ERL3FNniiY8rY@w2wy49lD3KwfVh12HK1RjRBja6dh2fqaResxf/LDXodlI7zOrItjnqDdW4cVloNw4H@VvEN8cCfn9uYJZglGIIFsKWrj8K4TwsT3yU0JHKa4xmfMGy6vEnPRfMf25dJ47azeZ2kU@fR9qHp9W7KEqhS@y92d48LH8p3wK6u9x3PjUR4GJRCTlDObBLxEF40DqvYYoDScNUucFQ2SRsu060GewBsyStbyAtHThQZlMAL37LHy0@WtgNPf3ymxBI3OkqfUORuogxAF0fFE99tJO359ljy@xK2GKjzoP0arW/v406rLMyKRm8yC7q3D3M64jSxVmvdqykf3eGfYxKS0kbs4hXoqyv99znZIxIYHCetDZUH9yoHM70v/fiU54n2uW00fYi@aMgfuXPLlYFbHAHq@@Hw6ehcX9RnbSj3iqye@BjMdTxXvz6@h4XfP2JYKrAKyBEUR1t9u5wY/ZdF@x79DoEqFMtfgL3ultJ1q4kts378SYDQiQ1DAl2h7a5uhDRHvd/4PjiwPTMjl1IDLNxs14JHDHiujFuepIZwmmu5UEKGckxQ9Vzb3KbIE7MH3O7XND0TNWo4cfBWGawP9uIc7TDdXA4rTGmbu3b@5fwzGlia798qyeiRTN25a6b9t66X56eh7KH7bmnpcrLI6kCxVi3nbsSqcxDuCtJm@Lg1xboM0KNivMdfMgRXQKuz17O5o7o49C5u6UR39m/yUa/TIOMPdn4ImLLKd2T7ewV0X9v5d3qSio1Su1ZpSa0KbtI1bEjNjfm0G4S6L4Az3zRV4J9uTX0fBQkQ96XuvtEUd2Livg8DPigCU7VrmszfsA0qHJg8qebcwIdhBy2B2wUYHdEErPVNY9FDPax2fZiVq9MilKffMz5deTW2gNWc0XwMhYBdu@TWK@cHpoxNUItWUdZF5Pcz3@XEsD0EBS/C7jJ/vQi6E0qY9zTifxoMTqwUB1596LHOm0sf277jJCIMiR8xSRfQ9A8EI2TyqwK5U5eKg0fnbmkLNxXI3r2sVpKbVv8dHTqzCeWhWM/K7DpGhcTXJLRNHcfxTMGJybJtlTDLP7LPKTabXbbmX7ihphuMjSfy2i2uFFzWlPVr93zOmUoe3kXPEpZanNzCGGjYwiMkJbdPJ4Iu/syeygy@1F8zl4kboXhDA2iyORo0cxhCYv@MkNKq9SDir45iw87EfB99ywuTaTJyhuTBK3rS30GXy4fR7igZvC4N/87a4jgfoSaXDG4/XdKcCKOPsc6LyezaFfH6Bwj4TxZfuh1Vx1@80F9j6Yjbu7XcS0JTQ3zl0PpdoCLzAL0UiFYYxAwJpK54we/ENAVVtIDKEOS81ZqjCyg3enqYLmqkkEZ8rOzMw80uJO66NMKJTt2o0GOUzwHvTz57iWFRPZs5FJ2WkCG1bTuowVMJ68SVhStlRfP1u1eno9Hsj@g2/Ep6Q6Oj38@AyQ7OlEyrXGdeOn0MYHgXkx/aTKi8nTem/zs5YtScog/wskCMbScwL8Ga/Y2evU3N5kBNJt8bkdq7fGs3EHodk0yFsuAh4x3h5bYH8i8w56fRgt7zJ@aJlPaTZLivhTrVQorx9uGJqbImu@HFuitI5xLpV/T4iOER4iccGp3rAneHVBHdC00VJO7R@W30iU4SQuH529fUVNBjQptEO6QpWyYyj7Twg6rVPI3x3Mx28C/7@6MrzY6Xst12Md5O69OG6wnf/eb2w8dO0PMClV5eu7xRswwgxvEkzX15k8uB1Ut0GahD0cF8ke5OsSsGHYWlfhPJY33Shjd9rUakg9ITUrpBP26mGuuE3YxAcQjhVQxDNU75glodnwzMHvYGpQ6PnauNmiGvpiF7OUF7nWGDUbOEcYXbOrrCWqYLfqVzvCiITGhDretEaiKRHygTl0lz4NaNh113BU9@CsogmPJw6BRdQoM0gLV/LySWYM87KET@NA6Kl22wLZssWpOIq7e0qyzgrfamWhSHn1sk8JqW5A/dg8OyQneu1i5C2dPj1vxDYO9ZojeewalSrWlVnM8Yxv2ruQR839eREbatrcXxvq5F/z7AAs8zxgK8V6MUg3cTRrSB/dy7rusWRMm@pupetykbTRQ41dyIBZ1etwsNGpEOe7iBokPXWxlpmUIJ4qE5FIpXARnXgw7v/9nJwPw6WYryUU55@vcNK6Jb3UI28G5R0VwetvJzWaO6wUXtujAo/jCcuys9wTLqyUYWjNWGGY@@333E0v6MVoopnCtBcWyK/2vqPCYuoj3q69Tfe5VfaDZUv9XmsBYtyC81Ga0iWI6NwMrvgZwThrS6MuK5hft2@5li0D@D5ltjLeyXfoG5kDnLIormvhaJtSUSHsZfSNq69qcIfq3xkpxiTAjc8cUEKbeFGDL7wUI7AvBIWvdDqvohTJO3nb@uMo/oX2JXa@0i33ch7qCm5616KaXooM/tpisMpw3T5mCyyxbX7FICxDWo7uDNp@MwzW7OwB9PidU3QVPWwkmzeSSFpk3UiIxzH@M2EzUeHVe0M52pKqulpRstIk/Cx2mbhnwUsqpwaLA6My@51@7d6iO9ZHhKLw5Jc3dAqx@fOt8OZENZ9OHqty4DZM988MPMw7Qvd/YEFrmaYY5EN9iG3ka1Gys@ftFJkXI2dRV4YN6PIBu8QZHE43ucruiLR9bawmyMtZn8kiWmPoc3f4LkpL5en9FviD/lBnXngIjvC0i09dFJvNev5aUkPtzfGOUrtiuJH5PijVpmqU1yO@oXHX4ept0ppAnGViRGGjPy2SvfaoUghBHAYdVuD5xQwb0FXi3DcwQIbQsC2oxuUfoe2aXwfIRtOEkfRU81Fvzbm72iKcAANAzOE/a72uhpVHoqwOz1TMu4HWjrK6lZ33IDCeKkG3d7NHMw7F94heeW8VmoZtCbO9DKeqxg51QZMRnAyL0yFs8pcLkqb38lS5zQtZhzfc1D5MFHZ6tC0FVF0Y8rPvidwR@TedhGe34a2@OZ9mI8ofqF2Twl2T/uste@H1yayrhemdztnHwhz7OlzmM7vJ@VoY5nJluJeA1fmZlGWZr9382wZQvvm7qHAD/cyRX6I01t1qbqzxgArGFVaV@3uHVV1qDgbOI31aI4GdAvWCbQOcJAWChkEYwFG14ny11dI0ftR4/z4T@dcfd47unHcDCFdNPSkFSU5s7@hnLwACv93/rWR6Z8OnG@X8svRDgx9bTSiZi6fW4Hu9rtQt1XqSMawOEe@O2x3r9@DwaDanabJr6IQgQncns9EqUBSl19fan7sLwxc/BtLukcpPzeiTBLQAinfV1Ilng2uJ0ZcJOI3N0MbDJfDjJKe7/JbQuVL@jjeHxyZS9YDhQNKX6YwKBtmB3oRs@sQiDdXAjdY1bXf5P3AWCy1M73lxhTsNxlkvr/NZe3fjk6XNtNXJUpaES4cB/5kB6AhkmJN5UgAcb@eVA0v/4NM/I2AaVs@eJmVv7WzT4haHmcJSV2TNDQL9ZGDN5/0hBbtss0PbaxM9dJB8qbQ3DG5wR69zYe6aBLZ3lT9d@bF7yAR/pUOtkoceKHjT@VjJ1ke8Upp8bkL87IaNyqKCxubHYOsiPN2imH7Xl6RF0kIAg4Z/RCqL7gtO/CICD3ZsRybGp/6HpxF@u7OQRoxj9bbKA7pAONv4wpQ0SDbDmi/XZvZ4296vnw9V7qrSlS1/biwqx/LOk8pp/vGDaSr68YusQxaWVCb8lMYU84XQxupj3ndgitYOcJCoPAptFyJ82xt7SPtETprcO13Vn9rstGfeZ1J3QQ@PeRb@J6hStvR94lkEPZlpqxtd6uc2TsrVV@/TzMglE18YjWd5t4uxG3FTamHBhkaLHy2q0ImZzx8e2MCh/NyOHbQsXB9rD0NZb/gFUd/ZfMui7HV4/OM/NEVowpBtdrtTDr1KSZb4LiDDnfZ7MISTCxaDv1pGi7uXVEw5CcqHT4kZnYmMzoS31nmiMYMgmkwuNd7Bgxt1y@7Xes0IQgCtLbhWt59j6jVl@MdbEm@8nHpZpqh9jT2UKIUNl/PZybbUo7wCo6QouGu7cxDQYj8Wd@con@6AtHLREFOTf6jt9eTYqR5ocid6mokfD9bNVKRT3e9Wd8meuipymvl8hoVBjV4TN5yNWEZTDSQtRrpLiZGAdpQBBqzI1e50LgtiWuonxkojpO1PTsvlw@pw7e710iDsOtDF7SvGnGmLb2l2sjZVCwCkLnEGAtPBwiIz2e94p2DzaScmXYIbBvO9eWPaninSR9xHhwST9WumGsZZL7NkPNffwneS9Drkmrhtn0H7TE9PCXDSssMMIIyZr@n/de2ZRyHLubRz4E6jrguftpR4Opr63@tj3PUeE4iRockgZXOTCAdWkGNEijvgb1D5GFaY6YYmvS6r4tSCveWnjS3OEAWxt8agHviqEGfIAJJT8PRVIM7yeNoEy/nrXMdcrb14vq0/LKJvtXX4kJ9Ol5B4srgYrQDJ@49f6RzAb67GOnpEZD0GJIQAzP3L6T8kWsvIUcH6reErcao1VO0tF4XW2iufCWYE1QB49xCqN6gxPy4aflawUNwJl9N8VsayZohHzsQpyxAtVvhcJtKlSDPtSbiYW5aB@m5Tbk1@fncHy02@sG4tpnaSPIzYVtT1nJSz29y4OlXRWxKlltNmBWj2JoDdXOjF8MS588ox1zfIfFvzzdQz/i4r3j@Ln57rjvo9g3irSvD3DmRB/LthF7Vo7xZVgZ3VOewFW5dZXiVHdSR0w33qSbwfOW2grr/lnQpbW6CeI/bp/ZgiRw4m/KWsgwP9PrKTdVmlnCtnx0iGMhYfs/uveUYtPf49Od5DA9oi8GXIkbpGSoA60jRF8@LHlNA7cw62EbPoDs8z6W1SoquCMZ8iNN2Xt0fYXZxEx5b3PJ8ZZu8kAy/779E35R37a3Oa6Q0es1aemBDsNbvEMSI851Tzx4PaxeI5WFewgqFkA3DbwHl1WQlEXOcuTgW0ZZ8EQerncaJe/OIuylC@v7qRZWdcMJtmmMVhYAGcFDRWqD9sXvTOjHpQEw6CKuq1P2dFXbub4IeP@A9X2vh6J6b/TtqrSr/6ei8EiOEYSB6FV2F3nvnj2KaaabD6aPNX3pYkGbeLFh2Sxn/ExjHCYpya9@To3et8Qn1Z2lRB0bzyZrhw@a3PLC0Ctz7CpG@0iifxWpQ@gVVJeLZEvC8ufuCIlrhej7acvt8VbRydzeOL9RqvZOZGsmdzJqj9J90cItA1AjDkBQcuRhhyqzhRGwMVnB8N8mTvC8Hk@@S4BLvl3YsDHqWFkGrrL6vxZt7dP7xRuZAtzlJ2VAXT/jZitRl6FmurArnMTw91gGT2bvuyTfXG1OkJq50Uxi6lIT9eSM9yF3/5KSc/HpmWfaRLHeuoVmkSiXdUd@Pq8ksg0V6BzhW/8q/PnoYmun8ix5wmwUYIiRuEsS8lQgrNqzuMe8b0x6sc/mw6tQRkVRpLbHX2mE6r5eps7toRbhf78APuk852bKtSGHcb62Ghi@05A1PyXrnwCZhRSQUqmXYobBvj2iN7lgqyzt1EXfHsq710lFHqvg2duR0WkiJGmZmzt3@lbXzqmnpECDi88egHo1oYcD83aU9s3P6qe7WYgLoXfP9YMSkYDa0vKCNfpvq@I8Hgz78NpDokhPxRgg4GyYPs@bUq4Dw3E/mrH8nOPR5uECEtpeMZc8fYMt9tb@Z8uzI8crwbRez6y11uTvH5LcllCHaXFb55eas5fK1fKz1Ua7e7vzJKoYJmldctb@DKbtu5ktvjweZYWRZgaLLwIRlyaRoV7vPRCyPpbFQ4wMrh7PKvF71Oki9rFPM@C3ibpN9IXSak9uGKOiP3aIb2Tklj4fZsB/R34E@35wvFA47mB/ZgOwQKj1rTWgsWfM0keGXtCbgLYTE6zpfSzXwHAWW1ZHY8X4T@iv5FL4AxgIVZLvadQXVzkBxtvwSTOggFHTt4VHxZjutJa6FJ7XW41Mg1qtm38taVmZP5L0lczWpg3sSZxjM8O11uG/OJQ6yzzqVFnRvZgBrRqGnvne0INOjmI/pRo2ejq0THJ6XkesCHgwVjoF2IFL9rifFiyAeFHwlcfhArOYUUgxW7Vx@JVeuhKKsyA9GGLGkphfgGU6sEPKWnOITHU2@K71UCZ0yTA8593RQQkvt3fsbBSJvE5faverU@gFj@Nv2XZIlS17NKBlSDIe5XIvx7eatdVQSimrhhvG7e3USUKoe0bKsfcnK9FKPlyVcYz/ldNCkny2XKH1LRSENJ7VzIbAFuJVMzRlif7bJ3DMeuT5wWtJ045Bh4uU4eb6zO@gS@tzGxcn8wwISH2MwuW2qraEeeq60TSN0NZUmN1VnDTVURmG9DTqZD9O2FlhG7ivZ4TS8rO6dACUbtfHBix/5TVGZoceTuM/ZYe5uo5XfVl6YdjK3mvZZXyy60zWsSvtMtCYdfuvHVrPcBef2SHc57xDy71DbVQvpKRneCdzl@PGIGoK5XHIw9b/AO2yMnWzgRDM4eOdN5aeMFk@boYxk8S2Q7pS5HY11mRVI@egMpTncJT4uktAe@Lg2sDm3mR0lTOXkQVMBBodWSfTrPW2wtSFLU8kTxdHNNrGc2MP3T@EWiLK3O7HZjfmAqzSmbxOfNY2yR3tv6@EbyJeU7sfGx@QrPqF8Lhp1p0c4T/KPquUFZxyxPs2u3/UFPcL43fWRgEYQGrwX@/L0U5/7vimXVgMIAZbqOmPiG83ilZN@OAmneIfpXXfOk9ZYEyP@tpcXt2I59X6oxEGLxeBbqKU6nY7Idp7nYV97T@niJ5msiZvZOWKzEkS9/iApXk5NzvgsLLPfGyR3vfxm@4NBe/b@FqSvHFj85kjNZGh4hdMDpsiwIT7LJO0t0mo3JU/BCLnKjO/twZ21vDBZP4biIPtii5wo9t7AZhChwpD021dFG70soyHsUVSKMW9DA1OBwYyzk3OAW4DD8zPF/l40iKyJFZ7DM1bcCUGy8BIkyeFq3Q8BXqv1qJphh@OYwbYvcy4slsz4aelnx28w5uhvJw2jL4S2CX03/O0njpwqw3jwy@piqFkvfVw3Dhx5uo0kIRHKgp6R1qvBWjHtmaA2DA4@ZEDDa9ONjktgFdVvNxOdgNpGYX5Q/IiXpkMKcx0JeN3m8/EjHzQOYeqahR3qThbcE@PoQFJgwjlKWGcBBXIG/qoflYaHKlf1dYG8m0QS9gAivcTXqVq8Bq297bDr83KmQ1gBNuHrHrxSwaSe1QQTHM/olmOAZglul@wpcmLy6EWTFjBo08bhqVAQd0q02Xc2MHWzR4NXgkVup80dB@hhVetA3sBXdc/c03AJYVPnrCp5U4F7fPXigmu1IADGuja04gWCqvyNUw5S6UO2WMHQdCWG1psm13FUxYS6RqV7CJy/caW5qW8GnGkkzNZv@936N4VQbOW@Aq50jwn8xoVydUUQqywxe8FebrvaouJxmXjZpacc6hy8aebTsnCiw9VpQROiD69@L8bxMSxw@zWTT3aO4zeNXA5H6piHIsOdj/v5W6CZGgpIwZ1I4z4nMpS/katonb/2i2K0jd/WjPoIZESSWU7LMh7ZIvomrZjxOS@QVMhd2jylEVoeECt@tmLGP19CWrIggt@iubVfoFgnjOKYiuG8Wge/WItsvJZTgyvUuRRu3Z90e8riAfEez8xWOs9vx3RSaUm//jZbHkc/mOa3gbZDQINBVvUrtpkVGnmYGn09wts9cfsFDBElJ6OWzpiCgNpZlQmCf8XA4f@mTRc4GcdDrgy2gnG2m6HQo0kd2DtFYJYIKehhF9zddr52h@fGe5hy5lCnMqSHvi2JEcCiZyY/TLAGGllAe/o2iv22Monf10p0H0mscnt/F0zC1rldkcwnPOd3mhaEvCn0kGatnCHaQct9vagUGD8jZsOnByCKClgXFq17SvypuDsMKt/O4ZdC5@xgZq5nmfaNcWV3jQOEkK8UmTn52Y2ZuPM@ujcQj8ZtiCcifhTeF35zpwe/zrNthOYmebsucPON@P4eqjkEJH@754ZlM8sUInBUysBz4mpoVIh3GS/C7xZA3M4JUl0BZ@erM6xLW@MPdDd4x3YaPVMB@zCMpbYGc24rJXh8VzVC08rLuuqEGHmaCrfO86drtcg8nEribWEfZoqFYAgoHa76yoIoUv9Y7@FN9Vb6k@xas3AYcr7RIDX3@/we87X1Zay@qmFadXSnouafX87zli/j4RUg9doBs5cKLOurh3vNW/WNMmBcu1aS3/gbSK9eWm0Hmbf1DejtbxC94pATeDc1Mg6WOkk4gWuwONn1IbSHpIHfWDFx/G1gq3Nm3@Ujd4KXSMoCnZ65@41MiJJ6lUKqiKhp6zz68HteU13c2s/FEuI6KWSCzVCNECPvZcZ0FmArKviO7EbpCuNXtFf0OZBqdX6@q6a05tRx7jjSp@aGO3vzjgud@iPOeEvvPgvBwF1B0G5NVXSazA0OwbTMsqC4w2ripCFA9FNpcW6qXoAw8qBn0@5a/zuUu7/1fTLlu/xpWRLlRFcajoDii8IIpb1ZFjGxGNZoX2roBuJ85zWA@C7m9YSvFFfx@C69/pvT7ru/Hd3bbJA49KDmOFkH@XW75b2i/NlcqtRccvfwrkfVAd9VkJQosFHrNW6n3StFY75raw@zofIKJMkXDeE8G270kyBlfGXVTtOZoc323dBM42KmEFhTefs63UIwsV4zyJIm9XVM3asl8PMH5v74tBXEBK1MMAtWQ2jNJ5rN72mrGWCFr3KXbTP0oXKv7O5FJIBy1txBiGq@ZyFVBj9Q9WlMrFjs040seTy2NMEQVXsy5x2dwtLT5WNdbyVvXyhrAi7NFbegLlqZXHw5scAKg7ZO8g/eEetvpfAw/zfeaGjzvDtBAAdL65w/q/O8b0NbxAAGsW9ap3kzDxQtbnUtU6Ma7WAMr2aysLwQbSGI9S9upYCdR4he8ChTIHexQd2lxuNEARh8fRB69XuDtPP43A5nQZr8zu6nFVvhN5cQRHvXxChP/RfsOKgTT84cMjdx3p4bRbH4jGsspgPMV/uOozVNkJv2zniippYxGZYgFpnuFaeREh@dWXuqfXPZIgKfJxVPlHn1YZRev35qtUWQC7Eno1xW6RTH0/ntEumjkdgJzxZhm@jEjWfySBExivQqXS8LLhRtq1Ogulmc5xd8A2zpl/BCpmrst25Ai93q9rbfRNNC09sWwrz0W25sDb95l3MjyuPrnjXz/NI7p3XZHEe5ISzrog0NQVycZbvj04JIbGbbDUNIqNYdoDfzlCn4LzqjkCelYo7rMTobic53VLve47PYPAWPktk@bb5wICzSslTUypH@xnlFt6/JzeOCnpL9ZMq1NkhexFr8@DIPNzvKboXwtOk6oOkze5K3DrHbaOQSj4GTRxRapEa2K2PbgJMc8PX8pL3QXPGenFEnhrdZzga83gtLX0PKVmvwud90G/U7ZGkXZVBliJ54MDCkIThNd5mGHGh1qnoxoMnr8dJ8RxQ4staXA@cZg1qQtZHSXlpbmo1CaRLPtIgXbGEdtFXUVdxtXf5WX51@t8aUVsHA@E33mp09EWDxgVMd4ODrpnY1oDcE4GCLK0GV/dZbcy9yWYWNmeYUi9PCo2hmTDNL/QDPMWDdNHG2/9uK4hqSs7WUQqPNvROlQiky@Dqdf08rOUO7CKVy8/AKxVabv6G6eiHnCKbxPc/mtqK@dGcrrK6UwuY/AVb3wI7UiWDjn8Zzf7PoP7B1px8rsGQQ89qjV8QXmzW3RYJ6mIdyZSooUtU8xl/FU5C999S4q3uBtpz/26i5Yqgo2P9zx4OA3DMtlCtB/VGkXksITbzPNfp5T2jcoy@sIYwJoDVlRqgunlRtq7XNUn3ZildW9xgx3jlrVz6l9Na5DPvLF6aOZ@9acJmiWySm4j31juTyrloto2593wmrFUYOqAzMM9C8iuxQiQHs2mOCx7HYUj1oZWPXzNP7jZ5ezBQWiCK0ZaSoealdByTTT2rw3jizsNYi5fbEKzd0jEtUFqT227pDc6qrIKKgjA2/802MaYotZyCSIoZh8T0POi3QRLNGZwN6dwZGGbCcswdBK5UZDPm4xaFMhtH00o/XrExVhd71A6kNW73B4@N1zd/fEhn/qVE@ttT7uGefLJB8YpQlCC6p3VFtd9A1BF1wE64QO8GThcewIjtfULP5bPUkJ0yZ1oWFXj9zMVDvU8iizXtZiJTtttNNSWiSV2SNIDvdXgSD6WT2c7SrXtj5IE98FWaag31FeBqtnFBBgyl4sqsL5tIlC@eTOLS31pnza60sx7B7n3TGDun1PQ4MKxLR2wFVkqbyNqG/MWRE5c0WeBVRXaV1B7rZVZA9q3MySR43rlDTT91i0VNezqpklxfO7imv57frqKZG5ug5tewu09GFCUpg4rrjgzH4gvoV6Rwk4CwCvfVPgsLP3QA0Lbyw9b1C6l9/gDwIOL/Ebiu9haNeGnDQ6KpiX8WaEQhC82tuCr0aUl0eQpdrhjhbvpoG56EPUj5z@fE8XrqY0WEKBelj6fYlmuSAcJWgyVkdqsmpdnp7Q7QcsKYnteROROKW1@ly0bDqCdUCnqpuBDoS35@u/gk@OsrPLCU8l7raribxofiB3j@MKaFhqUD0CFyO22pOB3ttfGjX3pNQNj1xhOt8yZbI7AYV4yet6zFMDonCZyPng6gtUzMSWcWPoP0K7I@SszDl9YNUXfZ@qze45WsnBmbTfN8mMZQJ7DR0oJaixhdUeahAqLXuo9TV8aUI9RlihUSYTYAfLU08MJu5dpGfCRh7OIr77JcOJu830e1BjEJN5MdUkIPey52glweB7/pZthbDs61jD7LDr@iibcbKxlS/35T9Nl665dHWf8/M9YK5BEm7RRvhRkgUmb5jVp4gPcmnvBJmNOBiWzyWkiH9pEP2hYQuA/DB1u0LMm76eXiA6WN5OjdjVNDLwsva0HdeV/ptCKE7ShyL62BYY38bmtDURSfWfuhpThgNqiJKzFYbe3Hebjsa823V7lqCK94Mi1N@Y34MNbcgjbZc8fXWfCH9PTD5rGvFVuGBMbMcjMeaVXuC9IAUd5gD78P@va006DMX9OBrhSz6emzXIHMdcKn2P42iK1UH3AiD8WGM8uejjHWJU1b5s2NlaWVkEEirZKs7GAwh/d2pq8vgSnIPOcWHwiktl87c/IDjz5qZe@O9bGsekEvuMSz74XiK5HXjRCiHeWLZpeximp3d770nLVfFKsl0/4KnzbutOtvPmnruNKXF/T21OQpT@83jicr5IkSHMCRWdvq7ZGNSdFoONuZdAsTcMYrwlvxbz9aSA@uPBa8YGpbMqi04sxzMjn9cLZnYpk98M1zxM7VUalTjtarv0Jf9s@NX0DXpOsPYNTxOi9VRWbpgb/j6VknUDvIRNDuysF5rsl1f@dU5B6JLSVGDa@nLrhe58tgjLQHh02XnBmvO0ko24FttfdPCBXbdBdfiD9NbYRE8T/Ev13b8Xl9P/tDHDDOlMI362daxoVrH47DdLfzyBu1HBQGvHuBdeC1D8xRBVK5iWjQJUCqPIJ0FqNmMUba3UINWS@XzFeLsNLik6DHar03zOJlmX77Cq7MwRUveHGkuj8LsD0pcf5pk5MsSRaPyPXfZy2dpOfrR8VurM2KzkJ1UF07tq1AnWPrbtmXsR7NbIH1hzab37mAK4iiZSa7V@@n9RkalwRs3tqR7T8zZncScZ7ZCU5HM@2t1Nfq@zNoLu@QaK1saWS9zz3HqR9G02n@nvmmW2YKGJu82VdCBGFZdM1asDOFKlw@amS@GrOXkGhajRLTvh9rAUibZmpZY8AJoU40Sc/dqi@jf/B4ZPFJh0yFvf0/C7p9Oqq6D4/r2T8W0pd7XDfpESKdBsY6TEYNQGU@6xxIcz7D8NlpH1msj@M01swOdf@Ea@@6K1nTBMz9o@rvA8x3dk1UbAaI@FeiFNczh7sbwWyUJqMQo10R14Xg5yCoRE8kqZxgynNgb0H@n2JW6/wUBM9pKeHDMNCrrDCDv4d59hXjegr/nzX4hRwpKVLVF8V6Ae2J6HpPs@q1J9LWeOJk/k3KJykXwS02xJnfEFBSmbt02U6rNxteVFg05eTWmuJ5@d0G8M/F6sZcFWDYbTSrJ1LTQoV@/bANbEqNWdo/GFWiXMaXgWr2DmheWkUEygyV9Q0Y0x2NwDOVtAiubThCAYGdeuzVkINhLJJmQHnPbEjDsMdDUj4gU6hZEjt6qXxRvE32D/72cMzRidvnmVc1tTOW7nO@P9Igsq4Hmeq5NGAWRCZRmTbevF1cB/xuJyLvN3ZuY/@GRBf0BxnvLUPBFJoAEoXYHNnUQfquCavmSCIa3bWNHTrWUu2tQeFp1T2t8qrtmMGNUxESVSI37gjn@HuLFMCizOG75B5YG7LOMYAjRyoQeM7WrDzVYRW9tjFU7gbVqEJz294WunwYNeDI9vW0LsHNaNcoLVm3L7TZw1WbCs9kcKlW7r4AQKaISQsYtRZZq8A7HDVXaMcJeckHYO3UrAbG8qaedcG7D1O6KXGEJX/azxNPtTmLnJYuUFheyfBkMurOBM5PfY08RPT@tg9NrAIXGTmJl3KD9LaQkGNUtulyJ9cqo7XqlFYIdIEeUoPx2asIKvhPQVYnnORArycxLmQY8eLRNfwOvDl6VAhe0wE2kaVg30NdPnWPBcsCbYXjgaw21UQxIjjUxX2Pb0efP8UVzI8/DvgNr@R2vnLW/QUmrEoHuv2cO34cpphNl5zUyaO8jeH@nPDatgOSPc3iDorbDhBlDBt2T77vtl0PH13Yt2mkNJ/d7p0IgfpLTOu7DqOKfI32XvVW5wR3F/AlYN/rOCtp7v07Q2IyHA320C9UgBtLq@evu6JPxPpWK7W@rmnuRo6Ct3lkhe7/3/eoSsf1b4SpAB3WO0nxrtkPnXrHYSROY5hL7VW2N@zUYtddafDSdjbpeZuQvxtAfVbY@@VucD1ODERicv53Bhf75ZD@50J5fXYkF28/XokmM5nQ31b@5mKrJQnL56bx7GfSWqEPLDa99Vjk9DK3GcPeosvRVgWsE2/Vd2Vo6RJkGLMb1q337FVfLhPg0NqSo9rVAeOmO@KCBziRxVSEpFTRR1Ul@ixO984y@SchlqDUPYk8deOm8kffmhVxNJZEodmfzxpB3b4fSZ7T3TyzdrGmTECXOL5exWNcPoglkWr@2sX83WgfFniOgTCnGcs76TQ7b7seNzN5g1Ak7IwgyYjnpsXdx@Vvewgu7OdxR5/aJrtneFGaJtJEBE0p8ZzVTMbF@cyYLTZDDNLOa4XXVuUJGJdCG98IfixQpUOQdgqUizjmnGEw7kN/uniPa/96M3FU0Aj6dVYtDcvBrRW6griIfltF11ZIT0W48fBl75Usi5IIWmM9iQHGWRnX1Tb28VSg/rXMwlobUPtR8PrNW5qoJqfIKlLLbFlu9egSH57o/lhM7S73ItqZXmn1bHpxa2IPTbViN0G8LUV0sFYgXz6oArFZb3Cj5PnhScF7pdyBj7@RxP6wUvxtrkTzy17YllVjKMRsXKqbx3EdWLc7tFiT7Fx5b2Bw32YzMkRTFt4nRKlyLimv4WnOJVrXnqk1C8TqLvQpkIy7Fy62X9beULQ0zCV/F5vSyx9d8VFu0JItEeMPnSp6njaVy0hKeA5PaTMx3nTT2E726wPjfXSWlTTso9qBTs7FwVxhY3/rv1o6w4ScGbzIvA@0Gm5u/UCzbRQeJ@eN4uZC9bUkGCy9xcbOybVCDkMhsWHZiH1txo1mmVZRU37gImLhyMCZri93kNyEsp1BZAj3UuzHAziNfgMDMihdGvPbeL8Kk0LrvYCWQXZqNQqLoQES0PjsuOIiXsSqwX373U5K3M/gEntnpUs0FikgWN@WpON7Mg5SA79q/FSBAFz42L9V@JYHP6tzVRqXhY1edr8h@r06uFcURovDr07fqs@LkB1LZtgKBZdNw/H7nYNJqtwbhyYKdxsNdQGZPFodGpOfciCgQouBzN@fCW2ST@sFXdwYIYz2kQSKJ4mFnxE42z@QcrqdkoobK1fPgqlKZcpzgWsGSl4r3eUmoxkpI32Ijr3Nc7HmXuuyjaDqsUoc3pkowg4IOrE3A8SxfwOtPHszwOKzrsVv4xmue@Wc0EeoVjHgvErbapagSjKr3xkNIHrX8nuK36c3/RjbhB5bMQ4LAgn69NU2c2NUdc4TE7hQWMzLOE9mn2Jh5@3sjvE/J5qC5jtmQ3J2MF6c2B3175GPiqCDk5yPeLllVjFe5WlUzmY/iHbnHeKxbHc/7K@R0ctL95AXvONpZxW/SM7oqT1PlEZZyLTvYxQzijxkujPPmfbXzxMe4xFzf7ja/D4USBa8jmGz7MtP3iG/YvbZ2cjE6GEzLbXQiwamaxn@0LIO0RQyPBsW7Yd6Xzki0395k5x7bBW@ANbxUcwJHLUBITlXVDyALrwMLYKvWU4vB2@ZXAYObr99kp6/q6xhqFT00GBo/AEaE7A2ON9nKy936k2rB8JGs3LfsHXZ55tLNaDa5zIO8qPxQnC37DkaqNUtcXVmeWPYmzConFu4T8qwtAprzqQmLBOfSRAz65dtsuCFutKE@3hYGsC@57gX7BYt7f1Nr0Ff0xUmhGHyOg4jlH9994NyWw3KbJkmgYiCf5Mql9NyKquHT12g@bmieKHT0eUl3rYGU1x@BPe3uedTNxjPXjLpcp50sjVlTuruG6hEXU7EzmtpymUmH1Hf4evh4hu4L2xU83XtnNwTCZO1Kk4FnSvu5qbEH/k6wgElU@RBxJlp@xC1AfHdPdQKc0cmBwEP0fuyICxD94M47E/AvYA0az@aC/L1ifHsv6suQKal4WkndjpRs0TympMrCcK6GK1g5k6r@hPQ4H5mofc0p1ZjuUAV13TtnoWkRevS8EYfXpD6viZY/ldhQ1qoYU3dhWp8aHQVs@EGSaKhquYkHpOPEn9ap6zd8/q61KqISMddD8vFHrMfUxL2T02SfL0muZj1MVJt@nUBjaSnD2LHjwfSXYhnPpBE5zE3Oosdpgl36u@P72F/UBJWUH1bYUrecP8qOXKw3jtPOZxWYzNY@TW/1W6yor2wxCNUsWmyxm/qBJhr4nvVVzodC4Kz2OLn6bw47R/oBnPQxiiBxeh56XkaTc@9ghR6agnvaCeHmSbkbnsNEdL5GMG38Yh5tmjXnpAQbzE1Yt7SfMPQugLIdhA3323uMnYCa40GY@WhmaIwr/rCGEXB3iuTyRlUTEk5ZO2nm4klNiqQLmWlrVvaJCttsy44VEVzCW4trgH6BuqOCma62g@dp6d1YBVrDDl2ZiL9dE1Zdh6tFmULzuMTbWdszgckyFhdhyEgneLzeNCCIsmaLoF0loUsMGTQ/kH@TaY4R7sE8uL2mEMG@Wl6vQQi/xU8PnVJirNEk036jCs0rjze8h9C5nh77SIJ6aa/cZ0ET3zXaL2WBa5bYJG@oFJhJvFhWR1QoTRuQAhzPBX3Ya3QqDoLaQM5Rh9oO4BbhBe44EWAeiLpqBI12g003sNbo6qDZDXvTVhC12MC/ejxKMe@zCvEh31Fa5xufmIo7SFFdo4lOvncLgffGS/4hSnrlPHq5@LCC32AchxLCyGPGB@WVbNo0BthWpgMbU9rLJEyvSEGQRkLFarHJ4@6kki61PpJv0iV42G81wySCYYbg9g2wGGiAGu@X8q32WojIaYubOJirB6nsjR/hoHocMKll74ZnLLC2mM5nuPkj399OomO0dFydGMrRNQOxU/qYinMNne3Up@JhXDdB4yxYqQy2xRngMmadbNPi@67cCbWQayVHsJ/MPA3z7qeqygipfzdhmNQlqy2nTl9jOqT8uooz5m3uNkMO3HG7cvTAaL9@4VoxL6Tx@jiu88HyF6BA4rWD3sD49DpMLy2YmDghRKsyWkKll/BBKhhVt6kduCYGm1Fzf89g85kY6D5gNAUjcGQPTiYS4XGfbOpSTglFrxA/jb5tHrzfRxBJk3VBzxo25fCMxOtc/SURGYKEHVxJTAyW59CBVsY5DL6er/VwwhGR/jrrRW9KqlaH7ObjSisBE6TrKhkdubNeWeT7CkuS3OJKNpZspgUsckUS@7dkeRNtoXV@uR/ctM16bRI82FKh8acU@zwawAdy0useh2wF6fxtxFSK2CGXpA69gA10ZWUCzALDWoxrz0G7wKxKFev0evGibUPWLdmJgA2pDiNV/B1yvDjwEvRO6W6gafS26qBq98nyFhmGPHrqLm3hZXNevSe2KNMEbNmaEhOTzAtRfrdT6INqLFriOMEDnEa9Yje3yoS1ZHHgzrfHYWCcFivQxaQlYyQHUrd@2sU5ojjoi7YYe5KyCxOG44oGdA8dfMnYgvvMzGnVq/aTXEWrA7v2v4REkbWG9X5WB5FLS/fX81iSiBpJ5EkRyHD04@Kv8ISpM8LZCaBWJ4HCdgqsC2lW7HKHo6JYstoHU/5e0TR4tgmqtN1Av00xXm5GNWq00QpulDhLy0/TEyGR/NCV4Xuh6iz@jkQQOdiDChBTrvEdd7ZB80pLbBMn/E0skLa@Gztg7zpisL3g6tKr0mCplMg1eebhby6eXITfgHD2G5Eg2aYgnCvo3BhVou3xr2x783FRdJTHlctgPcxvcYQ0M@KeezPjIpc0Sa/o2bNbBEJbbp/wfYMbSd96NDNbbfUL6vngbx8@O4R7iczsRQzZpwe86CBu1iI9VYCShecVYX4yBEEqmgDWENOXCH3WyM96QOczP5kPN4JQsAZLaoGwl/M7@Lr098CCaYalPwU1dGDPKwPRafIeOpE7ADFkU13BTyZouiTeOiM6RcgqI4yiXwSLRMI30O4RYKDxFsm@QcB2TkZMJdJOIWjLcvnduJzOYbOkBeJOOysnrJ8Zq1uQb32pa5EpdyuoRr3PmL/JE43zMR6txzLjnvpndw@OUxd1F/sMTYmF4wuD25TansrLBfVKl7xKlRy9wats@C7dpLb3YBLSl8BLBwzYMd1PW4TS@qwsCoekQsB0KT/Xv/36knWzvg14cimQp1AOsPuzgicdahHm2ykiQKtTMpdTxDRThD8).
**Explanation:**
```
€g # Get the length of each word in the (implicit) input-list of string
T0: # Replace all 10 with 0
© # Store this list in the register (without popping)
J # Join everything together
Å? # Check if the (implicit) PI-input starts with this (1/0 for truthy/falsey)
®à # Push the list from the register again, and pop and push its maximum
g # Get the length of this maximum
* # And multiply it with the result from the check
# (after which the result is output implicitly)
```
[Answer]
# [Java (JDK)](http://jdk.java.net/), 122 bytes
```
t->p->{int x=1,L,l;for(var s:t.split(" "))x=(l=s.length())==(L=p.get())|L<1&l>9?x:L*10+(L=p.get())==l&L*x>0?2:0;return x;}
```
[Try it online!](https://tio.run/##zLzXkizdlR52z6dYMRcMDMlBtDcDAor03vtk8CK99z6peXZo5Q8oKIVeQD/OOd1dlbn32st8pqoadbRH/1anzd@rbhzmFWr8@c/bWrV/zrc@Wauh//N/@ct/StpoWUCJqh7@138CGLe4rRJY1mjFL/tQpdDhc3@y1rnqi//xPyGai@Vf/7gUgP3nOv/9H8/@N3sQ@vV/P7iNY1tl83/HB7Mim//2t79BDn/9@/pvfxv/7W//q@pXOP/6@t/k/9b@JR/mP@3RDMu/r39e8Kb1T/8C//Kv/3r@9U/tX5c/t1lfrOWf/vVf//rXP8l/Hf9cZCv@8H/K//31P7d/@/0/zn@X/8vry3/9fzz117@2/1n@L@ffXv6Pt39/@cucrdvcw/mX//j7X/4I@//ebc2W9d//XwcCeKKas2VrV/gr5H@O8AjXn54L//Uf3xMLnuZPY4W7/OWft1jXsmbdn4dt/fOIaVjb/k//WOGfV/zHf3r@4j//TOr/Jy/wLPfPCJ64dAH3/pf314/Xz9@3r8/3z5/f79/3t/efj6@3r4/395/3t@/fz5e3n5@P19/v16/f99/f9@/P15fPn7eX3@@P348PvPH95fvn9evj5evt5@vt5ef3F7/8vLx//Lx9vn@8vb5@v3x9//68vX78vPx8fb6@v/3gLV9fH98vv7jTx9fL7@fns@Lb@@s33vL5@/Hy8/r28/Hzivd@PNt/vL68fb@84uWfuN7L5@fn7xfe@Pb2@/Hz@/nx@/7y/vP6PISRvmJgn19fn7/v73jJsw7@iLG8v3//fH3/vL9@fb59v77hai@/rx/PU3g1HgLjwJC/Xl8@Pj/e376eW17f33/fv16@375e3j7w4te37/fvt4/Pn@8XjP/l6/318xM3/P7Afz4xIfgHT/72@/b5gWt/v36@YxJxT3zg9wUXennFFV8@8Q/e8fbygVHiHni6j6/fz9dfrMLrK2bj47noGw/8/vX5/fn7@fv6i/f8vr1idK/fz0kxPvzu9x1T8fr6g6u9fD/peP/@xQCwLJ9f3@@frz8/ePsbBvzz@/qGhcQ7f94xhl88y9vvzzuGhn/fPrBymIKPd6zOC8aDT398vf9@vr194HExTd/4KBbwj8jw@@9vPAJG8/36/fWGMXx/4S5Py2AeXp8vmM6Pl6fOLy8vn19Yym/M89vX@@fXyw/ejVF9v2JjfOPXn9@vJ1PvX7jR98839sgXdsTL7wsGjMd4x6DwIazw588nXvLy@fL9@xzl68kp/n3//HgqiQd@fX3DQ2GkuOIPNiMW/xWr8vvzikf8/f7@eDZ9wfxgZFg/3Apj@P3jvx8s6u/3zwv@@LT27zeeCZv0KQWW@OfzmYCn0T8@MaCv3xdMIk7HGyYIU4YN@/TZz@fLO54RS4MFwZZ4fXnF07@/YtO9/2B@frDz8es7JgUfeMWov54EPrl6xTTjzb9/jMvvC/bw9@cnrohhYPyfz1S9Y7u8YwLwmT/m7/dJ3euTyB@sxVOKt7evH@xJPCKm4w0vxO@x0th3WKmvP5L0gw2Ao/aGrYXBYVJ/PnFlvPbnGZYv7NanQf5ILh4ME4/XYlz4DU7dk/FnV0wmNjO26vvTVB@/mMfv53jvH9@/rzgPOBHYBrjFB84JNvQLdjbmD4cCl8fuxhbGzv555gYb6/Pl98nGNx73/fvjCwcZ84eVxdtePl4wdOy1169vLNUv/vTzTM0HtgYGjvHivH7ibS94VDzPx5NyHI0P3OmBh@e8Ty9i/nE2EKgwvZjBPzoBc/Vc/oE3PRX9eFDrmcafj2dQv/4xHxguDgj2@w@uhOP9bIH/4rWfX79fDyIgZj248/kAE87h0wkYH1bgHY/3jT2IA/SBqITNhPOE8PGLB0Is@Xj7@v1HF38/Zf140PNBh9/3D0wOVgtbGS/4eMqDq2O3YdYwg4iFmF0E048nawiZeCzMI172@6yIYT0Zw0DxlJhZvA9Tgd2BiIct@ovjhcP75OblDYHpaRdc4Re75OcBho8nN4i@XxjL7wMoSAhPkyNqYuZen9HGQmGVvjEjiLH43x@Ygm3@oD/Gha339Uw6pu@Bh6cvcaDxsndMEYLcwyG4/oNXeCFW8PUTf8bFH6D9eNbGPX4fBHhwHkcFq/6NcPSKgPiO3YTT8vbxtNAbhoMpwANjq@GA4Fhjxt7eECERVp72eXtC//rBKuCQ4Uzhqi9/pAGLjD9hy@N1D7kh6iBefH4/e77/0fyYBrzo9eleLMknjt5DHO8PS73gzS84TLg/JubBXgzv7enLB3Q@/uAsXBnD@nyqjOdFgMdCPZE9w4kA/v6U7@OPpOJw/T5YjAyH3Yjg/YDF1wOI2NYIxwi9mMCfJ@PYTA8V4G5PBnD0HiJFcv5CVEJofHgK1/h5youD8i//UAMoEFBF9dm56sOCPP@/4AX@4x9P/VOooBb4t7/Bn/DCf9WFPydlNBPrn/55w/94@Z//9b/i8/Dx85c/ZMV//P3vV7b8ndxWECAd@vWPbyNYqy7DR5YxQ0FzRH2aPQoNd4e4HYbugr4qyhWCoYd1ODIUQ1XftM8lSYm3HtWSQTvkqBYvGMZHP259BhquvY2Ay@FdqLVKvDGJcKdlS9PsWQrVTZ9GF8zVmoFdZjDgbcvQZl3/rJTnzzXJMM9ZssKIyq5qceG/x1mH2lCR1Ax0CPxWNoDitoaLKjWENofBXy9GAtUl5hPGnYXg0vocMsJYWd5roWaDjXY3U4ZNDsfi7GEQpZBYRJMFfTNgXOCmWohTqWsvnoXxjGdI@1Ofa1B3CFabyyugYpcFyiVgXVrwd/ViL7YAvZJAEiCwNZaMZBhITtOcMzcgpgOLAzbRSZW9mN2G8AYhJvZGZhnQNHUmcqEHI1gEaOHQqW63DP4CJ2m7ZrWAh9UrsoWGwmU9TRU0HRyVgJQO2aO@axY6KiPE8qIoSJgaZrKTqMOCbI1oH2QQqy6wadVT9b9vjAILaFmdQQnVrY8reLtJd5TM6eDSeMJ8DklQezaaoD0pMKj5PiANxM2abR12qp1dNh1G6AmlyVkSGiV2xVwsD@hyGywKVhHvH83UXMMUEq1dQO5nczGgYmFgeiGy4JRZE9JQhdw5oCSKsbcqBmaKgJuB04yjm0qBiHtuoOi2hLngshKMhFPDQZm4DpQZjNoTp90oQW/OyR3NEPZL4eACxm4UxpprA7qFvDTclwTSPw3ZAVGcwmnIbAVGvoJFVtfGoPIRgkAoxjpoO@ynACKJaLQuhYlRDPQZEO8KnQXJerNwVraHLeDcQmKWJUw9nq/Wj7FM7xHqium2mK13WKZ2KpYAVG/tQFuo/uLW2wOq8wUQWl0D1bwpH6arv1SqF0jsethKH3LDWHWXjs4Oirj3zCSGgCjMyugm2KC@w1TWQdYkAvozoGWltXWsSLtOvgmcBnumU755bWBKsahsQE7gGzbfJmvjhWAxji2WugiTHctSHqQ1kGmcypK0TUDKIpFG1AJJPRLXCLkAFlmu3mllUAiuFaiZfC9A4eHu02xhEjiaU4MV3AXUoCZWYAYFpnmKwSygx97aK4GsrgGRYZSSM@DCEJpdF7sRZMsiJTEE6TpjWdFXEiqVGu2930BhwQZK5m8QQ1ZQxisC3Y01d1J7xQDuCoNIqmKQ27KXKTBTvyUQuWanAW4H3wkPii1raHvwEFJS9la4xB0OxC6qlHQLw@9MRwDFQBi4Zl2X5gC6@ZwDUXLQbfVVfsmBdRMQ5B2sSbLdDT1DJtgCGEdhQ6ROnDyBFA5e4eVmJ0AxK/1p6csKSl3QLrSlJCKIxjzfU2qcipDp3SCCJ1AxdfgbtD6QIqSkAQqoRy6HawU4oj55XwjFcQlKaN8tBLsvFLy@MOB1igu@F23yTM88AT6jF/M56ICwmoFUXV7LlBrwc9gB38nNUXAsWBDDAQ1tWvqGqQnlA0j2gUNFdPyITrKTgSuHqLKVlRgDkCxPwkYPWU8xzbHsbygO6EVLUQwfjisbeY7g5hBwgpylItgircCmNuAXbnPynYFWsXkFKB003DlVFqLrebqMgZLcRIFKi3cXNtZNJTDkblNG4WxhSBaZa2GeNRUyX8UkubGeGXCxcNgwl5tID3nDw5FzB3DC4B0iiZOTDHvOz9iycUo1CbBesiPoJC5ZxREL@0QAlZwnkQod8lWChW7HJQwna8LorTnpb3XT8SS@y/IZnNquwE00A@wGso3U1erCw32MDjaciDNHLURqCytbW4iZ5J4SOptDzyhMK9jAyNZeAjKHkTJQ1MxOI1LXkyGD5roOJdf@AQLfgB734Pr6DNbYRlDpqV80YAAyD0dQ4xoWNRSlt0JP4YiTFNCLtfeg1lN1XnAGD2iQNe251IqsCozeQTgVkB10QzYrtMZu5@NGAdMWpuQgDOUsohp4i5eoZogXJh4gtpRMIFBwbQ3CHIEtVs3JgUN0IEuBOdTWxPjCgtMMd8El5b51BGSddvB4RmTtSEgXoiyYCvlppbgE1mJJUxy1WKVOmDZOgs0QqRwJCbiyq0kQhzYsTJgGgcfeWNih8CSa4YBB7A4iGNXFB2roeuTUnFqc9Vy71YdkUcFwJwccJ8itbvOgIjfsQ8QUIy43Pk8DBDheOU9gd6NBuuzFAyruhL4FuiLtPQeuJypqhGxbcrio1Qg0DuvjAQGMgO1hYMm38WqC41D/0Cc9vZAyjkPGc7USMw0F2XUlg@CB58Bpe2w6Yv0Si7HF6ZaxIiB2TARWpiaMJaFkmEEvhhubn0wgz4JIiCuQO2y/O9EGlBUBB1pKK8Akuc8DcbW626Qr8Eyy5IyFXcpUZViNUwjV5WTFcA4DolTD2wkH8UIXZwNavxGU3SxBC4x4L9icpeQCB7anuQKMjXXkIDfzxARpB@K46xqXxlDBPRzKudPgDVGBjXVVchS4QLNMQ0THjiHPeqf4sFtQRJyzpdq6x2DHBm@TMnWBSABXcUnvEVfUQXPb6mXfhgmk7TdX8mgdpkDFwNgZ5Mh7XbaKFBvc4GvQJfWEJDojRIt85TXrHPchUH3Kl76zEVDjRfRSo0xRYEivi4ehEYHWcjlGfkM6AIe1YE5aVRrBjDVpx/Evo6lJ9DGEYAwkgtTZCrQd5DAWF8jFoObCbUeuHDdRj9wOhSnH18CzCbdVYCV6nCTtZthQDNuUKL2vRNjvPigMap9pB11jjcHJapxXUY0lHSxnhfkO1tC7Www5TrbGBe/KMNcS5QxekMPubuze6SPsDoRdrWsH0dcDEGUUg5gmRu@CImC9OyRqpbhAysCDo4/ArGurHFD@1fMhYiV1kXCgsXRSIUBSq652DP3GjlLVBZ81eUMY2dmvgdUrHZXvFPtJAijTge0HZbOwVInSRcPRJ5Cctd1O816DIVQBWOwJFgLshpR6BlMfDzC1MoW47wdFzeqAiGC6cuZsHMy@4O3K6rg96q8D1ryUEZMt349QODQXVRESji43q8iiaawLbC1BiTsdiOxKKFGyb6M6F7rLdmftqlGYupQKcoqJWiNBKBQqR7ZiiUji84ICPUciUw5OqY7BhWNm5ft5BOdW3coQJ9E2SUDEF64@MJ85O@LCG3nUDHypw4DCdGCMEvsURV5tNpa3XBCtXtII8ibCERiY7FaguiK5PYMHPl5wpB2UJ07ddDV7cxBIt2uCps9IRZRzkTqCeHuSIsEfE2JJR7ikMPlwRXuCqtb3wTX0aXTA86DUcqANsxlyC5Y1zBaGtTzYdu42kex9mOsyqhHAYpBM@@rRVGxFGgF787TEBgYmzrnyGYqMtTsJdrI1RTWAkx1BkvKdQmsWHIrl9iSaCoLMizHyYN19K8GyqiaTaNDPdKvCeoCZzcZFiIDcoLpshxhxpjs3aGA3QSLrPSEg0KM/wkaXN3Jv2BTEtmW7esmwgbIGWskQbAUHRkNNvgdSXd0QIl9Youd2QjujKDpgwsZtlsGvWQoaluJQ8Q9JJTYJzi3cDpDSXVFNvKGavdJWyg8GypADmUYloCPFpKgVVZPOsZ0dGja1gg79UOuCJcN1uRMaJwYNha9ZYRs3KLCTppUnGUhCP5Ff3KndI0hWd@aQ7cyuBaeQgNcP3pTN8RHANo6Mm40wHsUDSWTYNmXXxGhKnA7wH14FwWuWWlsjxJRJR4vqNNHaSsjLtIBnbOZAI0J4dAhFpVaBURhAqKuMUuCEWQFTCQRotL2IAw2qnIFbZrYFiZ6GyUXtdNxRC0RHd16/amIO8TVqj8nCslFtWPOdgvQETyFK1jhDhJQ5tPxO8MFgjarJkwn4phCZEMyDZG36UlQ0ZaYyT7knLOBRSgKHNwJzFN62j1CZTlyY4tFgftDqeboRXibw4V0pMyoVeaRlTZFPDqQmj1b0dWg2bmkRuLg3AW/aQcns0EZliYuPcqIQKBZo0kcaJmVYEpGqKWrKYDo2lHaWRWkj34Oiuancg@4zsrBIUNnxsKC0QJWJnNTp4sJMAtSCh7pB7oomBaYTypW5wbQQrmOtEy@DtBDWss5J@fzc4PRaEfI4KKcEOk3lUsKAxaVuOoTzcMTDAzdUb4HUrRy2HEH9VPK4jiPdWaBAv@YAA4S9gYYTPcpaZR7aOcOmu4Ox2eMugdt7sasunE@DK8oPGW5lkA3Ac5wzmmOLRBBvIB3dWCoPOfGNkSKxZJwLiN3HJZfkBhV6cn537gIY41K1EJK2J5f0JtQbUtOKPNXnYKxBI7etmEloN5d0pgHGgm2iOSDh6M5xA5Z3@6DxoO4jhY993JpZbQTI7YZqgitoGb7VQFg9UYQmz86@rWGqeoa30bqzu99kyCK5HpvnUAkNhEsaMwbwK2NSo8peNCwUqV8utRRo/hmzZYN8ARJ9Z6hQA80gL9UwOHpHGxuy3yD3mWR2UMqkms6dDUFcdiiGwGUwslrbTyT5KGsCCHdDaY8mBzuYB7gEhFiim5fLkdpeBsdqSinmjhZshKJAkbMcGw4RAAZ0wWlroojMTN@ephN0okKCDzGWe69XSMsDikTJqUayEBEtNJn1AindGgMF8sEPKPRRwMKwRF0exTgIRxmTMUxLYubZcIJdDyMFq5nBbbnsjutigZ1LFXf6QGlvmtIaIL2YMUOGHZqHLnCrnh6BPzQh2egrBZQ3UQB1sISM40JOlEN78ukMl9y3kYbpD7Tbuhzg6M5Ul@Mq4XSB2gmWhUyWibPZAsiD29c3OjyBK0BlkU1Hra9hvVwUmSHWqZIZNywZlLkgXJKTKjESqVXFrUuayMfuHWwICbXIuDqgb8BCIeqSDcwDazNpbF1ALvUkL97oTTAiEGFKNRRXB8GBUe2HMSNsSXyfpuzlQWTlQbW5ChB5m3ce5NJ6Q@ebk8EqSXBAhmKmk3UDXNPwAFWtYebbhj1GQnjGFTrq6hz4ycG5rXsiycmyRxl@1cie7srEuAFSosJzyUI7CJ2aRLnrCLl3xLnIYTseMYzsdk98Aougt85yIxsbmF1BYO@NrCJ/QA9PeFRahjsQGnv1NcGij3SWrKEhzHyCYI@zbOGUa6cANLYmtrojVSidt0W4UGHx6IUjXrNRlu@crc9/gPSN/6t4bHftMSCh7JH0TArQ3XpXZG7WgheGdz9zRgDFVpRpsw8WDIO90mKEwp4IAsJcOL1A9iz5aWx1IL0BhrM5yhrNGC5@22JUJfcJ9FEbl8hCc@i0vPgz8OKl3nOkhBFy6nijG42tbPZJAu6JVk4i6mdUKD5CP49@UDpsXiT8BXRJsRNoCJtNs/NEoiRPaVddYFAN4JBWXU4jt0tcCugtFF5z2jM5cHgD0vRrFFcTW5fBlGUlVLtv1jNvldA3yt4biFEKVpRdPfYmMClJEEQ8tFXv@avokwh5utXDVqvcynhnh6PVQ7MOHFRSr0GGnmGEyD77XDkZCsJ5LqBOad0DXq5wkkLkvrGzS9ArmdNKoERmirxonEGeTQb5PsADX3j9crY2OARSibrXfNiwdQtCAc2pDAy6HU5jINwQ248V@/4AlGbRTYK@MWoSOLzAgqoVU9QnFBAnDGXDxSCvGEu8wqKhUkt4cgKWywOvhGteglW3jIdmcxmCdPTbOBBnCS4fta5HSxfMB1AqmxM4dlDEQyA4S@mDpqZI5T0EPideDTqOeuLUhWLRt4NyUX3m0nCC0Ghn3/k3xilBUoW0eRPJjrSRNKQUp@gT4WZjgrMXfuyB2UtYodpiCAZE8XWCwjQD2cx24AsNVep03atBAaeg3CkWtIu8hDIxBcJqzqJID3D6u9uNSgB/1lOUlOdC8xjnsQdm6uL8xpyUORWkUmC0kKQZWNcN8o4e/O6TNue4HLxAObd4G4H1VahWUl9TFDkJglIQQrOBXLNtWVRKOICr39wlIbh4hZnU6ALQmrmdjbABJ0efFfqKzR@Nx4XVW7/bkPI4enaGqdURva4QOoncSpOHtD4Bu7jzaYGoUB7cJYiLGDZAWYbGnDkaa96vrEYXOlgjWG0RzfnUmaDPa488TVLiLCNZLYk900QlIhtMm89AXkJYrsh2tAi3adteTYBTcuEIRTPhNE7qtgIq96WVQbct98o7DsHj1I7WwigIeF79lofbmyHZ7tWunGgD4nYDEUxV1BykpgN2RsuDnPbRGRtHZQJNLhCLNCEytgAynzjXTI3gJDARKQyZM2tAI6lRB7FzagOmXJ9oxywIxB7xvMThpsgCJi/jGNJDKN0kNN1j6U/bDIc8iTq2XS2KtSbEaQmFZfQSHLEhJmUEuUw3RqJCL/RLNKIvvsE61cw/uRt4NxB6GMs73C0epFnSPK0FLpLZk5Z1YPopNpRqlwKYKIFZYRx5iO9HL@XNlCHdThDpmE9gu7JEs7m23MoVEoGhaj6lbmjBoTWdgz@hPzfrMXV4A4ltHbG2FcqcDEZhFOpm65GC1s2bGMade7SEcweDIAm@LIK7Z6lro1m8o7wrzQRmYmAIG3SH5dgC8WnFgCLuWCW9MxywJmFD91qfY7L56AwNG3UiQ2m9D2JTi63e8iU8LgxuhOWcgEQhfeAFpH@pPw9NGm18bowFjie4dEDx7qyqJ6J2DnsmYcj1Ah8lz92TFhGinGsJzTDS1ChKsAqWVPgTZ7a3BAVr6oHdxh7KkT1MQyuCEJk86zp6sFJ1Rr@k9yZ7zkPWH4hYUXugNNuyfAC9QOfnR3QZVd4GjDTHNZSesJFMhwVVbL/Bu2sTwR0yidOuNoDuSJh8nBw0MNTkcOcC7ubjsKJBurwcBQqfXC1HroiyBcRxrvcjtrJ/BXUGXTtBgo6UX0Sbm/f1MXy80nuHFYCK9sLTS8dq4UjDVBtDq0Gaoy3MiHmyBsezNDgxum0BJmeORI3Mbx0yIgfOdBXRLMyBgQscIw/tohB3WNWNx9kqgIjb2XM0FBTQ6g0Mcc0v0KNmvLr4uNUmnUWUFmHvZ/dqVnCWink8r4EbjcYdgzhfiF4XXYxQz9qs@ThOBzFvjl6YGjj3Re3BgVwiBT5qsV4bS7KiUHkxt4PY0T0v7yJaqh2EKuIGmIt/ojtm/TiPVbSbutCwiX3aM4g0wyBwVwfC25Ce6xaYUPIkfQl@NwD2pwdqJ/kgaYF08CyOp1ev3LlagBDmwkymcV06KLfUDv002NmAngK9RKwxe9qvqHkltJ25l0BeR/4RKrAnS1D45z5hhaqaQf6oCZ0PHhud9SoDgrrmCqzKNCw@SmNNbmEuEjJwUDCnk4WpT3vfTYQAeAWb0kKEYxD9jg4utUZvYa3DividssN@QXzqRXiP@4xGLxp14kLor@pKPgkVrn7eDIj6Yciz0rMhb23kCsfPS4KOmtyCOTa56JFFjQaG1dHh4qHWpq7EPbFMDHhsDSa6v3sqtk2Duc6j405RofqKNTbPm7FB3DUoeDgESHbwUhQkGdeE7tbgYJLbKMNsyxaNArRrOBFHE9VovJhbC2I@cBFh6zFUXrcR1dTLJO45cTdnAx@MaYV42mmJVG4USupa5FSNIfnnXdgi2tAjEGQKZ0bwgohjhKSZC6MQo4AY60yAw18Rquo@zXzghhCLbPOqUcBSy0iaR9P2CRQiO8OuqLfmZIwCCtr3O7fNTG40Efq4RTVA9x6tjm7toLwAljLjAchIrzRkWCviKXl10YMZXMlh1oMpp7XT3zpgQ9xxT906Is8bMWMtL9Vv@EZynpfbi4NGtgcVLedplHtXwWJfeppRkN@U5jOlmIiY8liyzTAAcvJs0reeN3XgyixYrilN0qJUQFq8vDToQd7QlNuV1GmuMwJ2bqdaR3TB7TS0TYY07Jd9whRFzLqLPvTUJjhb7wCa2lzaaCT4cZKmoo5smGFMQUmvhiq1Gq7d8kUYN4K2iKkColaBWAeqOaCFyODHFWWY0u2xV/WJBleKSlOzWB7Ykkh5Hgg@hrIUjIbk4HJ0NtrTFQ2ZPqSiO1NQ@aHbCWhB62xAvL928279ngqRChGWx3a/qI0B0kFKCNuG93wCJQbFNFMhmymeWYAsVsqJFRwcUpExh83UdAXOP97vKSDVx4vf5mIFBQX9DMN1dhtQofo0xBIo65jfaOIVRUbZlwHFMoIR5iSOqE3UgkNPcBjUoKRWNUIlosclCKE0Xcim2ksWBbS@qjMV0@3sLo9I3ixnOaY2ZI@LuNWKRPVQLUUPwxoj/Xp@IFOUKwBz@jG0ubIDeXXKzOsJSFjZ@0T@advDblCl4ZQ0iEZI2HVmhMlmBSjpylDsMOLbW@tCDUA25BktzOAkm/y8vR6GQpE2sLoxn@kotfOaOiEMlMveJKghVZLTaja67aBTNRUBZq/0KGiLBu7E3GEbY1Y/W9gFuqbwNDFqJjQ@tVXMVAKMQ9nQnZyL9dsT8G6Bv4pi20UQXYoVZcEAuUqS8JqrrYB@QfvHkck9TSDsJedz4LNMHYWSBl0f8ih1QEgM3QI6mYnROhbUIKdEHBzRrTMI2aDuz6cwYtLS1iJCA74z2FSzZsz9jf4IHj0TGsTUrGwHtSaBZiyww12eYHv0gswWkkS7shfYBW2FE2LZLqSsSS9ZAsOIkzHqAqcPsMguJ7Ax2mzZz7Wm9S5A0bBrooaGJYHI6XDn4ca5sFsvs@/m8nGEa3xEJb2OvVEiBPZsAoW@CabeZaQOXETvYbmVo25zhBo5chbgKkEIZWAPVXXHiDWf1/azYwfdask4By1sJCMuirmFKofrvGSI5yvwhIvGhy7HoRU079LdCyza8C6d5Y0MggsWA7Vc2mkNg459AH9oiwE4PxmyIK4t93kTM6Mt9iARUBhE7QJ1CIGyJQMcgvZKKQ4cskKe36DnsmMYqxAwkyHdIQoUIlzxrTFJV0kckEqTnY4@cwrQRASpF@8sHF7UuxAOSu7HF0KVPFjrNiAR6C72N/coMdRbYnUHN1ODXIBWoaqyFeRtvwG62jyo9/4qnGXIwNwykY4Qyg50Evq6c8i@ijRBjnN0lUk7AzMeULV1TMxVYKFmFDMVgQhnZE1TPp9VUA/NzyJDww6NYCtuvjxKBEzImSsTXOC5klWodELBs3tRiMAA0XHQMws776vDmBkDjLIaa8OqxTCuYKFXCO85N0w45SlS9ixLISkHorEhyupjfl5TL1KHqeYEnBYKEqVxaxIWnAyrIEdMrJPiPlUT@M5FoJnqycPlfLhsC9R@3Bn0/dyp5e5QdzQkYhhN7ZiEHnhqovNRL2pIN2gzRalEGqYXwmF3xKoCKyhduTGvsBcCj7go90gQ4jUxotZhX5lW0wznekqYTkgShsCmyqMdmkJQnCZyQMrIpEKb3aCKQLlD4cDutj9zzCTuAzJhABECKVmlleuDIODQW/E56CJk5iWhX0Uk7sWp7wIVTh7awQzVJW1ZaBKL18cbsiqgoFeu@0IinTkCOq1EOcNZlyw3yCnPhxfEoGIdmEZmqvAcyrp6jQBhJ8tgn3LrsKGuQXEU@6FHBYjlArcwN3avyaDNZlKCe0@0zVqkygFTGLsFbljaIKEZtVgC3S621gm@SkV4QiNvT/pCbcJveu86FGz1QYbIRWtEjDtSljB0fAPxeh/lYaHI1VHxCo4vncAlTmwSwqgD7cxjNJgHi8c7yham/cx0HqYGnYfNmxyIrExVEt0joPerYiIidyzkmIibSuNbwOUBT7IvekwQNYPmeavUYQ2Qs4IzNviZhvTkF5l61EaPxMDvN8JqutINUkm9eTHRB2Cg5XFOK5tjIp9dkA9QGulce6EgYChYfwXOPioPqBvl4vNyGAsOzRNXgWd@RL6Ocl7kBQ/iAKWu3rmVol@uggXXNjtHU1Jm6tahaVVImFfRVJndJHpA/8C4Q0CECDutgijhdHKA8qlX52h/7LdjpSWF8ojxvHxUTRTIPA3cjIwYSBSvwiOXwJLK7OKfV6Y6yxBlpvVY6A/R02bYPG0VcayzM0AFimIf2GFBj7mLPYjt6mRbynCIcgXko7s2s5/i44snNBSaJBUf62wcJxX4k/J4dqCh1BkYE5GG@7pZaQrwgcl0TSM9gZm2sFVkNCviyGoajhtJNeBgHyqxwmRwab6UCBD4YkS5cIsCcHeknCPymOGz94xy3CYYy5NNCsoNRzWpZGLHjsnv22WATpGwcxnaiSzbA7ZjRPGSsQUF2gmzKGAfxBSMEnFaZwdNYJTL7WxgiVGkohlrgOc7aoZM1NUbCOAmU1ydkMTD03lBX9eK8EPazysBqYEDYHNw@mo4gcyJWdFUaPTqBtXRKess@tLOtFTUKzk4qcykfhdDlM/mGSU7CfHIXupehh7aN4fMJZXTDOT0lLctFrawUI0AIW2hyIgeYNZJZqFPqEc4xm5QTAvFIccXDtNYsPoeuD0jip7fwT7trFlTE4Jgsp27wrqVWYJD5XlGcLokAVFyLNFjj6APTrWETuDkcFZSOw97TwOu1A4ULqUR40y1TD3AVVGNtSp8ieo6XU1OcxcUuwHoUReipbmhSyYLklqXTxBm9AXP23rjGR3bgMjhQJBsuVaygwkyDwsSb0nxnA4VP6HQed62lltfuwbIOsCzDGYHB2OYWiVBcxR1ioB4tLCIKiKSOmlIDp4@I@@giJ/Bu1YdDabeKikM2kojNfmhTavNufmwVXnjFmhj8xjWII9MCGqNQyF4zkKlZvMIFI0ciEOVGUDvrGTR3A0SYiA945xYsPU6uvlWtiT0kSnEhr0YEGdut6BnydBgLbYiKFDkQFjHsQBlsBFiYQsckkMOHtKuxNkLbCUdI7pD6peaB1qrbeVCgVunOZqNPJyy1LZHiM2wBCHoao@hJQb0cnveXnB8FPdaKrNpYOtA0kQBAZ7ESpYctdIIgzJaFlgMOCMHGhGDXYJhhpBF6VFtBnHAfOllqt60yEERBDE1eWCKBVTcdVTUEWZQN9Lzzs1tHAGktYbGUoSdsMGldhTU4Yi@YopHRJTcEY5ggk2TLXKJgWB4kRgBJax20yhGQOm2ZO6gvN1onJQExTtSyAHGCLavPE9A5WqiGbVI6oHV30mvOeAnNRkJyMy@bGIP3NkCo7jnhQylsyVm1rkXhCkaHorTDaLKBmhNElXZoJcBDaF/3R2qWdRF8eBfe8fhiZWxoA3@OgPYiJNZpXGcQXVwnCvK0u/SpWicHpATwOKvmONxtVoFww@RUIUYzCrVGvOEB8U974yBVuwig45ICGEyIgdlcQNiSsoi1FHpAIWcVo7DAjXqZ6ypwccNT8TIX/Zq36bSQDSXqXPf2C9ym9DQdVe6GKikcSJq7daQ0tPGvuySeD5VN9bjTA@XC@va5JAcrVxrixXB88ks6BM0RsgdjV15ghiiavYQ@4IkQ8OXKbYBJSKUr68@OEE6uDpYvLUPG/heZXkxmtpDbS7XjUoUYbJFDHA2LD1Ns6WATzt8zy738xaCbG0rjhoZ7ysPD32O0748b1G0YC8zmCowjCZXowC8J5@@W24VSqwUvXByWCBTnRv1/A1ne/H2BabRplznGEIImljUS6FxwI1biH3bmfGNTu3UI1q/pQTYJe5BsDZweWnn4wqHCmduTE6hrocBjTBcm7HdCXo4JZxt0VJnuJeBTRmQB2FkrQrE@XZ9qydYKONDdTUbwnzXSRH8xZSdFFV6riWoVbAdyRYFa7bnJQ95ohuoaAfe1RuCVjD93eWKilh3KNXjTXGuopYGCOwIPVV4j0AbJ9l0qOYrvogLmuZhvjGI3gnNwoRkjihRxOY/JK9JLrgaHexcHPHmWtTHrgu3tIRE1TuepFFMtpTdI0dZummXbI6qQx22hkUQkoPR8ZMFWGoLvLiUYgZa/XkHk5ZsHFFmr1wZ9gtzM3QgoxBf3T/eYRgnkGZ5ZGHCzaNjnGeBoJS/WyjJBFSNfQHjPGCUy1r10fProH9Pqw5N5LIOVzuWwzKW@HB6tSi626r/568w/P/59xasocuegx3DjNC3luuBIV5LtuP9//sXGRScywn2dOVwck7KtTRgxRhTjuJi2RR3KLzcE472FrLQrY37tM9lNCS/jAUvZ9FB5FtBVwHLZbPhV@RqO4addqR7KX28@Q7bmUqpcdNV5n1SdT2QQ5adzF27Oy@q1xxoscSnlU5618LyKlcPblrqbUb05nAZpNIxRNGePoVKlNVFuz6xSSzSYH2bKyIK6WXq@8Hrc15IOrGLSIXxA0OFcBamPNA5xIe1Te6RPUFutKjqDyCDYSb2aDKhyYSuLOh6TI/4mrcuzuRMzUjFs@kp6FgOViTasSzpatxRi6o2A9PR1znOPBrreOrQgZc5w8Ccc9YybdusOXF/buK1r2OeT6olmwdh7hH6PcoqNsJ2QLQP8FIoOSPSUqVbb4Gq3Js6UnW2G94L3Eb2ed5kuIJkW4otlI2V0oj11XUmurJ2uoA@aVHvYifoq4Yji8HZzQqWKZcHWHB8NCupEKiNA6YkZnYR5e7asmbWsxscdeyjSEgORxIz2kaHbd1mVrRAgmA6/jLBMpvcnOm3Dgq9wFn5TX74DU5bQJn1QnjuXKTWLDFUVap5aS4SewcS2oKWMsZm2KfG9DWVlN3LQQ4laWePlly32Nmy/VtOFzkasEt2iaH3KJzn4EwHNRYg92RFQnvoMyG61xoYTW8bm0kR1Xxi3tBZaKZxalYOONapxoq9NMfMAasW9D4vUiF0YSia6LSXdivA2AgunlShAibRHbHax8Di88unjG1PYr4UOapTEy0kp6gRdzlU8qvfe0iz50NtTCVV9XUUlemTTh7qCikT/XEGTtOVqhZdMn/uSJphVHipYFnO4ch8XAdDezm8d@@ZEi/oLxffi/uN5VvtNFbE/liZ1z2EhaQhGj111VmLOMHC4ZNPBs78Sip6QKsH/MwmRpSPPL/F63IG83DIKBvcmjn9HOlWuRnyiuwwq9Pb8CieXG7JNNck7ZhLNRS0UiJxydUtpjNwyqiPKL4c4PN@CYhRAh29plSjCwQ6EMqFSR0/hoBsJDeukGxaZ24ogu6hHOmMRNPeYyPtijYrqDiHrCVakG24Lp28iBqpx7s1QTQrNNX8ssJ5GAP4s@VtDDKXTsLmY4GhyEIIUUPAjCYaWVFccV5GEWGbYj1Tz3W0JYluRSiBDVuraR0STSARJtE/lvs6DXKKE2eCC5WtoYTxL@UkzwVSLLLXB9GKUk0mc452cgTMa/BRNlX2RqCUuWoGmpgYR4Fy7krV@YoriIh0TdUVKOl5zUJEmojA1qawLlKvo4FqiQK9bBzRftBCeW0xjG7qWWj90CKHWhz3HOY0SbzNFkUSZCcGh0hNaRQ0WALDgKqmH0FSDCKBcD36hrtKPh7OXnvRd68W9iWdTfS0joUkdZ8te3CBivKqJBsWBDUVr@dzIoj4/WOgn49Hb3JJEHcOyIN3pWGmVjJGFjWkZjr03i7aXTkT3/YOf6zUyhfpU0ctJhB5UZ1shmgYnYjq9h3Mob1aQE7EfusJhgqcBwbXHcO2dKgbCAdWva/LDhUpibSgQ1jkXnYi0XVqhCLxNNFSjJJWemJ13rCvWGYyrk88cXyx1zlfgxhoteDOsWzGhFeIntWUbrr285WrFxFRiKQ0xy3dhBTKAbVf49Ytgjj7g3xFxXyL1rpSKassUESdt0/KpeZgo8vb19g2GwFoXm55OSQMWW3raxd2JnCVq3XpdO4uy@obgcehgWMX8wj4Bh3WCFkZbVkvyDuK2ViX0Y4EM4fmWDvNTFAcmp6twCl43lXqU2kuIjxDA9XW2RG8TPVaGEvuLZYSqUhlxO5tqVRA61yYyGCxOE4TYaFAMVwxpoOsmCLdoa@uIiRiuFOrKmdfWqbAXrpIy4dkCPcpXkJq2P1CXqSYaGnPdJ9Is92IQmuan0@x3M8bFndZxe0IzSWYwSa1K/CJQFhQTS4NPJMbE0elG5SeDwtrdOI2VN0Ckz6DnZxj7BmVP2zTKmSROAiHYYldpgfmmN2dwFXNPR0hG/Ontg/5voVsPyIHTomFVlvwuHYw2sWVLV3bk4P3oZktgtyJiwf2MGJnh6C4A/BU1NkEAdml3WWG2o8YiSul09QuOIFB89GxucwLTJY2bO8pyAO7htp4HGtJ22VTUrjTCdREpuNEPQVb5/XQuk86vrghPVyHMFFsL@FM3HT/fOJF3/WwLx9y6u1Acj1U8Q1pQc2lERlBnRRkKYHgxeIAk5MOSdrHGWrKEsRphylMrEFKqdI6pXq9CDaZVH45vJyc1OkKbL6QE8c/@1Ru0cyWU@6hnASk@IClw2EkEgjlCz1bVEfu5oBjuziHxDWfewDX5KtwJwFzG/dFUcownELTVeydrCS3EUZ8ZIpi5WybK4Mb9qe480VKWs0tERqldcfIJ2nLs9xB2HJckIzCXGWiP59eC61l8WaeHMVaYLygZEWiohbzyNWdKJ//w5Ou0jraAVWPmMpCVxgVS8h30Ph@05MJxGXDrA47wSBV2jIHehTHOiXRgRfyJV3Pu8jU3ebzsI8HzaNrtDW6P7qDJ5LF88vycBN19rS1Wr3LQSDj6HgxnSCzzYR3j0RjYqaEJi9FN4wQLpwbcmfTKpXUPIRq1LGqtZQJVaJEVTmj61c5BWRvIZNU30eM8Vqaxj/hYMmcv/OjdIgOK53xfA8Jn1XeMsziUPlcFAqLA9VSegVmvUJ/L10jmS@BBk25CCNjOzorHGvSxzzlNYzVO7PUjV6ZuRXBCWFY0bG6RFxKDRM5oXlbJTiq3Epm8KSVuviJuOAIoQwlWM5bBNVyJARRYalWXqsvB7nzEqAwvQbSzZjYawygo1i@IABJMUhJfrpWm0OZGTh4qTPz4B@EAFzjAyfD4AXtqcGcLEW4QiMHHjCHmhBGobS1YcVSm2mhYKlRVIq1mPBz49Jrnq17I2s5Q@RHmzn68zHl25KwQUtzXSR3I2950IkOu9DM25YBCzJJaWiPJt081XbSN/3SCk6q2b2rODnVnnOE3FYPs6GpoD6R@Qx9CSw4Uveo2Lq/LNhjlGKbkNXZOC/rOTi8YZvSVvTY26PCpgVnE2ZSs3KQzPHi7nl1ahExKZ7UsM5NFWt1pf0dxMCopodAMXJOGy4ha1tQ@DDqwgaVPI1sYZfPi0grlbWAth4bR7jJOrvBQJKfXZRXxfN7ETCPYgy2zR4ukJlu6T259IpEZ3M/WEV8MSoR5kd36ZYozHWxiqNrN@d8EmlP2HopaoW/1oF/S6JnN/sSdYvVZ3XRbUUw3J2@ICJA7cxCM04WlaGL9RlCUm3hhpCoCQR6KZWDeoSgLWqjS5lUgvZOL4eCjJEhhDZy1wB6a6534GPdXyd5Q3CW7dx2nhcjyIo2yLYAZ51VoEuDve90h@uQ6VtdOygYxj4Jre9nNHP5CCIDqmbbDe2PfAY@n4S5iD0IEa5EWoJZzA41QXWfA3KHeYNpkIEnoteE0N2F2aRw5hCcFLuzu3QJns/U5aNmRtAjkqByKyYzP@RSBCInjry5iUhG1zETZLcq1HKq3OAqpZ9M5MAS5cTrsuDo0l3vhOZ6E0fvBae7aRWsy7rcvRVkwdgoLlXXWnIpKJY1spBOWPfKlsznt@Uss0HhpE4JUPIUUQaQPY0JxFwVYmktHKW2pXzakdQ4YnILR9NOFZMV1@KLNWn7UliFsZ4RqC0Mu@eJrU/6S5XrUoi7WAZjX@vwnJ8XX5KyOw5OgHUEOpFuJFNxY6p5VhUYIrL1JmEkZEj3CvhrrsUcb2HtKl8TFnVyUVH61PT2DQmI0EwkEAUDBhVpdeuthwN1YeCxNN9AJiktVyFUhYXIrWTMfJU6ENar51So/bxdabx1vQH7v5qXUUjVoTFBsnoWmH6br8vgQrttR1K0xlg4rZKM72h3@IHPzZCYi1XTVu5u27QkfIn3@m5J0zlPnHGp9RzUe8NWZAVgwfMo2M5@Ck5UkXUVoAdMaoVQziZdYum2IBhpwzMgdtKEF6oigGEN0un57aWLE8lNp2WwCZZAddSQNQo5CgqOZbuod@R6pxBMafC4zaXPy3YsmCUi7pu7vlbpWjYhp5fNaI7tlrlBMYfA14qyretENdTaVwj3pHhO46de1HTC2q1Tby7u2OU5rITtsudV48xN3dIwMxqcRQR2MQDDMUDZiGGdEXrQr9PXSkHpowI3U4hRZctWahgcMEMXTkWOgwyeXsKdGR62/@CaB1r6mKUKLx9l3bljJh@aKZwduxnOItuHwqTso@GYuYuUUQq4Kd0Po4nJfnQ4bezd@BYSlpDyg@QpQoPWjlLnumUVJlVNTbhZkz@5khERte68GdL1eS17nP2URlhjwKmdlSRHhjZhHXIvyqehBf35aBzXbsFkxc97fhKL/d9h0vNZ4AOJhYvA71stdqlQRHuUJkncyRGzQtCjhNdAsmXiXLJppvgjjJJzb2Y6KfSUnxNuW92FmnWWuYfVIxpxJJyh3AN6oFM/jlB6P@8IGMMecvtjgwLFvI8WmJQDAs6iHTqGauIFDJ3tEHbRZ5Sdw9xnqODGIXY4RzcxZJGf0FM8gzw4WW7dmkSCwRdMFHqwuFECk5StYJqXsLVx76ezTuWkJvBTVdeIwuU4m0Se8NGQ21Krnp12HeoWRXU/xFG7ddcc0ARongOINCdKC1iLrZFJ3T4glbloXg3ZA5qVFPRXQgi17DLHIAOj77tOHd7VGPf/xd15JEmOw1D0KriKvCjvSJmdvPdel@9B9hxg9hPRi@qqdCIB/P@UJDhTpRljpb7p2tLhwzcRdnJP2TbLs22yZXF/68WHtPlecLXPrD8oq2brYxHxpcFkV9sBOriIIJrIhokbO5gDSf1czygxI/P0xOhzXWzC2GreYXuenk9Xtez3xspekSa9@kWIi1YemwbnK2EgbYfjKmKY5fU7gSjk2wJpUjnS6IPZ2VECqwvHaNDiJuAfd6mM3Cxwja7oR2QJe9YoWK7ExNPeKkaL/11@27k7VjrAgrVJcPjJa8gMbajIGYnDV2i9USKclHNb14QXYneyt8lHvi0k2DvxyNrK7ExwP9mWp2hgmwhVmmqCnhUhCM6S/tYuD8NU@mhs4JbenOraIz3eOQXRGtnpaYv6aOUyQlR2970V@Q7UCN/NccPROPEgwIZj8qYW0JqBrOunmZafaoVlqJMqK42P@lUiYNXsC5ZgJjhYqyG@BNYc7Wb1YnpNYWByx66dWuQEVXMyrynaIZ7sabwktkMpD@yJ025cILmeA31t6UtWDxNbl/QFT54@7oPP@21tn0MUAVktc4V3SkiX7xyl7YQlV1I3Aokmts3aASvNhL6O7btiRkNQGTZWavG1Y2VCoZX07AKsWE48cb@9SHZoYEnKjylERc4Y31UfP9xi3Nadls5W5LxzpTwFs6S9CMWTBQ10/e5XMKxAsKZt/AT5lWRJW8NsG@Dcz0XWDkQUF0fbzbXQQB@KuZfDY0HeqwUyeCNM2nsPacL5GWB1mYGLUyvSNmjQCFGteDeov28cX4vPkY1raUD2H3sS2W8lBTMRI0cwnhVniNCpnLV0TSVbEc6jejgtLo1ZM4470L7wnGbvcY56S8Z1nNERP4vR8OorWxmoT9u8464fsH4G4q4Zoa7XaTi2KH8TUVgnZDFQ/K1fZsj5h/y5siA3mhnSctGXyGo8WcVY2k8uyIrOjIR94MngFJOVdz0vWUOg9LR4F@IZfjd@LOIOHl6rlXffruoclnoWYrC2AAfLTo46PvzfrjictpXskiVe0pBIp65DcVS0Lp/QdpP7jQQHHYnxLboKK464Lt/Wks03WKijKpRmcJGWhx4lWCvh@NRzSANo3fDwwK@Bm1H@54D/fFR1Ii4KlMEgGTGsa5xl4wW8wMucSqbiUvrxW9rHp359o@VqxXxeXfFUukXUN73VXt9yHPm3z@46Pm6hFawktECzbhdx38xqj18MMHvkoBUDRrsxo8rNQVmS6e/r0F/XFFqH3LlzH0btHr07ZuquJL/@J8nZv/Pqq@oOPtd5e@ELjgp@XDwKR61fXwAvLAsw0s3FfAmDT0u/A5/2WX4lKVtznBVUr9gTToPfF9tyB0E2yQ2yLWDOTW8BIyKPkP12/du37QwXdG8thpaKEwjNGY/brcqwOqA0VGq@BZY@NALENRQkQckUJIIi6tFjofOlfgjLYs0KAmMBKm8ggdASuhO8ITZ0pXBP/ijWFUddYHETT2pCtsrxi8pop6TI910Ss5WbvoM86SHq4eZl7pdG2RSotLxRK2V9B0Mht@ajR6c9hocECy2TxvI8SJ7RMf1NPGENLytZIBh8v0t2tAlgr4x4Z1jcaF9pXrS8gcmZ/7SR80K@r0YxFYP0MrPWOwshoYGaq/lvqU0Sll6y7hkR6iHaEuan3a1XfmtuTGvR2iRxuZsp2oG@mXVTbUDUnSnvvhG0nhgWlsyPQnathRMELdOSsnugy80BY6yYrzL2bBfeQ0WCk5wZDn0SfJ@GXoDClhalbVIsp5ycnzEZlvm3ByaDeQO@8WwosJ5ZjF8JpGIjmVC7Pex3PQD3HqDNT182n4ZqWIGLLwCP2y@ZA714mT7MWZiClj693vf9C4x70wHuLPmc/LfkBKWqg5hD@dZ7a@V3MLG0HuQjZGcr4vSRIvUOcS623uRjoVbFw3paOBX7Ta9MbsqESwRdI0/ujVXXBFQQ13Vq1l9XmrjD5FGGeSscrt5l/fMCd@TS/rT5lfmkKGhfGM4k7W6SyWlz3vyrPlUJhZmlr/jGyn4tyMnvnof5cFKz9HNo@qLoNfGZQKedgt6dPnHfqz7HZ56yTauDxjzecuI/ZmnQkJlrclrxFwrhLrpD18dDaFRubVtWL@Pniu7d1aV@ddNsHY0cWUV@3cKspPeGh0BzV2sM2bw/KYeDt9Y0V/sSsSHHxNVuqL2Y9RDne5ZfjKVzlu32navFg7AlTE1djlt82WFopQfJ4vvE2chPWutxnUBlETE5ZdUQx0VU2zhBdbhIsR@ycf16aTg5Ut72NS8WNyND405LTl1A2TT8LNPL@lGW61WP9R25/CogXRvxNuOcgr4a8c4XUoOuQv71UXL9J7v5MoEnurVLg5bFcltaDOmytIbJ4kpknH2hrgy3iDWa/55V4Tby6yvRMDNJa84wWp7eH31jclZePjuBHt@iTH4qrZcWknQyqPRsJoYeJ7MJKWHRgn0WROfm7rze0kcuvmm2MnvL5GnTm0mN3O7eV73XBj3jluZSQ//RuVTZElrnL00GHytlNO22sNmamis@CtC7a/bGi5/bR0cDKwReDslklKMD5ghWv8xmMpgiSEPTz//2@woZzuFi7gwKZb5d@gDJo88nKn7Sp@FANRr5JkVpcSAOT2Jvn1Gh5fLJQhoTJcUz0lqBL9Z1eeHqRAcxDc2UWw5fX6fs@Zz2bM3pGm5uMD9FeqOdW9RJNNJF3/ewLTrFQMyZO1WvUQfo87gu2vHokb46C3iJwkU/1z498F64WKbbc8Y/mghP@aE/VBMwlfB24lesQRNKed75M4HQuuoyWeYMH5Yu49B5KfALloGV3D5I4cDebj7QAWRltRSLB@94wNmTOMgFGDtYpcziQrTxEFz6VQUreJqrk1pv4Q7s73ZrZFPUyk4Hxx@D4zhqGfJue70rOzKomtvzsfS/rrd105p9OE4r1W8cTKPohnlSEdQxOZoU1jzC6ODrQChHzO36@u1r3o79Uh8eTSuMhMaI7nwT9wZWWGmEOOXNJaY4n60z9F1zTokZz6kpn8toalNQ9@7@qmnX3FbdnZKYjpJRpHYUT@EnmFpFVKGXJZ4ZqIQG1Z@T5QpsRlypYJCA2ORCdSu3MNrAY0czkCPiNSDNSnrfOHDYGA2lXGCyP2yRgDab4ceLi2oGLcna89I9M9f2AylBL0ZzkeTcsCRSKi1ZpeokextP8Z6mCpdUm2PzW7Y76bO@l5DIZys7ZrfW2pBXMrUfQuUzWkwpYLeCunZlYgNIvPKDhPNitRA3mHg/viMgAx@WLz4ZGiei3GW@mwJK5bvZcFqYtugmk2n0b0Y49L3oTUT14nSQlEmB8EbMwbIZzEwqrzi/hpNde@CKIPdwob5UFJDySGWZunQDVbtZJxZGYwiV61cIkYqDRiWFQcwD2BIZacy6SIRm2KRBVjo1anU3NlBeajUrqpt3kBc4utdimIAClpzMeDxi02D6FCwm0XkzLmgKuvtSMHE1f/uTNgk08/25qgrZTeusK40IsfpL8J2xGk6@2QuxGZYBqu79GDG5a4W6/jrNYdtNTbDbmHzpu4TETgavzIw8skKZGmlJwnRH4DIoI8Pu5zIXc2daowhEtTSj4K3wenuaZNkAEdX4vv/tL0bqf/bfbaMQEpq1ocm5EYELK61OSJcQ44FA7wjv77rTQIXqwS3bVLcgJD5o96IJUT3xtKt1sHYy3N0NaVSeo9OhHwgwIdZJtttohBPtqKg3sFh00UAoQPYX/bSVD8yzEw5tv6DmIw5tRK@NWQvNYn7cEe0gh9tkXh6cR@5fbOb0njjJPCq@ycI@dofsMM3lPmZu4rhckcbbNNfm4vzfkDwoBcsauH27fpeRX5Fwl3v2acvTLi6z7GAGuY3XSWL1dwNZuhSt3AiE3bBqq3P746@xWS3lBcQWOk0EdnHWZoRidSR79btFks7vZHXgQ5sw7@MjqHqZq6wYahsVR4Di7oPWQr5SRSE5RREH2srXEQJ@cdxUAbILMGuveAkKb9qwYnFRZm7ToFGkPVyHDQ3p8mz1RFTvkeK8KvUWWenMI5@ZneeGl5q9S30GfDyfBK1mqus2sw2lWXrbZWOSVZdTfqkd14@9WRufTEcL7uoXAsQGfhi3C@CrpPrmi1SEjJs6PSzqAh3/12aA89H4yd4Gsznmpt54@f5tFzsGQSmXqbTHof2kpOrkR2pd5KIwM9NHcTivHs3MVuf6GF7dabPPru6ERQV3iLOoe2KLqW5vI4Xefp4GzKDnIQikUtABPc5BS12Auj7mrXXgZb/WUwO8ddzIUNY5sQ@7vGGuplD6fSG9hvxvR2bebHWR7aiK8a7OASTGBvYypOYTtOi26iYSzQciBOQc3@y4hgZn1QZ1Cqf3TNFzaWugKSV87djaelwW781NeSVypmGrhXHzwXZ1LkuOjKsCQs1l6E6GYWYUUXgOS2UFX91hEu1iKjz61fLJBe7plMOVDBp42QhiJnXToD3T1zIW9UEkPEfvqEW@tu/ycltZmgVxarnMxITpLCQ0neXAUU22Ta0sI0zvyfBoLeMz@HVCVCX3C2IBkurtDJgFk2VTC7u6CDJe6ReafGnUKmhQNsM9JFoN@7Tne@VJ71Uugp47oqN@pL9EHEsvVux9yEOJ8d@lZdu1V1avsDuOOYv7bSzbusZFro7HM7PiB6qCk@jcb6qIWR45BA6UQAwhBYycZSEfILfyK1j4SL8Jnh26qIrSLtxgwBfnrVbaI5Aebvw@WNyPRr9lx79@r8S2coFrxn2EhrTKPRlSb//28634c3kZLSBEMGlwS2LCmbZpcA@OGD2F1z98MU3uPFyWhdFT7U0vCt4WGb14lvrKiyGNiEkFt1H9sZvNLMfP02nrufED01OPLmVVXf5bvqCdpVJ4IE@B81uIY1t0jw1O8tQuudDacd30OrUaWRw@sCy2t/Tljlp86aTTcu0yhzHJMGpHwGRfQqn3R6iM8Y3BqvZ9ePTlhDPx5EvWxUwBkfg4077BwW/tDbj@/Kkx7Nc4QbuhSFbSl1V3hX4K3upjdd4h4hcL5b9OP@C2moQyF03eb4ON5bSLREI0jelZ@4XyNgmUjO98tpkxpI79KlAaINKofaDuU6brA/QXYOhdU9cbm/trCVJxd1cZ5kKgs@VCxN8Zp3DCvQ86VMMriy3@Txu57BG83L6qcGkjJnIOeSi33fzEES3RiqHcBLovuVm2zuTRo66kdTnCTQXqNiOvgsWbcFxwc5E0aI1dJ0KvhPK8eiudiOgI13YIVfSdbSy5R5@Ha97Emduxy3aWefp9J0AMebTMVzvDlIbV6LuXBVLqDMcuh5BVar6FoCOdoaPgUm7Xic3DEZrwjKLWeBijzi4lMoitD@RK4JB8NdU20fQP7jkebR2s1YpDJw2tuw4M9PjXomY690la6@WMf8t2yRqzXWnQVXOwcvzZd2VJEqlkeNGqDl5pep3pIWAxuD@J//wfydvn0LDl17moTnMDHikMDVlN0euAojmQCxodQ0fwRkibAYbgjeadVOsMGyAGDvd4uTPocu3foGdg3OZsnffMFrh5DkxVTRIYJREWjptkpK3YwQS63l2/W/23SNZlA7gWPMl9Z1ToJ3BTQ/NWoMqijG@RgeWV3frUugtkE2LOnhC/QjEsTGiaNw8kfG6pH2rR/@5JQWNfZmDIHqn20j2RF/J2XC5jX4W6s0m8yc376o2aTnHUmtmhWNFno123W50/EgHaC/R24jvob1UdDLoOsOmjpEk3Intm6hTjPplzCKNLH41mh90MbNbqtHYjnx6VcO5a5bScm9lMaj83KS9e6rvlEKwGpQfLYKgk3h7OZjmg1BI3H8rYdcZxVJpK3406FkxHVPJ0wMELd3A1VMYg7ZJZv5wAZiuRv/BDWopZ2SjbeuKkNWIVuhrjgPaebOI4JNaTJMnMC4d35VmsVh@mRMB74VQnb1e90xRNibh7ksbkmLZ3MeZBv1pJTszEFBJRacrYjFVhHZDw3Gk3zix0k0bjKnMpqfmaO9fQnHbw29lrFr/dWNOiacTTnaf1nrZ9sDBMneSRtXNyklT75WYNn7BvEoNICZRo8XZLt61Fi6chbdTvOjttThzN52cEjw2Qo8RH4smUTW8zvvqqj7nnBFax9rlbZsMN0Xx2IzBYpMbggZx2YsFU@kEamdApo4q4/5aX7PuwyM/LYbHScm0QgLPxktKA7wqJntK17mZSufycz8GorEFU3XEvTzK5MYr4Eh1h5IA9XHoF6VD9en2ItjASkBci3HtsBR3YbjPje5eT2g3m5jqgcud1QJAvdiMobwRaqhkqcnMzlVEex/jkY9Le/teEFvXKVXTb2KcFsubEEC/8Eua1xChTYXL2AU399mw7rRwR9vA64/23Gn0MmkPe3jwq44VDaH1A@ZZhnnkQ@ptP1VAA0Wd3CZtoc6JUvFn9ZeUgckI/6p6yC37OqEYLkdfaiaN176Bu38tXvbb7NaNtRzkYNTmjPkZxnwzu1NfRQlqfzNkbZwxAzzOG2R8gO/n0AU0eHW0eU3WAIl9Yk8W/Lxw0hUyRt0Gw4We/xIHVcwkSWHok87tMHW3VnfxUriIaBXIp3HOnSh8s2rK6oiT2Rh7481NUl7pGUnk3l21JbTarpE1Dz1NsK5yx/lMLPikyf2sf3Q3m6xp5mUAd3h2I7rx0Pgx7t@O0JVjr02SCfroCL3XGeKxzwe/KG6k8tNMiyzStH2luNDw9zRfOnUMDoWTcxyuBrZRtll9Om@SOk1gHz9Wb/kxhegpr6dfn8ar5lFE6MmKbJqusfUS6QIJ6PE5gyNTS5zXOeQQKX6iVdRWDdBGYGJoNkM7eauGR1TLSKToCyOSquBPwHsu8xk19BfBIgSzg5GKyXjOyhC@/c6jqk/cBmvV6YbVEoaCgyjaRTgF8MyXJRGBWptYkD6l@X5Va02XTG4yXS4hcQlynYYUuUT9riOQcniy88lr2EDgkTk5K56lzaHtJYo2vLCJ82ZW7TslacEhxVzuaJGUhmkBqQ3gqvT7Krg3i49obnaRTtWOkPaFqtJqS1vfdKHeUoIBP7HHN43lVhdPjmzebXNIZqwSeb/bzuMpMqVcj@HRv7tKGt2flE7z6OHokTYVr9oBevZfVTEIaLu/jfaAfegb1JorHmmbHieb8DMBI5UdPP2T52/16UGvx2RkaC1d1TW4YK64fxy/QP3eKNz1WzLGUhqt3b@@pCjRKq9RTZ0MhvsbFHDSTwG@zRZtokQKesrjjBiTwgTfr1YpWGLUYqfk63QnGs@@1ourawlti3Utm4mhh2ru9VOmdumYzlxxOXhhbdmzrcSlql7n1Qhr1mFEJn3aLsksqRmqKjwhr3tGDQnrH1SRr6RHCArSsfWnynryBj3c0uJ/qcINdvo5nmT@xVuZnGmsivx7lp3bvz/hW0d9nfBrrdTWxqvesM@lMoVbqy/rG@GquzxBhGKe2yIUZA@OGrTXCcF0dHArHY3utN20AVrQYMGawS2irSr6dgM8nFqEhuIkIcbCUIWiZa787DgKY4p2TFWcjVtcjFvS7gP5xWSEVKiLAmZV2wrlAm@SDY9US2wNFbK1Ay@BQ2t@aZs9WRM4VQbUr3@YtAj/iStSUM3MTIk3Toe/b3yKNPDaE12Gg8psPguRV4KtxIZ9jAwwBwCSOD2FbagrIzgVTd1F6a3B0Fe277Zohm2qLsALSYxrcyYItD10IerfdgxW@A9JHrtMdGouWSZIhyzCbwKcwp6wEnJBEv@70iqoD4eL6MMTlbhHjo5DQIyTkt7yvH707BI6IrQtPiiQRcz1Mg1LVB2SXtgIX8zT8NbWDsREIUhzxXtgF@@LGIYJcXp81dfoSWZl6EiiJNatSpC6cOubOdve8@yrloEW5dnPmcitUdHerJr5gq@IidW4/8ZtCb24UuptmC05hddWbzfoEuI2pYHjIrxTtoTrzuksTpYGI2GNTJ53zwnSoY/O7nXppY/0grs55I8Gg@EfIxaSDEga0TE8eXp3QRfqvusljpPpR07fIWN7bpYaQKptnmdxOlXyiWVdmPDm1zLzq5xwHh7Wh2OtWNKWp36yjjEZb0TVZVHknm2z0ZEeKQs8pIXSCqSIAGFfXS98Id5Idnp3AfZPNORBARghQNvvIvprFAtkzXc/rFRT/bNiD6ighMwJZYZlAIYfGe19EvE36Ck9XNUl6Xc/YM5YpNiRlSCcul88K8uM5fh10gxnN8BhGxEJ0hRbd7XwvPeC/u4t5Uz6M0YS3ZOg1jEPr1tkZ1nw8nK@JfDkIg9humHi1o2pMa05qfZCiw6lHHKSxR7JrBu7ubT/KDmtaW7af0NFcy2dk0A8NP@R8EFYf2bYd1gTSvF2gSN2YNJlcWmCskliC07955@oiUElTHp3bog2Y8AILuVkyuQJ@@8RkmaKtKerJktTp12MwmULmV31TQdBEYGoYVvCAXQmympMtL4YU3lMtbPyzD50lA53rZzwpJnIJQneiVUlN0Djf2T@fDAW0XL8dY7Agx6xWf1@dX@TBKmZb9O6dlwrsK3J/dee8vcqHguLnyQKzr8xrWN/AdCm2@hcn9UWA@TXPwMxq4lHJOYY/XgZon2pBX7eMryzQp3oFvtnq/NgUC/jgKta4m0LfLXI5CoIkM@s9U8b14CS9SYzujdr4TYkoDKw6z9mow@qyyojlHb5UDHxUeE7dgWocEPcwj1hfa3PF1GnJwvd32n/rlulC4K5MeeblCW1TWPdNJBZ31NPa@cqOrz55b7CLOtRmRC8u7RvowOxinFWY1DPsxq1NIEuCjDRNgACeQV/ZShpnMKHtSHmKgdwUZnz01jIYsBlkAQv1@E0nKQDOlCIyUO6A87y0yvdK/bdAZqQQ@vJJvBK02VXSnvU1xNX5/bZCTMU5vBSa@jH9a9fBCXapFJ3Ba8nLENOmeQnuugGv@x40TRwVoWpTa2OYI5PkLn2yY9TPRPekBQyMkaCSdjOHjUwJDbmzfMFTDxY@RlrUKCG5@2xFkULv5tDV0vvrTBgzo9c94GPQQHOHvElA2tUYfktK0fBa3/ZduYN1UlrZLh0m2UFQnzvgk67D@tBQ4yKrUH2PpAL5LVJEm4ug5B8KfCmrvAO@F4cBa/h9C2BLl1k5voelrdl9GHstVPnTmH/nAEGqvlxU/zYTTk5w4l9BMolL61SHyEAdMfS6LVIVhHgh6oaWS30TUIcIzeV1ic0I1CPpDF32uVb4ApeqR7tlBItnYn412ghFDqrnHaqjF/dNDvp0Sn1dTrvhq0l9VUWUzrOzlMLUqbYap2Ftxw@ruuAoA20LL@VJe74WvTOI4NAM0fnoKwH3pFrh/@4mFhrYpy7vD/6HULdCuVHZVlWbVbjQdWl1o2E0i9nftEFUtvDhE/94BX8YMmpZs3itlhQrRRNWxoYShi6gNeEUVRy@KZ4baFYadnrktD5jmZV7JvNYWvtRl0/lmgmT3hNhkerFzc@It3qSvmH4iX2wRe4eewI6myVlZckl3yw4y1pcfL9HMZOQHJR7gZVX3J6tIvhIk64NTq0lXr07DuwOhF33260wvGUbOKeA9BBFXYQlvAa3fvkQqHtRBCXuG5xhmvIAIsv3SDzc1W8nqWGLo/2EoB5AuHwx3F9WI3gUCaqQJ9q5AHPKVtZmYKt3oSp8hla5yXOnwxpq@MkFqjuWU/J@3QlbEPqJ5jUp6H0KVLY3Tp83F8ucBon3TVrGGANl5lkHSle6CI2YZhJ@OkC8MxYfi1uYmtwJkrWCGswTqMrqDOpqlBKOzla/yaXxxRHUUmusRUG4fq5PM3A5@6ldpoRo6Fex@RJzRYOTqsSSCisJJSGzfKcwl74WSlL3/GJJ9H7IpT0Fy28tpE1XO/G4z6GXcLaQ2fYWE@dgiZOHPNqphC9K2@Uo7CvcvpCY5gKs9VF56LYmKRC3pJU9InHK9UG6CXzb7JxLOqYJ0EzbqrBZR62Pj7EL7zFsBqrH857uvunG@QXyabRiVL8SPla3NseKed4XvKaXukxe86IpxsIWrDhip5xbxxR7p2dDPHTa7roHmG0rCfnRJxS2TZqKC4JFz@jPimeWi2AbbDDkHzffrd1bsy9kY2ul7cqOzTjrYW@LmZKoPhuivLFSmteZdpnO70X3kg7lj8WZr8Sp@FT97aXZyfxPHOzsWNoj24@Oqb4i3d4OGZYqoXWmSMtXG3CYPcNPEWP5pqzERhD4ichLLL76K4fh49xia3jaFwejTdngG37c6eeTzLMlmhgqx/fpWW5Gu/KqgyLF0auii6p0/fv1hK8r12dQ8DkkMhbYU/K7xTlgTIOzv3sLPe6XqWJ2gdYMRDUbFIqlNsCLKnB8q1thyr7ZryBl50qQyksTpkc2bAnYWEbOF4gqvJuy0K/UwAqjovfMXz9L/i6TNRRA3vMMsggK1igrfhDqo9lizU6gtMG2BS2CuIMT34lbvNZastITZSx/Kr9850zl@2Fa@fVC5peOWHF0m2Z9sCRrPsrt6azTL@s0k9bz7W67w4wx@UQFepuXf8HwOz2q4QfodpEwdJT6m9ZyED9112S@vPz6W@vrmOcueoTdydffAuwidD0s4VvIn7@UY5O96WiQ8VIewqJNBuNeXt7o1Xo5V11YPrnDF1bVU9eYVOvqJy0hWirulqVRinev4qvl5H49sQ/jcLWu3csj7eVWgpL/3NEXfHSN0TbcQ4SGdAuZMdwcerRGNWinokuCgM@dtWSgdZujXTkoenni2CIGJOWI4uD9toYl8pFHT2gG5Hsyx3QdQzTcm8xZuZNLpYYccoPWdZzX1B//LVdDG1EPO5X2vZQdAl8Xee/KZzy7c20B1zsgd4d9bHEC25guXub8jttxxDjXzXY9C3DtSelzydM7EA3Tj54RixDYjeqiZS4p/R2Ix22rhgbj3uykjL/zBBY7YXvDOm9nT7RddhCRNu/o16AWsLTNeZrQDWLoD46AjjYRfXYE15DH4AkP/5jpLm6715uz@Ty648qCJdjncoSDJA7WLqaOzr9f81jFMtBNGs@0lZQxU3XOEsb3DXlTCosSq6FJlg7xgXYKq2VYz9hUnHRU4DjgOqciakj/dZpnOuSWYZZR7X8rJbQ35bjFhsKCX7OYGOfmt4dyM6FKcmNpWrhqMPcGnOvuT0gK5m3y@jseYITTWOJKUEOt2dR6v92M1IrStfQblXhy/aiwF6Z/Ns5r50sMgtkzEZtbQTdms3hLqOmSdpPbq9K3Gl16nvEj5nm3dkkXuY2jFsWALsnlkkOVLe9gj0WL/KXhcH1qlZE42cSzLDMc59JlMzrB@BYKdCX@eGTzefxWrfQ6tDFeBL3i3I1tnDlwpXxda0C7bmDV6jqP5JgkAdxR/wXge8lb18gTnQVEYwpi1DZ79CmSNdGx/o5RyI/BWV6Rhrw8/jSNh0CS6ka60kiNyftrCo25RgQgcWz/zgncyfbEEC7BMtwJMu23wAttJKWfjtXImAa0s7tt9qwgPRyio4EXqKNRw1rVc1kXBbBU6kGJA2jGM@yDcAVGCmcE4YZf65fvrDHLoXokoHuQb9VdmJCkmVhWcbCj7od8rYU9OPtPXsciDzUdLd1HRBi5OZnboN1n7/r1AZyi6X56f/7mNn4OwaCp2eT9kLZGpYXOE0CHRZgUZ/c7ALJSmTUNlrql8ZF3g/fytTsecnDPpbq2Mi9ErmhWeqo/x3xmzlPPHjAZsWezQSNbQwMPliH6tQu5Y1CXLgUZ3QKVdJSumhuk4X7A6n2vHWRFlsuMbkE0qGNZu9@907m6GXVYsLiGiTFH19e4q3RpGKcvs5HEeq4RaMzfWiUbqCaT4eReiMZOof65G/AOIS/PgSB7y/zSYRCzgPnXExR5LRtBuHjPmSTXZWnjOxahmlFW7LLZ9sLS51852c/09WxhVLKEsEhDLrvRMF@GeAD/xK6lxjrZK6lf0Q@/g9C7a1UUtay/zV6@lC5mvhZMXDy5zqjTFXW73HscxaNrGbnSkQirjKGBcpWckhUyPIPIDvAtzB9IRG0UR6hbCD5l4pqGS2NwMP2jOd8XoKxb2orFjYeDt1JhVbb2nCs7C@nQXspiNOub2HzNfbqWt1g5uKEazsEfiqGsM0Wf5niIrTVpeVea2/fIJK8bO1LkOj8BcvH7pOvZryj7L5whcAgmkO7RpKtyDu/46zFKoHV8X/Q/qBi8svfbdnqZpgkrOnNmbCVP4ZNBHNwrhQrVHtAuZJ1qXdArcleijAmC9Y399WsaunUrxmq3rRxB2OW9RMKrT7mIf0QCHki93PRX7ebjnr9HIFZsT@w7rL91DcI34kJ/aKqrN7@zsPr9aMclPKi6mWWYq5F10VUfndex9LwwOGe@wR8Oz6ZdQ3uQhOSGm0TenqtzBT5DKgvtzJoIsOC35t5tQ4IgpCU2odfbFJM/oKJWl9ksCFAbjHyCIlO7U6uDNnqzpsOV@uJjCxHS2CF/Z0zHCG4DYd72WCRcqn9Dzml3IjmKlarf4ZS2lxw2XYuM672U5/axSfEVDac/aJBoBz@ccnASebAV4zuPtX9@R7GwqtI4MbGiOtfcznn9Cp0OqSM/Y7@v7cltcNEQt8FeP6m8R7UiWn6m2VBVEGopfBlYvCdsbAZOc5lGWyQEEcQjDHy/gT4a7VZte9ixQvMV3BrPnWM1zz26n5JamcvBmD2eB5v9BUWagVKlhqhHHmQj@pB4aSAvWayz@dcYMoLxqhjTrvbXh@ykVp4OOwSRUZlefyPFJQ5yG7Dn9ivnhK5w0xbTj4MnYYWzpuCEWSHuMETz4TG4j6Lx8@mFHHahsSEP63yAtYk9cOHtJobG2XLxWYXt0F32mImk75qWmxkx4iN/SPD72uAykcuN2weufEbxt1fD6CMg4ZKaYQa1S@K51hTw9Ns7YzhyEZSnMOYZ0rGj737Q0wXNEdH7fiMOR7NkHMbCOOphEB0umDgbD4XiutgweQ3y16jw6DdCE6I0zAdNj88LcG7VoYdOE1CmcHj8X0Oe9XfAYpPfWLuOClNMmV7vgpkAtVpEoSGTyB97yks4F0SpfxsK/Ufvof9H6yHIUlRcfOTR4Gfa/zjz75zbKXRd9HIKSguaU1nI4/ixP5DQqsvutsuA8ntW0HYF0DcOFUjOy@KXuoTwLa5Paz0CYWwcOvdbdy23n798PqSY6Y0Mv3MwimgdyiFFARN@h90@VVLnIPngl35NP5Dp@MDboMlyfShJZW92zIHO7F8R/B5lKIQEoja9Bpy0B5x4GWQcb8skRaH52u/UUKcUP/WhM7iZMi/XzYPvGgb6fSPs5zHNf0dC2Vn5Rb/bwAa9LgHVQpOpnRWI@OGCuFSytXJlngPNVbRUZo4Of5e2lbzpISfx3uyVMHVV9BK@@po/Tc1hupzLhgUJ@NRPN7BjufpeVmDxWoAfWW06QBUTkcmcTviEDhXWNucl31HMRybtZE1zBWal2zWZQZ9hbS31IPx7jz/PEbl2KPR6bFUxjHoiOeMc3OQch6bPZ6ETvZA0K42NPc252/FlTbgK4j1jyw2vWOqPlVjPFnmDw5O2sCJndc45lW8LenPybgYCpmzT/e7Jilvqo6OS4BeYqzD8TlTkAuOKq4ZOStDODipirVoRrWtH7bzFvKrndaYlOyxfTG5NmRwEfvsJXL5R9oJevRXphqOU89wanQmGDLwmNZ1yiimx/NWPt2uuPlMtqBJtol5X69ONtklf7V3souf5vRYTIegQa9axt4zl3HJRO8Qyvv3kkOsQTLejFlCBBfaN0iNBUkHRp7v5pS44lkr2YRIBfc0OEXjeFk1HgskgPZoV7Rcmc0VMA62jPgq2mX2eD5ZhgWDR4JjOdwTirmR@ojoGgfOB6N7LGRSMp1vW20xEGeG3Gr5E2cyI86YyPyNTvmzNVNwgVWN6D2NT0lxG7r0sSeNy6WYPdPyXRCDfmxqhswS2tLkVis2a3UO7r4yN8gUuHy8Pl/MMFv3htrp/12Wx@cCIl7gmTxRMeVufYTaZ8ewhbtYPqw47jtaoRoixtdOwbH3NovWYP/lhr8OyEV5n1sUxT9DurcMKy0E48L9K3iE@uJNze/MEswQjkEC2FLVxeNcJYeL75KYEDlNc4zPmDZdXiblovmP7cmm8dlbvszSKfPo@VL2@LVlCVQrf5e7OceFj@U74ldXe47nxKA@DEohJyplNAl6ii8YBVXsMUBrOmiXOigZJo2Xa9SBP4A0ZJWt5gejpQoMyGIF79lj56fJWwOnv75RYgkZnyVPqnA3UQYiC6Hii@@2kHb8@Sx5f4lZDFR70H6PVrX38adXlGZHITWZB99ZhbmfcRpYqzXs15aN7vDNsYlLayF2cQj0V5f8@ZzskYsODhPWhsqB@5UDm96V/v5Ic8T7XraYPsRdNmQN3LvlyMKtjAD1ffD4dvYuL@oxtpR7x1RNfg5mOp4rX59fQ8LtnbEsFVgFZgqII62@3c4Pvsmi/498hUKVCmWvwl71S2k418SG2718JMBqRISjgS7S9tc3Qhoj3O/8HR5YHJuRyasDlm40a8Mhhj5VRi/PUEE4TTXcqiFDOSYqeK5v7FFkC9uD7ndrmB6JmLUcOvgrDtYF@3MMdppurAcVpDTP37t/cPwZjS5Pde2VZPZKpGzet9N@29dL8dPQ9FL9tTT0uVlkdSJaqxbztWBVO4h1B2kxfl4Y4t0EaFOzXmGvmwApoFfZ6dnc0d8eehU3dqI7@TX7KNXpknOHuT0ETFtnObB@v4K4Le/8ub1LRUSrXak2pNaFN2sYtiZkxvzaDcJdFcIb75gq8ku3Jr6NgIaKe9L1X2qIObNzXQeBnRQDKdi3z2Rv2AaVDkweVvFuYEOygZTC7YKMDuqCVnikseqjntY5PsxI1euTSlHvm50uvpjbQmjOar4EQsAu3/BrF/OD00QkqkWrKusi8Hub7/DiWh6CAJfhdxs93IRdCadOeZpxP48GJ1YKA6089ljlT6WP7d9xkhEGRI2apIvqegWCEbB5VYFeqcnHQ6PxtTaHmYrmb17UKUtPq3@MjJ1bhPDSrGfldh8jQuJrklomjOP4pGDE5ts0yJpln9lnlJtPrttxLd5Q0w/GRJH7bxbXCi5rSHq3@7xlTqcPbyDniUsvTGxhDDRsYxOSEtulk8MXf2RPZwZfaC@ZycSN0LwhgbRZHo0YOYwjM33ESGtVeJJzVcUzY@diPg285YXJtJs7QXBglb9pb6DL5cPrdRYO3hcG/eVtcxwP0pNLhjcdrulMBlHH2OVH53ZtCPr9AYZ@J4kv3w6q463eaC2x9MRv39jsJaEro7xw6n0s0BF7glyKRCsOYAYG0FU@YvfiGgKo2EBnCnJcaM1Rh5QZvT9MFzVSSiM@VnRmY@aXEHddGGNGpWzUajPIZ4LXpZ09xLKonM@eikzJShLYtJ3UYKmG9@JIwpewovn636nR0@r0R/YZfCU9IdPT7eXCZodnSCZXrjGvHzyEMjwLyY/tJlZeTpvRfZ2es2hOUQX4WyJGNJOYFeLPfsbPXqbk8yImkW2NyO9dvjWZij0Oy6RA2XAS8Y7y8tkD@ReacdHqwW97kfNGyHtJsl5Vwp1ooUd4@XDE1tkRX/Dg3RekcYt2qfm8RHCK8xGODUz3gzvBqgjuh6aKkHVq/rT6RKUJIXD@7@voKGgxo02iHdAWrZMbRdh4Q9dqnEb67mQ7eBX9/dOX5sVL22y7Gu0ld@nBd4bv/vF7Y@GlaHuDSq0vXdwq2YYQY3qSZLy8yefA6qW4DNQh6uC@SvUlWpeDDsLQvQnmsb7rQxu@1qFQQekJqV8in7VRD3fCbMQgOIZyqIYjmKV8wy8Oz4ZmD3sDUodFztXEzxLV0RC9nKK9zLDBqtnCOMDtnV1jLVMHvVK53BZEJDYh1vWgNRNIjZYJyaS78mtGw667gqW9BWUQTHk6dggso0GaQlq/l5BLMGWfliJ/GAdHSbbYFs2ULUnGV9naVZZyVvlTLwpBz62Qek9LcgXsweHbIzvXaRUhbOvz6XwjsHWu0xnNYNapVraqzGeOYXzX3oI@benKittW1OL631ci/e1iAWeZ4wNcK9GKQbuLoVpC/O5d13eJImbdU3ctWZaPpIoeaO5GAs6tW4WEj0iFPdxA0yHprYy0zKEE8VKcikUpgozrw4d1/ezm4HwdLMV7KKU@/3mEldMt7qEbeDUq6q4NWXk5rNHfYqD03RoUfxhMX5Wc4Jl3ZqMLRmjDDsffb7zia39EKUcUzBWiuLZFfbf3HhEXURz3d@huv8ivthsqX@jzWgkW5hWajNSTLkVE4mV3wM4LwVhdGXNcwv25fcyzaB/B8S@zlvZJvUDcyBzlk0dzXQtG2JKLD2EtpG9feVOGvVT6yU4xJgRueuCCFtnAjBl94KEdgXgmLXmh1X8Qpkvbzt3XGUf0L7ErtfaTbbuQ91JTcdS/FND2Umf00xeGUYbp8TBbZ4tp9CsDYBrUd3Jk0fOaZrVnYg2nxuiZoqnpYSTbvpJC0yTqREY5j/GbC5qPDqnaGczUl1fQ0o2WkSfhYbbPwzwIWVU4NFgfGZfe6/Vs9xPcsD4nFYUmubmiV43Pn2@FMCOs@HL3WZcDsmW8emHmY9oXu/sACVzPMscgG@5DbyFYj5edPWikyrsbOIi@Mm1Fkg3cIsjgc7/MVXZHoelvYzZEWsz@SxLTH0OZv8NyUl8tT@i3xh/ygzjxwkR1h6ZYeOqm3mvX8tKSH2xvjHKV2RfEtcvxVq0zVKS5H/cLjr8PUW6U0gbjKxAhDRn5bpXvtUKQQAjiMuq3BcwqYt6CrRTjuYIENIWDb0Q1Kv0PbNL6PkA0niaPoqeaiXxvzdzRFOICGgRnCfld7XY0qD0XYnZ4pGfcDLR1ldas7bkBhvFSDbu9mDuadC@@QvHJeK7UMWhNnehnPVYycagMmIziZF6bCWWUuF6XN72Spc5oWM47vOah8mKhsdWjaiii6MeVn3xO4I3JvuwjPb0NbfPM@zEcUv1C7pwS7p33W2vfDaxNZ1wvTu52zD4Q59vQ5TOf3k3K0scxkS3GvgStzsyhLs9@7ebYMoX1z91Dgm3uZIj/E6a26VN1ZY4AVjCqtq3b3jqo6VJwNnMZ6NEcDugXrBFoHOEgLhQyCsQCj60T56yuk6P2ocX78p3OuPu8d3ThuhpAuGnrSipKc2d9QTl4Ahf87/9rI9E8HzrdL@eVoB4a@NhpRM5fPrUB3@12o2yp1JGNYnCPfHba71@/GYFDtTtPkV1GIwARuz2eiVCCpy68vNT/2FwYu/sSS7lHKz40okwS0QMr3lVSJZ4PriREXifjNzdAGw@Uwo6Tnu/yWUPmSPo73B0fmkvVA4YDSlykMyobZgV7E7DoE4s2VwA1Wde03eT8wFkvtTG@5MQX7TQaZ729zWfu3o9OlzfRViZJWhAvHgT/ZAWiIpFhTORJA3K8nVcPL/yATfyNg2pYPXmblb@3sE6KWx1lCUtckDc1CfeTgzSc9oUW7bPNDGytTvXSQvCk0d0xusEdv86EumkS2N1X/nXnxO0iEf6WDrRIHXuj4U/nYSZZHvFJafO7CvKzGjYriwsZmxyAr4rydYti@l1fkRRKCgENGP4TqC27LDjwiQk92LMemxqe@B2eRvrtzkEbMo/U2ikM6wPjbuAJUNMi2A9pv12b2@JueL1/Ple6qElVtPy7s6seyzlPK6b5xA@nqurH/6ei8EiOEYSB6FV2F3ovp8EcxzfQOp482f@lhsTTzZgGZogzaRdBY8lOZU8lXQ5eoj3XdAhHsEsNCoPA5dBzFdba37pH2BMkaiPPO6u@ebOQzr7dCksFnxHwH3zPUeTf6viaZWvQVlqxvd6ecxTsrNWvepx0wlE18Zre9Tm4CaVdzU@4hIEOLwucQFQq54OHbWws4XJfDdYI@itfH3vNY9itecY1Xtm5ajZ2Rnmfij0RMagyq9e4U0mlMqbYFLhkMuGm7C0swRclyGE/bcikjomDKT0JdPtas4sxmJBLfXeYkTCMIpsHkXu8ZsLSJT/td73UhCAJE23ilN2MYtRgd72DLypVPKSl0U2Vh6qFFKdF8PZ@VbQsd4RVcIUfgbpzCQ0NI/NnY3Io9fYXRy0JDzi3@C2@PadUYlpUi9yrRtfj9HNXMRT7fjXZ92@QJT1Vea8LroTCowWPxNtGFZbAQIBs1MQg2RgX6UAV65CREuRDcloyY6mcFiusWHYvOi/Bx6PLd7rXSIOzG0Afdqyac5UgvVVu5mKpFAG2mWGPx6YIG4vPZr3iX4ERSGVlODNE2nOvLH/XwTpMx4jq4WjrVu2KtNCh8J8Kc//pL8F6C0dBQj7ftO0KG7eEpBSptZIIZ0DT6vdt/bVvBcUgxj3EOoeuK6@LnfQhcc23sN/q4RI/nJM3sMUmg0lkZ5EMnqEkG9B6id0g8bGvsFFOXXvIStFK4t/wMS5sDzML4WwNwT5q0yAkiaPlpurpqcqf2uPrEy2XnXodcbExcn45fNtG3WSMuoR@OV5ARGQhWO3DizvgjnyvwyWLmp6eBZKSQxViYpX9hyh@57hJKJFC/06LVHPVmSpbO61Mb4cpXgjlDFzDPLYb6DSj2xx3S1w4eDVfy1RW/CxNZN@VjB82lFahOJxykrVUJylJvEx7mtnMxPXc5t2Y/zv2lxdY4Iq5rpy6R/ELY1jzqOInxmxx4xlVrTqgtt5pFdopmaw0hKU0mxhTXz6RjaeyQ@bfnm@hnfMpqnr@r3zPXPfT7BunW07h0T8wD5XYCU42kbJc1gjtpStgq0tQFHmUPTeL2w32qGTwf3VZQ998tXUpXWiDe4/apDGyRA3dTXirL8AAzVm6qN4vCtX5OjMFARvk9@/eWU9Df4zOe5zE9CDssvhxjlFGgA0S9VrHqeZExBfTOoodt9Mxwh@e59E7JkYpgLIc07@aV/BJmn7bxsaUdz9eOxQvZ8Lv@JfqWvOtvfV5jGCav1UgPbBisjTsGMeF89zSKx0PtApEe1iWsUAnFMPxuoLzagmpiiSuXpiJiyZdwsDp5mpGbx7ibY0jfX6OqixNOuC1rrJMYEAAHFdEC8cdhln1i04GY9RDXNTX8Paqc0t8EI33Ae77OxrN7bs5vq7WauoWM/wmM4wRFubXvydC7luiE6rO0sAWj/mTN8GDzGh7WpPTd@wqQvpIwm8SyV7oZVSXk19nneXP3BEW0guV8tPn2@DJv5PauHU@o1GqnEzPiO540R@k@6eBmgaohhiHJPzIxxJRZwYnY6C/geG6cxVlX9Cbfxv4l3i9r18Dv1iT3G2XxPC3a3KP1jjc0e7ZNcbL2Vf4En61IbYqe5cqqcB7902EdrPL6Lnv8TdW2KlIdlbop9G1Cg@68kR7ktnsyWoxeNa1p@tE0c66@nqVSpe1R3Y@ryWsKs/T2cCzelX1d@KxoptMvesBt5mCIELuxH/FWLCzYsDpZyTckHVjn/GHVqQMiqdJYYqc1/Xhe76pO7qzlwX69Pd/rHuNky7ZCZeV@z2po@EIL3iBK2jkHNsmah0KuWoYdCPv2iNbgDoUyv2Mbcnck61onHVWoim9th06rBYyqQWpm3O1daTMtmpb0PiI@f/TqUYsWBszfVdozPcef6m4NJoDONd8PBkwKZs2KC5rwt6mO9xDo9f63gUQbn4g3gs/ZMBLMmmOnAsJzN5qT/p3gsOfhfBGaTjLmPXtgne@r@c2UX48MV4Zv2mi93kKX23OIf1tCGaLNpaVXbM5SzF/DR1oXZurtTp@sYphgWcmV@9ubsuumnvR2eJApRpYFGLoMjFiWqxTuavuZiOWRNORqdGDlcFaRVYte@QlJW8WM3jxqN9kTAqc@ua0P/e7YLbbRnVOyqJ8M@xG9HdjzTdnM4LD96ZENSA@h1NPGhNqSNaKJK35Jq33eQki8rvO1VAPPkW9ZLY0c8pvQX8qn8Pkw5Kgg29UsC6h2CoqzZZdgQguBoGsPj4o32UklcQ08ibUcnwKRXtb7XlSyMhGRJ3PqalIL9yhO0JvB2@lw35xLHWSfZSwsaN/UgLUehI555GhAZkc@HeONGj0eWys4PC8j1/k8GCocPWtBZPpdjQoJIeoVfCVR8ECkZgwSDFbNVHwFVyyUoazID0YYsWAm8fEMx1YAWUNP8QmPOtuVTiqFVunHh5570iuBpXbu/Q0ClbeRS@xOdSr9gCH4bfsuyZIlL2YY9wmGw0yuxOh2s8Y6SglFNXeD6N1JFfuMqUc4z0tXrEVyqce7xlxtP8V4sLibLJcqXcNEIQlGtXXBtwW4lVTNVsT@dJO5Zzgyvee0uG6HPsXEy3HydKe338bsuY2Lk/ln9Wl0DP7oNom2BHpAXGkbB2grJo1uok4aaqiMwnobbDSfVdsaWFN6X/EOp0HSqnN8lGzUxgcXP/TqvDQDwtOoy9bD3N1aK76tuDDtpG457pM@W2xnS1AW9hlrddL/nh9bzGIXnJvQ9nLePuDfvrLLBpJTMsgJ3OV40YAagrlccjD1v8A76xA5ac@Jpn/wzpvITxHORJugCGXxzZHulKkZjGWeFEj48AykKdglPsrjwO75qDKwObdpPQoYi5FAXQIGh0aJ9es9bbC1Pk0SiYji4KabWIzrw3dP7uaIsrc7rpMb8T5Xaqu@jXxa18oe7p2tB68vX1KyHxsf0S//hOK5WNiehHJE8o6y4QVnGLA@zbbb9Rk9wvhd9ZGAhRAYPIk8efypz33fjEvKHgQfS3WZMPENZv7KcdeflFPIYZLrznjaGEtsRN/28uKWz6fe9aXYa5HofzOzVKfVEdnO8zzsa@8Ym704lTVxM1tHrBeKqNcdNMHl1OSUT4Mi/b1Bclfzb7Y/GKxb398D6QsHFr85Uj0aGq5wcsAYGjZEZxEnnUUb7Wb0yVdKryLlO7t3Jy3LzbUbArGXPbFBThQ70q8TiFBiSPrtq6INJE1ZAHsYFmLE21DDmGMw4@z47OEW4CBeqtjfiwaR1pHCc3jG8jumSBYkRpLsr8b9EOC1Sg/LCXY4jgls@zKn3FrjCT8tvPT4DcYcvO1kQfgF0NSB5wa//cSRU2UYDn5eXAw1y6UPy8aBI4@3Ecc0RFnQU9qQCqwF054Jar3CwQcrsODadKPlYlhE9dvNWKegNmGQHQw/4qXxkIJMRwJetul8vNADjUOYuiZhh6qVBffEONrTBFbhHCSsM58BPX1v0Y9Sw0OVy@q6QN5NKgm7D6Fe4OtULV6Dxt522PVpPpM@KAGb8HUPXilhVM9yhBGOZ3CLwUezBLeN9wQ5MX70vE5y6LVx4/BUKIg7BdrsOxmYutdHg1eCWW7GzR166GBRK1/ewFN1Yu5JMAewqVNaFrypwD28en7BtVjgw7q2TWBFM/hl8Run7CfSh2yxgKHpSgQNGUfXcVTFhKpCpXsonL9xpZmpbwacSShM1m/73eo3hVBs5K4ErnCPEbzahWJxRRDLNDY7wZ5vu9zC/HFX8bILohzq5L9J6rEid8LD1VnOYqr3r37PxvGtWOD2a8af7BzHbxq5HAzMMQ9Fhjsb9vP3gGZiKCD5dywN@xTLUPxGrqJ1/tovjNA2flsz6gPQAUlmPi3LeGSL6pu0YMbniC@pkLmsfgojsAhQK3q2fMI/X0BSrH4Iv4fmlm6GfBkximMqhvNqHPxiJa7DNZ8aXIHOJXDr3qjbYxr1iPd4ZrbCeX47ptNSi7vlt9nyMHj@OL01NC0CGvSyql@RvVqBkQWJ0VUDvO0TNZ@/IqJkdNCSCVMQMDstU0Hwrgg4/N@sbn0n5XjIlN5WMM62E@R6OKr9@o4hmAVCCnrYBXe7na/d4rkhz6qcGVSJDMmhb3Ns@DDrqcn3Iyy@RmfQnq4JI68pTep1lRLeRxyp3N7d@Sph69yuSKcTnvM7TQsC3hQ6SNJGThHtoOG@TlRyjJ/hasOn@yCKClgXFq17SvypuDv0Kt9MwZdA6@xgpi6xTPvGuLK7xgFCwJeKvDrZ2Q6puPMeujdQwqImwBMRPQrvCb@5071XZek2QH3TrFlmuPlafH831RwCkr/dcf28mUUCITgqW4E4UdnXKkS7jIvwuwQQNVOMVJfD2XrqBMvcVPgD7Q3k2E6jW1XAPgwiqanAnJpS8R/PVY3AtLKiKlshQp5mwq3z/OlaDTIPp9Jom9cPM8VMMQQUDld@RU4VqXus9yBjtRXeKLvWJByGnG3MT8z9Pr/HfG19HsqvrFetPNpTUbPPK6Zpy@bhIDlInXbARBJhTbvy4V7zVj2j8FeuWUrJq70NpFcvrKaFlGxdDXrzG0SvOPQE3k2MlIO5imNO4GoszvX6ENoDWsNvrJg4/Daw1Tmza7OBO4HEkjJDq6fufiMToqRehZAoImraMg0e/O7XVGe38jKxgKiKc5liM5QDRMh7qTGeOdiKCp4ju2GywPDlzRV@DiRalZ3voimNObacOwzsqbj@Tt@s5QKn@qgz3NK7T4Lfc5fvN1td5q0mc71DMS2vqZ/fQTlyUu8j@qksPzdVz0EYeNDTcXet/x3K3d/zfTLj2@xp1jjMqK7UHAXFE4UBCnuzLGpiMSzhPlfQ9tT5zqsH8Z3N6wleKSqj4Z07/Ten3XN/O7o3aS9x6EH1ca4tZNftFveC8mdziVJx8d3BuxxlC3xbQlygwIYNqd1WuxeGxnxX1h6kfUlyJMkXDeE8a27wYj9Z@dKqnLo1A3vdd0MzjWs1Bd8ai9vT2RaAifWaQhrXiadj6l4sgZ8@MPfHY40gxmhlgpmvFQTWdKLZ/O62mgAW@Ep33jZD70v3Su9ORAIoJs3thbDiuzVgSu/5qj4OsRWJXbLROYuGhsUYoioic@RolTU5XT7S9UYi@8zW2ueSTHFz5qKVyfmXUQuswG@qOPvgHbD@FgbP6v3GG/VNlrUnCOBgaZ3TZ7WEfBvaIgYwiDzTOs17JaBoUaNrqRpWaAdDcNWjheWFaAt@pH9RI/nreQToBY8y@nIbGcydKzxOFIDe03uhU7/XT1rCZ3YwCdLotXY3LtgKv7mEINq7JoZZ4r1gR34VEzl16FRHWXNuDMXiM64hHw8wX@07jsY0Qa6bO@WpmljGaFiCmKc6yU8joR46s/aU@@auswh8Fpc8VabFg0F6veqp1AZBLsCeDDNZZWMUjee3S7QLB2rH/DoL28hGbjjjRwqpkSdX4ZLUv1C0rVaB8l6jLLvg62FLvpgXUlVbf88NaJFb3mT7TTTNNb1pIMgKr@GGxvDqdz43qjyeTqyJ5@fOOa3L5jjG9UFR5U1gCOLszNsdnRaEYj3ZbhBAzLT2AL2exlTBf9EauTwq5eq4ZGWTEet8y7TrPT5rnUb/UVLbY/UX9HQNtTQRtWJgv3Fe4e1pcv24oCd0P1flWmokL2rNXnSZh5seRbtAcNps6dH0V3uUtxax26jlAo@BkwcUWqTGdVeGpgYnPuDr@FF7ob6iPT7DVgxus5gMeMkLc1dBsi5W73G/6Tbqd8jSLsqgyhA@UW9gSENwGu8iCTjQqkQlEaDJ69Fcf0foO7LWFT1HjF7N6VJLSSctDUsHoTApMS1K/C2o/KYM25K7rcvbqqvV78YYk9LvV37TSb2vTwhYfOCUBzj4upld9ugNPjjY4opfpr/nrbkXuazExkwyhsVp4VHUE6aZuXqA51ZY23HkbO@3FcXVx2djKbnG6nunSolSZPBVMv3uVnL6ZhYK5ebhFfKtMn9DdfVczhBMo3uazG1BfWnPRlhcKYHNe3ys7n49EieEjX9q4v5m0X9g6043lGDJIGYVYVfI55s1NXmMepgFcmkqKFLlNERfyTOQyXtq3NW@wBrO@23UXK6oKNj/U8uDgNwzzowrQP1RpF5JCE28x9X6eY9o3IMnLAEMMaA1pUagzkQqt8XaJqm6bIUU5T2EK@@clSufUnLrXIr95Qljy6/vknOpols0YuI9do7k8q5azoNufd8JixWEDqgrmKevkZLuUIo@7NpjAuHWyFIJNLKxa@ZJfqOnZzOBGcIQbRkpapor1wHJ9OIKyBulFtZaqNxEvDJDx7jEZEFqvq09NKe8cioKylDzO19HmKbW@fRFmkfQzx4h0Gq@JpoVOhuwuzUwyoDlnB0IWqFMYMjHLfZF3A8mST5es1JVFTrX86UmaPQaj4/XNW9/C2T8p0L52BLycc8@WiB51CgKEFxauYPa7KBrCLrgxlwutgKRhcewQjubUbP5dCGSEySr1ga5Xj1T3jPyKXTWpr3IRbbuttOOcWDSV1xrQXbaPfd700nt52gWPbezXh75Mkg1B/uK8ixcOKGEGlPwaJcXTIVLZ86jUWBvjTNl11JajmF3Hm2NHZLrexzoFySitwWmxHVJNqG7MWSExb3O8CqiukjLDmyzSz99FudcJXnYuFxNPnWLRKK8nFXKLi@c7VNcz2/XUU0NzYE4lezO49EGMUpg7LrDgzH4guoV2eTH4MwCu/VPgtzLXB80Lbiw9Ukuda/XQ@b7nFdgtxVk5hhJfA5qXVXsK19SCn5gfvXNoFMDpst94HJ1H6XzVzH/PPReyiYuO56HJLMZHqaQ0y6Sbk9icQYIVzGanNWimpxqqzc3hPMBS3IyS25FJG55GS8XDasaUS3gKataYAP1vPHqHv9jg/xMUsxziavtahwdiufr3bOuSmBYKlA9BJfjtorTwV5qD5qlIxLKJhEHuM6XbrG83qBi/GRVNQTxITH4bOR8ELV5rAcqq/gRNF@O/VFwFqa8rpfKy95v9Qa3eO3YwGya7dsoBjKFnQUOVFJYe4Iq9yUIldZ@jLk6vhShOgOskBCzCfCDpYkHZjPXzrMzBmMPBnGfvMLB5P3Gut2LYaCJ/JAIst@RzPE7uRf4tptkazaIbR27nx5eyWZtM5Z1SPT7Tdbfxku3PNj67565TjBnP262cKPcALEis3dIixOkJ/6UV8KMBlxki8dcrEg/SZ9@AWVzD7y/tfuMjJt8BA8weSyicxNGBb3ISdoEnvO60m9DCN1RokhcesMautvQhLrKW7HyAqI5Qdiriiittlrbs/O221Gbb6O21@xf0WZYnPIb82OomQVJuGWKpzfmC8nvhslnWcp1ER4YUsvBeKxZFRGkB6SoxRx4H/bvbaVenzi/A0/LZdHTI7sCmWuBS7T/aRRtoTrghhiMD2OQPw9lrI2dosyeHStLK0KDQlLGW9VCbwjJ70pdVfhXnBHkFA9yp7BcNnHTA443aWZGhnvelsynl9xhWPaC4RTp60axUPTTuKaXsotJera/9560TBXLONW9C54ma7fybD5r7LjTlGb3d9fmIIzNNw0nKueLEB1AH1vp6e2SjUnRaTjYVnIJEHHHIMJb8G81WXMGa3fMuGJoWPJabv6ZZmC2/ONq8bhu@sjX/RU9Y8OkWjVeq/wOfd4/O3oFXZOuM4hcg3BapA7K3Pp7zVe3SsOmlw@/3pGF9UqT7erKrtY5EF0KhhpcSV96vciVxx5qMQifLjs3WFOalLIB32LrmxbMsOsuuBZ/mGSBWSBE8S7XdrxOX07@0IcUM6UwDvrZVJGhWsfjrLube8UN2o8KfF49gFy4loF5iiAqVz7OmgQolYefTAJU64RRtrNQgxZL5bMFovQ0uDjvMNovdf04qWZfnsKrkzCGc1YfSSYPwuT1SlR9mmRk8xyGg/I9d9HJZ2E5@tHyW6Ov1F6D9WS6cGpfiTqxJr9tW4ZuMNsZkheWdHzvFkY/CuOJZlq1n@Q3Mirx36i2JZ08EWe30uo8kxWYimTeX6Or4fel1p7bBVdb6VzLepERx6keRdMq7x27up4nC2oWv9tYQgtiULb1UK5FAFcyf1BPfN6nDSdXMBsFon3XVwaWMk2XpMCCF0AbK5SYu1MbRP/6d8vgkQibDlnzuxN2/3Rati0c17d/KqYt9b5u0EdKWw3yZRiNCITSeJI9kuB4@vm30TqyXhPCb66Z7ev8C9fQtVe4JDOe@V7T3xme72iftNwoUPUpQc@tfgp2N4LfU5KASoxyTVUXjpeDtBQxkSxyiiHDiUiP/jtGrtT@PxAwoa0EB7eaRmmdPmQd3LunUEJm/D0yebkcKihR5RZGew7uiel5iNPr90yip3XUSb2JFnNYzIJXaIo1ugOmoCBxq6YeE20yvrawWMDJizFG1fi7CkLOmHRiJwswbzaaVJyqSa5Dt3zpBrYkho3sHrUrsDZdlZxr9BYqXpiHFeIJLOnrU6o5ZIWjL24T1qJuBQEodua1W30Kgj2HkgnJMTUNBcMefE39qMigakDk2K16ef7W4dd738s5fS2ml2de5dRETL6L6f5oh8iyGGiu51IHoR@awFhat/tycSXwv5GIvFvfnYn5Hx5Z0B9YeTL3OZ@nAkgQaLdvMwfht8yZls2xYJBtG1p6qoXcXr3Cs7J9GuNT3SWFCaMiJqpYqt0XzOF3Ey@GQXmNooZ/YK7BPosQ@gCtTOgwU7t6X4GVd9a2ruVOYSlrBKf9faHtxl4Dno5PZ9sC7JxWDvKMVdtwuw1cuZnwbDaHStXsCyBEiqiEkHJzniYavP1xQ5m0K11fekHQOVUjAbXI2LFWOLd@bHZFLrGEL/uZo/F2R7El8Swl@YUsX/i97mzgTPR321PIzk9r4SQ1oNDYcaQMGzS/BykpRnWLzVdsvTJqu15quWD7yBEFKL@dmrCC7xh0VeJ5DsRSMrNCZj4PhDXJb@DVwauS74Lmu7E09ssG@vKpUyRYDpAJ@ge@xlBrxYD4WGLzNbYdff4cXjQ3@jzrd2Atv8OVrc1vUNKihKB775nB92GKaUXZeY0Umvvw398pj0zLp9njHKRX1KYfMWPIoBP5vptuPnR8bdesnVZ/cr93KgTqxRmroi4IS/45knfeG5Xr3UHMHn9tB89ZQHvv1/Fre@XhQB9tA9WPgDZ69ro7@mS0j4Vie9uiZiR0FLTVO81l8nvfryoQ278Frhx0UKcwybZ6O3TuFfOd1r5pzpFXVtawX71Rkcbiw/Gs1eUyQ282@u4o0@XJ3vx8VtUfYIXztzO40D2f7MUX2vOrK5Fge9mS17FRn@6mejcXMTWeaSY/LbnnXm@o2jdc/9pnmbHD0CoMd48qS1/pu4a/Xd@VLoVDlbHHYly@yrNfcbFMiE5jQ4pqXguEl@2IDxroqyQuKsSFgiaqOvHv4URynuE3CpkMlUYgImrPS@eNvDfN9KpLiYaRO5k3hrx7O5QuZZ13YummdRMHKHFeMQ/5snwQjiCz6rWN/bvROhj2HAVlTDCWc9Zvcth2P25odsbKnKA1fD@llpMcexsVv8dbeGE3@zts3S7WNZuMQRpLG@0xoUR3Wq0qJtZvSmWh9jMYp7VacV11LpdRCbT@vfDHQkXyFXkHfy6pc04JBtMW5Le9p5B1vzcjdxWNgE8m1eKQHLxKkWuoytCDeXBdteBEtBuCL2MvPUmETNB885kNyM/CKK@urua3DOSncY51TQJmH2o2nWkjc@WIVHn5StFus61eHYLDc93fmlE7TUhoW@MrTZ4t904l7P7p1muF0G8LYZXPJYgXv5Y@WI02u2H8ffAk4LzS70CGzsmirl8YfjfSQnngr22LS7GQo3WYmZhEUxdalTg1mx/vX3BsQX3cdDNSR1IUz6ZGo3ANKq7hafUlWuWeqTYNxOvM99KXjagQL7eal9@jbEmQSvgqNqeTCV/xYWWxgs4S5Q2PK3ie1ZbKSXNw9qvUpGK267S2n/DVhZX/XVVSmqSFfPdbNR1yd4F@7Rrv3ZoBNvzE4M2VpKDdYHPTF4hFM@sgrd4wXC6kb1PQ3sIlzu@1aGrUICQyG@ad2seW32iWSRnG5TfMAiauDIzR2iI3/k0IyxiUlsAO9a4NsLPQE8A30/yFAdee/CJMAo379lYM6aXZKCSKDlRE67OjnINoHsoc@@V3PSV@W4OP4ZmcNtFcYIhkUV2cikMmHqQYPNf@PQECbOYj81LtVxL4tMpcbVBqPnLV6Qrt92rlSlEcIQy@LnnLLs1PvqelbSvgWzYLhu93DkatcisQntTfWdTfOaT2aHFoRHrGDYgCAQo@d3MuvHk6qh98VWuAMFR94seSKB52Su14IybncB2jIzNUrpp6V5WKhOME1/LnrFDIR@JAjZSAvflGX@e41uedq6ILw/GwCh3eiCn@BAo6sDYCx6/ZDKQ7eTCD47Cux27gG65p4p/BRKhXMOK9SNhqm6BKrEy9Nx4C@qjF9@S/TW/@N7IJPrBkHmIEFvTrra6j2C7viKM0cscgn5BxntA@xdrMmt8b4V1CNwfNdUj7@G5lXJzK7PXtkY@RY4KQnY94u3RRMV5lallOdDryd@Ae47FudTjvL5eT0Un2kxfIcTSTit9kZ3iVRFPlAeZiKVrYxRSibzVcGKaNfJXzRMcwR1zX7Da/97kS@q8jmOv2paZHqGfYnba0cj44GEyLbXBCwSnr2nu0NIWkQQwPe4XcMO1za8Tab2@yc4/snDfA6l@mOb6j5iDEp6rqB9CZ12H1YSuXU4uAbNOrgMFN12@y01d2VQSVih7q97Xnw0qF9PWPN96Ky926k2l@/9G02Lf07Xd54pLNqDe5yPwsL71AnCz79gem1XNUXmkWW/YmTCon5u4T8GuT@yzjExNmCc65Dlfo5m@z4Yao1vrqeBvowb7kqhPsFyzu/U2tQV/RZyeBvPc4DsI1@/j2A@e2nDWzWRz7KgbyUS5dxs4tL2s@eY364/r6CQNHn@Zk12pIeP0R1qfZCWFuOpyZZlTFMu50rs2Ksd01VEJdTMXOYGrzZcYtUt/h6cFDDN0Ttst/2vdOb/CF0dqVOgViSvu5qREBb6dYwDQsPQg5Ey0/5GagnrsnOgXOaGVf4CF8v/WIchA9/85aE/AvYA0az@aC/L1idJMX9aVPlUQ8rbhqBka3cBoSWqZBMJX95S@cyVRvRHqcjlTUvvqUKkx3qIK6Ts5JqBuEHj2rxf41mcdrouWNBTaUtSjG2F6Y1sdaRwHrf5AkGqpabOIByTDyp3Xq@g2ft2uNiqhEzeWQPPwR6zE1cW/lJN6nS5LLSQ9i1WZfK7BImosgcuyoN705n4czrkUOc5Mz61ESY5f@rvg@9hfWfillhxU0zC2mj61HJlYbx2nnswirvC5dktzqN1thV9qiH6hpONtiO3Y9izXwiPWVzodC4Cz2MLr6bw47R7senOQxcj92Oh46XkaTc29/gQ7qnHuaEeHmSbgbnsNEdL4GMG38YhZumjVltAAbzE1YtqQbMfTOgLLtBzX323tsPQE1h0CQemhmaIwL/rCGEXB38vgig6oJMacsrTRx0ajGedwGq2lrVvqJyrrZlh0pIriUt2bXAP0CdUcFM11tB0K05K6tHK1hh7aIxd@uCYuuw9WgTKF5XOLtLM0Zw2gZs4swZCQjPKQzDfDDtN5CaBZJaGNDBs3z5d9kmmOAuzcPbq8YhLAvFuk0COD38NPDxoQaSzjKrNuYwrKS8AZ5KJuq8bGP2K/m5sq81a@ju0L7ZavvmgU2yRsoOWYSEsnqgAqlaT1SgENc0Pu9QqfiwK8M5By1r2wfbhFe4I4TAeaBsC0H0Fjb22wDawmvFurdsDdtAVGLDPyrx6Pk0z6pEB3yHSZVtvGxqbi9FFYVmujokVvwyRvN2YcoSYppIJn4rDm/wTD0BQQhWY0PiivetHHwsa1MB7ZVaS6TrnpJc4o0EihWg00etSeTdKnxkHzjNsbDfssJRhEMMwC3q2GNgPmo8V4h32qnBYictriJvbkQSGQyfJSD8nHAZJa9G8SYYWkwnU9w80e2v63EhnBuuSo2lKOte2on7DEV5@pb26lOhWBcN0HjLFiYDLbFGeCuq3Wumxbdd@mOqIVcIzmC/aTmaZh3N5ZlSmn1uwizSm282HLidBWmQ8Yvizhh3uZuM@DAHbYrQw8M9@sXrhXzQhqvjuM6Hyx/AXIkXtvvDIxPr7PqhQXjKo4I0aqMllDqBXyQCEbZbmoLronBZtDc3z3YfCr6ugcYTcHwHZnAuYpUeNwnHduEUwKR5OKnsbfJ/Pf7KCJpvMzoWf2mHMSISevqLw1p78frwRXUxGB59i1oRZRB7@nZUvUnHCHtrrOa9bpgannIbjYsrBQwQbqukrKBO6tlDT1PWeM4s7hiHYp1YjnMcklj@/fI8ibaQuP8cj@4SZN22igQ2BKh9sYE@zzswQN6suse@nQB6fxtxFSI2CGXpPadgA10pUUMqwWGNRvXnoF2gVkWKtbp9eKibX3azumJgA2JDgNTvB0yXBx4KXqndNdQ13pTtlA2@2iRWYY@C5@qTRp41ykr3xNbdNUEbNmKUROTzAthdjdj4IFqzFrsOP4DnMZIvptbacJSrJHvTjfhMDCOs@XrYtzQIZR9qV0@7eIcUez1WZuNPU7WCxOG44oGtA/rPcnY/PtMzXHRy@aTXEWrfLvyvpiGobUE1X6WB5ULS/eW85jjkBlxSKQQZDi6YfYWeILEGeBsBVDLk0JuOznWhTQpdrHDUTIsWe2DMXuvcOyJbYIqbTewb1OMl5tQjWptsPwbJc7SstMkIsSSF7gyfC@UrcXfoQgiB7tfAmLKNbzDvm5Qv9Ic2dQJfhMLpK1rhxbWdxkw2F5wtclVajCXSuia/ErwN2ci58HXI5z9RiRItikI5wI6N4SlaBP@lW0yHRdDR3lcufCXw/xmR0hSI@q4NzUuekmj9IrEntzcF5pi@4Tv691Q@pajntbFVj@/mg7@9uCzA7jn0ExfxJB9fICEB3XTBumpBJQsPK8I86MhCFJe@7AEmL5E6NJafpYDWm/14ulwQwgEq7ekBuj6cl4LX5v8blgwzaDwRr@CFuxpWUF06qyDVuQOQAzZVFfw4hHqNo621ghPEdLSCMLwF8FCkfI1NHsIGGjILNk3CNjO8YCpRNoZ@E1RzL8Ll@PZb5Y0Q9RqZ@kE1TNhdQvyrc9VJa7K3QiqUe0T5m/6hMN0DEdD1tS4x@7Z3YPj1FndxS5FU1qD4YXerQttT@T5gmphc1YmSobeQEobvks3mU0eTEL67JOkx4Adsf20RSisz0rDoI9LBEyX8VP1268vXjbr24CnlwJZAkUPuzcpeNKhEmG6nTwEtDoldTlFTFJF@AM "Java (JDK) – Try It Online")
Returns `1` for basic, `2` for standard and `0` for incorrect.
## Credits
* -6 bytes thanks to [Kevin Cruijssen](https://codegolf.stackexchange.com/users/52210/kevin-cruijssen)
[Answer]
## Haskell, 92 bytes
```
_#[]=2
(p:q)#(w:x)|length w==10*0^p+p=min 2$q#x
(p:r:q)#w|z<-p*10+r,z>10=min 1$(z:q)#w
_#_=0
```
Takes a list of integers (digits of pi) and a list of words. Returns `2` for `Basic`, `1` for `Standard` and `0` for `Incorrect`.
[Try it online!](https://tio.run/##3ZdZb1vJEYXf9SsK9jzYM8qg19vdRhRAiylrsSiZ1kINJgMulyJtbiaphcT8d@crGgHylOQ1MSTx8t7q6qpzTp2@HnaWX@vx@Pv3P17/9vue23kzf/ft7es3z@9e3v45rqcPq6E87@1Z87P5@/yX@d5kNBX307fXLxq40NDnPzd//cv8Z2t@Wexu/mbNNsT@9Gazfbjzx@s/9sz3SYebe9Kf7YjIfDGaruQnmXTm8ubN/PXbX59ni/7yrfzWtbtdt9v1u93w@7@PXNrdpdtd@v8QNrK7I7c78rsjEu7M5d07@e1kuvqdy70f4Yu60/91Ua8eF9O38srbYGNxVfQxl1S88zlUrgreZ@9SicblHGxJtiq@FJ@iNTE7U1IoIbDQm5RtFUzlcuVMLoWPbHzILvrgrE2mSiU7G7LJVbTeZZZUVUimsFOoTIlRMzpvE0tiCSZbl0O2rA26fbDGJWMJj@QzMcZSsdC5EnKJoXjjs9VbVGopLFZVLN4Tonn4Si3ep1yl7G0VXbKObKbYoI@IpgnqoOTKmhCDd5Uusd4XX5nkKuMCwdYln1yIORnqN5W3MbJhCvyJAMIPnbviYiB3stEDIntyoxgSGUtGE/lhhTOBKtmD7kJVoi2wYC1oBA1KNOyrmGKJxRbWFGepzibtlPq4Kh4orM1kM0nh8KlQALTEKvloc2a5o@BcrINIVmZPDYVeXMme0vh1AeaAIHjYMdTD41D5Ep0LtAtMibsQuK2M65RogWqSTZWjhlSxi0oGHKx@AGcwyrMxJlZQmcDZVT5WJrOaqpJFGInPXCpFyldslHJCIxWKMMVQMG14iuIWDMccCTHRpKKtVIopvz4GZZKGrXU0RaVkzIgR8i2slGxpsaQUdFMDPlQGf2xFDWX7L0NqSdnwVaVdEj0hUqUCinPUCVChh0hBVTGAyHQ4AAIyBKs6y9F4eoQaCEES1li69xbR@Qw@GeXz6QGFG5aqKwVQsbLAzOKyHZdi0HCKkYyUQf1Rp8ojFw8APNnOX1HorAKZ4UKpcK7KaJIWgcMRyDVMozuYqrYgZQTAqDmkRXGAmiOZic06LBVqVYFswaUxgCeWurhg6hRx3RUwETNS9SqqUMAxaXs@pGKZByYCGbBFYE4QtEHZ4MdQkB51I2GUnXVuEFY0RdFItOtTqBhk8INZlplgKB2t2SpBVeFb1qkJSIPCqZd5jSwztEo/QSFnNAI7qT1ov6pF8Gc2MCrgBcGtEsBKwwOLlNGgrqXTmIMOavVjPiiXAUHvmUyMt27BX2JjVSp1BDxLfSeqMTGHqgTqgwFPewkNMkABV0JMzBP2UWgILwmuKj9UnJTWoO6p7lB8ABzYQsoEBKWH7KgN1EAQLwRdzDQoalgmbYEjYUUzUpYiRqF0CbKsAwrUgeMh0cJ4MbyKjXEYk8qFDAWVZDWGoNjgvhW1FDUUDgQVOa4JclZHG6JgKYEIHsu/racgc3V/6kJ6lU468Kk9qC4ZaMI8EGFyeoaQX/2KQBi0ke8kV6MNmps9ijqA@jyjAusJO7IYokdNTIsLKiFHOUBAw0iNAWGsQcw5HBJbUfk4Lb3KsMCQMVNkNVsYIJlvSJ44PdxwHfwiJt3Tb8UPDARZVS@UREZPDw6vp5RhsWGY2B9g1Hspz6ku1XTC9swiM2VFZZl@MXiI0sp0ODFwr/SFLagMV1Ev5oRDjZi3mkWlhoissWOsFwCzIo6Y9ChgN0WA0dODlMO5wpWwRj2nyJGVXh2UotHoD3ul0koh9YoX6kY/ajQctipkp2cDcaiS3cigk8Ef6EooCh9mCwNVsEBBaoBGUaB0hA0GIXL66VsB53rgPQIw8HNmiNcClWCic1riHMYZdOuodhi2LpvVWdERwkaHuJPKJ@nRwiFCT1oMhfPLUDO2WAtqhfCy3RhqWM6m6ttJb8FO5j46x6aCnqk0A@lZDzrwpmXAVduCLdhjVnmxUej0Glx1HtAYQOos2KjejDFzjbSxQCyHWpAgukPGUfNzeHp9zXEcKU6B3WoAhfMQFSj9Kj0VJiCCeJV@2FJWK9bjn3s6h3hgVak3InsSxEpNDGOIW03pG0HSt5WSX@3sdC1vcq/W9fLVTtfp5cHjSk5405yuuOP/eacjq9Gk5sFyXvOu@NyZ9mveGh@E99LueDabrGU6ehiupD2bymr2XC9YMP061pDekKXPo2Ut49lgNRqvZTafzxarx2ktTXI/zoV0rHqoV0MW9jrstHzs92tNJa3Hab@zlsVoVcvnYS0zli1n43oy1UyDgcb0ZotF3VvJnFfu0ZjE1B609m49kYF8PLuo5VLad@PzKzk8fvx63Bld3Mt4ILO71fr9mVzc7C9eZP7UkPa6OR1IvX@1any4HcuXRvvx6Obx07k8nt/PH16mMjs9u99fnn5qyOXjlcyXsjkcS7d/NhmvPzRk/tJdSH/6crn4IhdP0l59Ph6M5LB705DDm31ZLcdy93SxbqwbD3I5OpOzE2l/bjYOOucyOzhuNq9fBlfSPWq3jqXRuzy4aKzfP32W@42cdPefvp433kuzebHYH5xM5aq9PJGxPF8eTp5aVx/Wct0bT76uWvJBVrcP9fJIHm4at82Lk@alXF/sS//ovvH8ZfOlIZPDev90uD48lN77L7I4mJwdPrekXnWO7uRcTkeT9ueji9uLS@Sx3Mqj1elD/XgGmfPFrLfoLCG3sxrNpq92llvV9EeT9WK0XM3W4/lwtpwPedpfj3vDGRJQcS3/J6TUmk1qbVP///M8Wg1Xz5S4XtZPrP8Xbe2MtrA0p72aLSnzR0@vdkb/BRhE/f9gIV2ksSRyNaQmeB5tx@5ytpClTG@vrlDj8fX7s5YMG4e9dvuluZH3d9JuXC2WDWl@/Po4kNGXvlyv27fHcv/4dHEwf6jldt1/2pyOPp3Ibft8dbbflu6sMdq05puWdBYNksmH@VT6d9/G9bjTkcbh8E4GL4P7h568b0mrbj1cb6RxPXmR9fBCLq@Q98mguWi29@Xspimbhmxejsf9w3u5G3WexjD5Ipft@bgB7BcfT/r909apPH@Wy/po8@HleiZX3ePZ/On5QFpX5@dyIOe3X2eTTu9lIY/Nbr2568iNnF8/PR2upHXauG52@x9WcjvvyX19821w1TjYl9Or49NO4@byTHrfJvK5Pvj46eNQDj7NPtUy/TK4W58cDDZD1PX9Hw "Haskell – Try It Online")
[Answer]
# [Perl 6](https://github.com/nxadm/rakudo-pkg), ~~72 70~~ 57 bytes
*Saved a lot of bytes by realising that I don't have to support `10` in Standard Pilish*
```
->\p{{(1+?(11>.all))*[*] .comb(/1<(0|\d/)Z==p}o*>>.chars}
```
[Try it online!](https://tio.run/##3btXjyzZdib2fn/FAjEQ@nJGl@UNKFIK772P4UAI770PDvnXqRVNAXrUq6DqPqeqMiP2XnuZz2TmGbO5/fqP7oL/JYd/gv/4X//5X8Z//dc/Xv/r//7H6@s//y1q27/@9e//@9//D/hbMnTxH//w@r/98fI//yX9h7@G//RP478Nf//P//y3pIzm5d@eJf7LWOEaRbb@41/aqs@WvxVzNv7x73//17910fjHvy7RBfkfeNGfa/31j78dw5wuf/23v/7jX/7yPPfH372@w9srfMArfP7d/73hv6T/svzDX//93/94/2//@nevH6@fv//5zH//r//H//k//u1vf/vb3//1r//4H@9/PvP29fn@@fP7/fv@9v7z8fX29fH@/vP@9v37@fL28/Px@vv9@vX7/vv7/v35@vL58/by@/3x@/GBN76/fP@8fn28fL39fL29/Pz@4refl/ePn7fP94@319fvl6/v35@314@fl5@vz9f3tx@85evr4/vlF3f6@Hr5/fx8Vnx7f/3GWz5/P15@Xt9@Pn5e8d6PZ/uP15e375dXvPwT13v5/Pz8/cIb395@P35@Pz9@31/ef16fhzDSVwzs8@vr8/f9HS951sFfMZb39@@fr@@f99evz7fv1zdc7eX39eN5Cq/GQ2AcGPLX68vH58f729dzy@v7@@/718v329fL2wde/Pr2/f799vH58/2C8b98vb9@fuKG3x/41ycmBP/Hk7/9vn1@4Nrfr5/vmETcEx/4fcGFXl5xxZdP/B/veHv5wChxDzzdx9fv5@svVuH1FbPx8Vz0jQd@//r8/vz9/H39xXt@314xutfv56QYH/70@46peH39wdVevp90vH//YgBYls@v7/fP158fvP0NA/75fX3DQuKdP@8Ywy@e5e335x1Dwz9vH1g5TMHHO1bnBePBpz@@3n8/394@8LiYpm98FAv4Z2T48/c3HgGj@X79/nrDGL6/cJenZTAPr883TOfHy1Pnl5eXzy8s5Tfm@e3r/fPr5Qfvxqi@X7ExvvH7z@/Xk6n3L9zo@@cbe@QLO@Ll9wUDxmO8Y1D4EFb48@cTL3n5fPn@fY7y9eQU/7x/fjyVxAO/vr7hoTBSXPEHmxGL/4pV@f15xSP@fn9/PJu@YH4wMqwfboUx/P759YNF/f3@ecFfn9b@/cYzYZM@pcAS/3w@E/A0@scnBvT1@4JJxOl4wwRhyrBhnz77@Xx5xzNiabAg2BKvL694@vdXbLr3H8zPD3Y@fn/HpOADrxj115PAJ1evmGa8@ffPcfl9wR7@/vzEFTEMjP/zmap3bJd3TAA@8@f8/T6pe30S@YO1eErx9vb1gz2JR8R0vOGF@DNWGvsOK/X1Z5J@sAFw1N6wtTA4TOrPJ66M1/48w/KF3fo0yJ/JxYNh4vFajAt/wKl7Mv7sisnEZsZWfX@a6uMX8/j9HO/94/v3FecBJwLbALf4wDnBhn7Bzsb84VDg8tjd2MLY2T/P3GBjfb78Ptn4xuO@f3984SBj/rCyeNvLxwuGjr32@vWNpfrF336eqfnA1sDAMV6c10@87QWPiuf5eFKOo/GBOz3w8Jz36UXMP84GAhWmFzP4Zydgrp7LP/Cmp6IfD2o90/jz8Qzq13/OB4aLA4L9/oMr4Xg/W@DfeO3n1@/XgwiIWQ/ufD7AhHP4dALGhxV4x@N9Yw/iAH0gKmEz4TwhfPzigRBLPt6@fv@zi7@fsn486Pmgw@/7ByYHq4WtjBd8POXB1bHbMGuYQcRCzC6C6ceTNYRMPBbmES/7fVbEsJ6MYaB4Ssws3oepwO5AxMMW/cXxwuF9cvPyhsD0tAuu8Itd8vMAw8eTG0TfL4zl9wEUJISnyRE1MXOvz2hjobBK35gRxFj8@hNTsM0f9Me4sPW@nknH9D3w8PQlDjRe9o4pQpB7OATXf/AKL8QKvn7i77j4A7Qfz9q4x@@DAA/O46hg1b8Rjl4REN@xm3Ba3j6eFnrDcDAFeGBsNRwQHGvM2NsbIiTCytM@b0/oXz9YBRwynClc9eXPNGCR8TdsebzuITdEHcSLz@9nz/c/mx/TgBe9Pt2LJfnE0XuI4/1hqRe8@QWHCffHxLz85cqWv5DbCgKkQ7/@@WMEa9Vl@MgyZv0KR9Sn2Vz1BVQ9xO0wINH3VVGuEAw9rMORzXhD37TPJUmJtx7VkkE75GvVXjCM4zCvW5@BhmtvI@ByeBeKhBJvTCLcadnSNHuWAmvrUxQCc7VmYJcZDHjbMrRZ1z8r5flzTTLMc5asMLZZX7W48F/irIMcFEnNQIfAb2UDKG5ruKhSQ2hzGPz1YiRQXWI@YdxZCC6tzyEjjJXlvRZqNthodzNl2ORwLM4eBlEKiUU0WdA3A8YFbqqFOJW69uJZGM94hrQ/9bkGdYdgtbm8Aip2WaBcAtalBX9XL/ZiC9ArCSQBAltjyUiGgeQ0zTlzA2I6sDhgE51U2YvZbQhvEGJib2SWAU1TZyIXejCCRYAWDp3qdsvgL3CStmtWC3hYvSJbaChc1tNUQdPBUQlI6ZA96rtmoaMyQiwvioKEqWEmO4k6LMjWiPZBBrHqAptWPVX/y8YosICW1RmUUN36uIK3m3RHyZwOLo0nzOeQBLVnownakwKDmu8D0kDcrNnWYafa2WXTYYSeUJqcJaFRYlfMxfKALrfBomAV8f7RTM01TCHR2gXkfjYXAyoWBqYXIgtOmTUhDVXInQNKohh7q2Jgpgi4GTjNOLqpFIi45waKbkuYCy4rwUg4NRyUietAmcGoPXHajRL05pzc0QxhvxQOLmDsRmGsuTagW8hLw31JIP3TkB0QxSmchsxWYOQrWGR1bQwqHyEIhGKsg7bDfgogkohG61KYGMWYMVnxrtBZkKw3C2dle9gCzi0kZlnC1OP5av0Yy/Qeoa6YbovZeodlaqdiCUD11g60heovbr09oDpfAKHVNVDNm/JhuvpLpXqBxK6HrfQhN4xVd@no7KCIe89MYgiIwqyMboIN6jtMZR1kTSKgPwNaVlpbx4q06@SbwGmwZzrlm9cGphSLygbkBL5h822yNl4IFuPYYqmLMNmxLOVBWgOZxqksSdsEpCwSaUQtkNQjcY2QC2CR5eqdVgaF4FqBmsn3AhQe7j7NFiaBozk1WMFdQA1qYgVmUGCapxjMAnrsrb0SyOoaEBlGKTkDLgyh2XWxG0G2LFISQ5CuM5YVfSWhUqnR3vsNFBZsoGT@BjFkBWW8ItDdWHMntVcM4K4wiKQqBrkte5kCM/VbApFrdhrgdvCd8KDYsoa2Bw8hJWVvhUvc4UDsokpJtzD8znQEUAyEgWvWdWkOoJvPORAlp0oQ5/JLDqybgCDvYE2S7W7oGTLBFsA4ChsideLkCaRw8AovNzsBilnpT0tfVlDqgnahLSURQTTm@Z5S41SETO8GETyBiqnD36D1gRQhJQ1QQD1yOVwrwBH1yftCKI5LUEL7biHYfaHg9YUBr1Nc8L1ok2d65gnwGb2Yz0EHhNUMpOryWqbUgJ/DDvhObo6CY8GCGA5oaNPSN0xNKB9Asg8cKqLjR3SSnQxcOUSVrazEGIBkeRI2esh6immOZX9DcUAvWopi@HBc2chzBDeHgBPkLBXBFmkFNrUBv3Cbk@8MtIrNK0DpoOHOqbIQXc/TZQyU5CYKVFq8u7CxbiqBIXebMgpnC0OyyFwL86ypkPkqJsmN9cyAi4XDhrncRHrIGx6OnDuAEwbvEEmcnGTYc37Glo1TqkmA9ZIdQSdxySqOWNgnAqjkPIlU6JCvEix0Oy5hOFkTRm/NSX@rm44n8V2Wz@DUdgVuohlgN5BtpK5WFx7uY3Sw4UScOWohUltY2dpCzCT3lNDZHHpGYVrBBka29hKQOYyUgaJmdhqRup4MGTTXdSi59g8Q@Ab0uAfX12ewxjaCSk/9ogEDkHk4ghrXsKihKL0VegpHnKSAXqy9B7WeqvOCM3hAg6xpz6VWZFVg9A7CqYDsoBuyWaE1djsfNwqYtjAlB2EoZxHVwFu8RDVDvDDxALGlZAKBgmtrEOYIbLFqTg4cogNZCsyhtibGFxacZrgLLin3rSMg67SDxzMia0dCuhBlwVTITyvFJbAWS5riqMUqdcK0cRJshkjlSEjAlV1Ngji0YWHCNAg89sbCDoUn0QwHDGJ3EMGoLj5QQ9cjp@bU4qzn2q0@JIsKhjs54DhBbnWbBxW5YR8iphhxufF5GiDA8cp5ArsbDdJlLx5QcSf0LdAVae85cD1RUSNk25LDRa1GoHFYHw8IYARsDwNLvo1XExyH@qc@6emFlHEcMp6rlZhpKMiuKxkEDzwHTttj0xHrl1iMLU63jBUBsWMisDI1YSwJJcMMejHc2PxkAnkWREJcgdxh@92JNqCsCDjQUloBJsl9Hoir1d0mXYFnkiVnLOxSpirDapxCqC4nK4ZzGBClGt5OOIgXujgb0PqNoOxmCVpgxHvB5iwlFziwPc0VYGysIwe5mScmSDsQx13XuDSGCu7hUM6dBm@ICmysq5KjwAWaZRoiOnYMedY7xYfdgiLinC3V1j0GOzZ4m5SpC0QCuIpLeo@4og6a21Yv@zZMIG2/uZJH6zAFKgbGziBH3uuyVaTY4AZfgy6pJyTRGSFa5CuvWee4D4HqU770nY2AGi@ilxpligJDel08DI0ItJbLMfIb0gE4rAVz0qrSCGasSTuOfxlNTaKPIQRjIBGkzlag7SCHsbhALgY1F247cuW4iXrkdihMOb4Gnk24rQIr0eMkaTfDhmLYpkTpfSXCfvdBYVD7TDvoGmsMTlbjvIpqLOlgOSvMd7CG3t1iyHGyNS54V4a5lihn8IIcdndj904fYXcg7GpdO4i@HoAooxjENDF6FxQB690hUSvFBVIGHhx9BGZdW@WA8q@eDxErqYuEA42lkwoBklp1tWPoN3aUqi74rMkbwsjOfg2sXumofKfYTxJAmQ5sPyibhaVKlC4ajj6B5Kztdpr3GgyhCsBiT7AQYDek1DOY@niAqZUpxH0/KGpWB0QE05UzZ@Ng9gVvV1bH7VF/HbDmpYyYbPl@hMKhuaiKkHB0uVlFFk1jXWBrCUrc6UBkV0KJkn0b1bnQXbY7a1eNwtSlVJBTTNQaCUKhUDmyFUtEEp8XFOg5EplycEp1DC4cMyvfzyM4t@pWhjiJtkkCIr5w9YH5zNkRF97Io2bgSx0GFKYDY5TYpyjyarOxvOWCaPWSRpA3EY7AwGS3AtUVye0ZPPDxgiPtoDxx6qar2ZuDQLpdEzR9RiqinIvUEcTbkxQJ/pgQSzrCJYXJhyvaE1S1vg@uoU@jA54HpZYDbZjNkFuwrGG2MKzlwbZzt4lk78Ncl1GNABaDZNpXj6ZiK9II2JunJTYwMHHOlc9QZKzdSbCTrSmqAZzsCJKU7xRas@BQLLcn0VQQZF6MkQfr7lsJllU1mUSDfqZbFdYDzGw2LkIE5AbVZTvEiDPduUEDuwkSWe8JAYEe/RE2uryRe8OmILYt29VLhg2UNdBKhmArODAaavI9kOrqhhD5whI9txPaGUXRARM2brMMfs1S0LAUh4p/SCqxSXBu4XaAlO6KauIN1eyVtlJ@MFCGHMg0KgEdKSZFraiadI7t7NCwqRV06IdaFywZrsud0DgxaCh8zQrbuEGBnTStPMlAEvqJ/OJO7R5Bsrozh2xndi04hQS8fvCmbI6PALZxZNxshPEoHkgiw7YpuyZGU@J0gH/xKghes9TaGiGmTDpaVKeJ1lZCXqYFPGMzBxoRwqNDKCq1CozCAEJdZZQCJ8wKmEogQKPtRRxoUOUM3DKzLUj0NEwuaqfjjlogOrrz@lUTc4ivUXtMFpaNasOa7xSkJ3gKUbLGGSKkzKHld4IPBmtUTZ5MwDeFyIRgHiRr05eioikzlXnKPWEBj1ISOLwRmKPwtn2EynTiwhSPBvODVs/TjfAygQ/vSplRqcgjLWuKfHIgNXm0oq9Ds3FLi8DFvQl40w5KZoc2KktcfJQThUCxQJM@0jApw5KIVE1RUwbTsaG0syxKG/keFM1N5R50n5GFRYLKjocFpQWqTOSkThcXZhKgFjzUDXJXNCkwnVCuzA2mhXAda514GaSFsJZ1Tsrn5wan14qQx0E5JdBpKpcSBiwuddMhnIcjHh64oXoLpG7lsOUI6qeSx3Uc6c4CBfo1Bxgg7A00nOhR1irz0M4ZNt0djM0edwnc3otddeF8GlxRfshwK4NsAJ7jnNEcWySCeAPp6MZSeciJb4wUiSXjXEDsPi65JDeo0JPzu3MXwBiXqoWQtD25pDeh3pCaVuSpPgdjDRq5bcVMQru5pDMNMBZsE80BCUd3jhuwvNsHjQd1Hyl87OPWzGojQG43VBNcQcvwrQbC6okiNHl29m0NU9UzvI3Wnd39JkMWyfXYPIdKaCBc0pgxgF8ZkxpV9qJhoUj9cqmlQPPPmC0b5AuQ6DtDhRpoBnmphsHRO9rYkP0Guc8ks4NSJtV07mwI4rJDMQQug5HV2n4iyUdZE0C4G0p7NDnYwTzAJSDEEt28XI7U9jI4VlNKMXe0YCMUBYqc5dhwiAAwoAtOWxNFZGb69jSdoBMVEnyIsdx7vUJaHlAkSk41koWIaKHJrBdI6dYYKJAPfkChjwIWhiXq8ijGQTjKmIxhWhIzz4YT7HoYKVjNDG7LZXdcFwvsXKq40wdKe9OU1gDpxYwZMuzQPHSBW/X0CPyhCclGXymgvIkCqIMlZBwXcqIc2pNPZ7jkvo00TH@g3dblAEd3procVwmnC9ROsCxkskyczRZAHty@vtHhCVwBKotsOmp9DevlosgMsU6VzLhhyaDMBeGSnFSJkUitKm5d0kQ@du9gQ0ioRcbVAX0DFgpRl2xgHlibSWPrAnKpJ3nxRm@CEYEIU6qhuDoIDoxqP4wZYUvi@zRlLw8iKw@qzVWAyNu88yCX1hs635wMVkmCAzIUM52sG@Cahgeoag0z3zbsMRLCM67QUVfnwE8Ozm3dE0lOlj3K8KtG9nRXJsYNkBIVnksW2kHo1CTKXUfIvSPORQ7b8YhhZLd74hNYBL11lhvZ2MDsCgJ7b2QV@QN6eMKj0jLcgdDYq68JFn2ks2QNDWHmEwR7nGULp1w7BaCxNbHVHalC6bwtwoUKi0cvHPGajbJ852x9/hOkb/yv4rHdtceAhLJH0jMpQHfrXZG5WQteGN79zBkBFFtRps0@WDAM9kqLEQp7IggIc@H0Atmz5Kex1YH0BhjO5ihrNGO4@G2LUZXcJ9BHbVwiC82h0/Liz8CLl3rPkRJGyKnjjW40trLZJwm4J1o5iaifUaH4CP08@kHpsHmR8BfQJcVOoCFsNs3OE4mSPKVddYFBNYBDWnU5jdwucSmgt1B4zWnP5MDhDUjTr1FcTWxdBlOWlVDtvlnPvFVC3yh7byBGKVhRdvXYm8CkJEEQ8dBWveevok8i5OlWD1utcivjnR2OVg/NOnBQSb0GGXqGESL77HPlZCgI57mAOqV1D3i5wkkKkfvGzi5Br2ROK4ESmSnyonEGeTYZ5PsAD3zh9cvZ2uAQSCXqXvNhw9YtCAU0pzIw6HY4jYFwQ2w/Vuz7A1CaRTcJ@saoSeDwAguqVkxRn1BAnDCUDReDvGIs8QqLhkot4ckJWC4PvBKueQlW3TIems1lCNLRb@NAnCW4fNS6Hi1dMB9AqWxO4NhBEQ@B4CylD5qaIpX3EPiceDXoOOqJUxeKRd8OykX1mUvDCUKjnX3n3xinBEkV0uZNJDvSRtKQUpyiT4SbjQnOXvixB2YvYYVqiyEYEMXXCQrTDGQz24EvNFSp03WvBgWcgnKnWNAu8hLKxBQIqzmLIj3A6e9uNyoB/FlPUVKeC81jnMcemKmL8xtzUuZUkEqB0UKSZmBdN8g7evC7T9qc43LwAuXc4m0E1lehWkl9TVHkJAhKQQjNBnLNtmVRKeEArn5zl4Tg4hVmUqMLQGvmdjbCBpwcfVboKzZ/NB4XVm/9bkPK4@jZGaZWR/S6QugkcitNHtL6BOzizqcFokJ5cJcgLmLYAGUZGnPmaKx5v7IaXehgjWC1RTTnU2eCPq898jRJibOMZLUk9kwTlYhsMG0@A3kJYbki29Ei3KZtezUBTsmFIxTNhNM4qdsKqNyXVgbdttwr7zgEj1M7WgujIOB59Vsebm@GZLtXu3KiDYjbDUQwVVFzkJoO2BktD3LaR2dsHJUJNLlALNKEyNgCyHziXDM1gpPARKQwZM6sAY2kRh3EzqkNmHJ9oh2zIBB7xPMSh5siC5i8jGNID6F0k9B0j6U/bTMc8iTq2Ha1KNaaEKclFJbRS3DEhpiUEeQy3RiJCr3QL9GIvvgG61Qz/@Ru4N1A6GEs73C3eJBmSfO0FrhIZk9a1oHpp9hQql0KYKIEZoVx5CG@H72UN1OGdDtBpGM@ge3KEs3m2nIrV0gEhqr5lLqhBYfWdA7@hP7crMfU4Q0ktnXE2lYoczIYhVGom61HClo3b2IYd@7REs4dDIIk@LII7p6lro1m8Y7yrjQTmImBIWzQHZZjC8SnFQOKuGOV9M5wwJqEDd1rfY7J5qMzNGzUiQyl9T6ITS22esuX8LgwuBGWcwIShfSBF5D@pf48NGm08bkxFjie4NIBxbuzqp6I2jnsmYQh1wt8lDx3T1pEiHKuJTTDSFOjKMEqWFLhT5zZ3hIUrKkHdht7KEf2MA2tCEJk8qzr6MFK1Rn9kt6b7DkPWX8gYkXtgdJsy/IB9AKdnx/RZVR5GzDSHNdQesJGMh0WVLH9Bu@uTQR3yCROu9oAuiNh8nFy0MBQk8OdC7ibj8OKBunychQofHK1HLkiyhYQx7nej9jK/hXUGXTtBAk6Un4RbW7e18fw8UrvHVYAKtoLTy8dq4UjDVNtDK0GaY62MCPmyRocz9LgxOi2BZicORI1Mr91yIgcONNVRLMwBwYucIw8tItC3GFVNx5nqwAibmfP0VBQQKs3MMQ1v0CPmvHq4uNWm3QWUVqEvZ/dq1nBWSrm8bwGbjQadwzifCF6XXQxQj1rs@bjOB3EvDl6YWrg3Be1BwdyiRT4qMV6bSzJikLlxdwOYkf3vLyLaKl2EKqIG2Au/onumPXjPFbRbupCwyb2ac8g0gyDwF0dCG9Deq5bYELJk/Ql@N0A2J8eqJ3kg6QF0sGzOJ5evXLnagFCmAszmcZ16aDcUjv002BnA3oK9BKxxuxpv6LmldB25l4CeR35R6jAnixB4Z/7hBWqagb5oyZ0PnhsdNarDAjqmiuwKtOw@CiNNbmFuUjIwEHBnE4Wpj7tfTcRAuAVbEoLEY5B9Ds6uNQavYW1Divid8oO@wXxqRfhPe4zGr1o1IkLob@qK/kkVLj6eTMg6ochz0rPhry1kSscPy8JOmpyC@bY5KJHFjUaGFZHh4uHWpu6EvfEMjHgsTWY6P7uqdg2DeY6j447RYXqK9bYPG/GBnHXoODhECDZwUtRkGRcE7pbg4NJbqMMsy1bNArQruFEHE1Uo/Fibi2I@cBFhK3HUHndRlRTL5O458TdnA18MKYV4mmnJVK5USipa5FTNYbkn3dhi2hDj0CQKZwZwQsijhGSZi6MQowCYqwzAQ5/Raiq@zTzgRtCLLLNq0YBSy0jaR5N2ydQiOwMu6LempMxCiho3@/cNjO50UTo4xbVAN17tDq6tYPyAljKjAcgI73SkGGtiKfk1UUPZnAlh1kPppzWTn/rgA1xxz1164g8b8SMtbxUv@EbyXlebi8OGtkeVLScp1HuXQWLfelpRkF@U5rPlGIiYspjyTbDAMjJs0nfet7UgSuzYLmmNEmLUgFp8fLSoAd5Q1NuV1Knuc4I2Lmdah3RBbfT0DYZ0rBf9glTFDHrLvrQU5vgbL0DaGpzaaOR4MdJmoo6smGGMQUlvRqq1Gq4dssXYdwI2iKmCohaBWIdqOaAFiKDH1eUYUq3x17VJxpcKSpNzWJ5YEsi5Xkg@BjKUjAakoPL0dloT1c0ZPqQiu5MQeWHbiegBa2zAfH@2s279XsqRCpEWB7b/aI2BkgHKSFsG97zCZQYFNNMhWymeGYBslgpJ1ZwcEhFxhw2U9MVOP98v6eAVB8vfpuLFRQU9DMM19ltQIXq0xBLoKxjfqOJVxQZZV8GFMsIRpiTOKI2UQsOPcFhUIOSWtUIlYgelyCE0nQhm2ovWRTQ@qrOVEy3s7s8InmznOWY2pA9LuJWKxLVQ7UUPQxrjPTr@YFMUa4AzOnH0ObKDuTVKTOvJyBhZe8T@adtD7tBlYZT0iAaIWHXmREmmxWgpCtDscOIb2@tCzUA2ZBntDCDk2zy8/Z6GApF2sDqxnymo9TOa@qEMFAue5OghlRJTqvZ6LaDTtVUBJi90qOgLRq4E3OHbYxZ/WxhF@iawtPEqJnQ@NRWMVMJMA5lQ3dyLtZvT8C7Bf4qim0XQXQpVpQFA@QqScJrrrYC@gXtH0cm9zSBsJecz4HPMnUUShp0fcij1AEhMXQL6GQmRutYUIOcEnFwRLfOIGSDuj@fwohJS1uLCA34zmBTzZox9zf6I3j0TGgQU7OyHdSaBJqxwA53eYLt0QsyW0gS7cpeYBe0FU6IZbuQsia9ZAkMI07GqAucPsAiu5zAxmizZT/Xmta7AEXDrokaGpYEIqfDnYcb58Juvcy@m8vHEa7xEZX0OvZGiRDYswkU@iaYepeROnARvYflVo66zRFq5MhZgKsEIZSBPVTVHSPWfF7bz44ddKsl4xy0sJGMuCjmFqocrvOSIZ6vwBMuGh@6HIdW0LxLdy@waMO7dJY3MgguWAzUcmmnNQw69gH8oS0G4PxkyIK4ttznTcyMttiDREBhELUL1CEEypYMcAjaK6U4cMgKeX6DnsuOYaxCwEyGdIcoUIhwxbfGJF0lcUAqTXY6@swpQBMRpF68s3B4Ue9COCi5H18IVfJgrduARKC72N/co8RQb4nVHdxMDXIBWoWqylaQt/0G6GrzoN77q3CWIQNzy0Q6Qig70Eno684h@yrSBDnO0VUm7QzMeEDV1jExV4GFmlHMVAQinJE1Tfl8VkE9ND@LDA07NIKtuPnyKBEwIWeuTHCB50pWodIJBc/uRSECA0THQc8s7LyvDmNmDDDKaqwNqxbDuIKFXiG859ww4ZSnSNmzLIWkHIjGhiirj/l5Tb1IHaaaE3BaKEiUxq1JWHAyrIIcMbFOivtUTeA7F4FmqicPl/Phsi1Q@3Fn0Pdzp5a7Q93RkIhhNLVjEnrgqYnOR72oId2gzRSlEmmYXgiH3RGrCqygdOXGvMJeCDziotwjQYjXxIhah31lWk0znOspYTohSRgCmyqPdmgKQXGayAEpI5MKbXaDKgLlDoUDu9v@zDGTuA/IhAFECKRklVauD4KAQ2/F56CLkJmXhH4VkbgXp74LVDh5aAczVJe0ZaFJLF4fb8iqgIJeue4LiXTmCOi0EuUMZ12y3CCnPB9eEIOKdWAamanCcyjr6jUChJ0sg33KrcOGugbFUeyHHhUglgvcwtzYvSaDNptJCe490TZrkSoHTGHsFrhhaYOEZtRiCXS72Fon@CoV4QmNvD3pC7UJv@m961Cw1QcZIhetETHuSFnC0PENxOt9lIeFIldHxSs4vnQClzixSQijDrQzj9FgHiwe7yhbmPYz03mYGnQeNm9yILIyVUl0j4Der4qJiNyxkGMibiqNbwGXBzzJvugxQdQMmuetUoc1QM4KztjgZxrSk19k6lEbPRIDv98Iq@lKN0gl9ebFRB@AgZbHOa1sjol8dkE@QGmkc@2FgoChYP0VOPuoPKBulIvPy2EsODRPXAWe@RH5Osp5kRc8iAOUunrnVop@uQoWXNvsHE1Jmalbh6ZVIWFeRVNldpPoAf0D4w4BESLstAqihNPJAcqnXp2j/bHfjpWWFMojxvPyUTVRIPM0cDMyYiBRvAqPXAJLKrOLf16Z6ixDlJnWY6E/RE@bYfO0VcSxzs4AFSiKfWCHBT3mLvYgtquTbSnDIcoVkI/u2sx@io8vntBQaJJUfKyzcZxU4E/K49mBhlJnYExEGu7rZqUpwAcm0zWN9ARm2sJWkdGsiCOraThuJNWAg32oxAqTwaX5UiJA4IsR5cItCsDdkXKOyGOGz94zynGbYCxPNikoNxzVpJKJHTsmv2@XATpFws5laCeybA/YjhHFS8YWFGgnzKKAfRBTMErEaZ0dNIFRLrezgSVGkYpmrAGe76gZMlFXbyCAm0xxdUISD0/nBX1dK8IPaT@vBKQGDoDNwemr4QQyJ2ZFU6HRqxtUR6ess@hLO9NSUa/k4KQyk/pdDFE@m2eU7CTEI3upexl6aN8cMpdUTjOQ01PetljYwkI1AoS0hSIjeoBZJ5mFPqEe4Ri7QTEtFIccXzhMY8Hqe@D2jCh6fgf7tLNmTU0Igsl27grrVmYJDpXnGcHpkgREybFEjz2CPjjVEjqBk8NZSe087D0NuFI7ULiURowz1TL1AFdFNdaq8CWq63Q1Oc1dUOwGoEddiJbmhi6ZLEhqXT5BmNEXPG/rjWd0bAMihwNBsuVayQ4myDwsSLwlxXM6VPyEQud521pufe0aIOsAzzKYHRyMYWqVBM1R1CkC4tHCIqqISOqkITl4@oy8gyJ@Bu9adTSYequkMGgrjdTkhzatNufmw1bljVugjc1jWIM8MiGoNQ6F4DkLlZrNI1A0ciAOVWYAvbOSRXM3SIiB9IxzYsHW6@jmW9mS0EemEBv2YkCcud2CniVDg7XYiqBAkQNhHccClMFGiIUtcEgOOXhIuxJnL7CVdIzoDqlfah5orbaVCwVuneZoNvJwylLbHiE2wxKEoKs9hpYY0MvteXvB8VHca6nMpoGtA0kTBQR4EitZctRKIwzKaFlgMeCMHGhEDHYJhhlCFqVHtRnEAfOll6l60yIHRRDE1OSBKRZQcddRUUeYQd1Izzs3t3EEkNYaGksRdsIGl9pRUIcj@oopHhFRckc4ggk2TbbIJQaC4UViBJSw2k2jGAGl25K5g/J2o3FSEhTvSCEHGCPYvvI8AZWriWbUIqkHVn8nveaAn9RkJCAz@7KJPXBnC4zinhcylM6WmFnnXhCmaHgoTjeIKhugNUlUZYNeBjSE/nV3qGZRF8WDf@0dhydWxoI2@OsMYCNOZpXGcQbVwXGuKEu/S5eicXpATgCLv2KOx9VqFQw/REIVYjCrVGvMEx4U97wzBlqxiww6IiGEyYgclMUNiCkpi1BHpQMUclo5DgvUqJ@xpgYfNzwRI3/Zq32bSgPRXKbOfWO/yG1CQ9dd6WKgksaJqLVbQ0pPG/uyS@L5VN1YjzM9XC6sa5NDcrRyrS1WBM8ns6BP0BghdzR25QliiKrZQ@wLkgwNX6bYBpSIUL6@@uAE6eDqYPHWPmzge5XlxWhqD7W5XDcqUYTJFjHA2bD0NM2WAj7t8D273M9bCLK1rThqZLyvPDz0OU778rxF0YK9zGCqwDCaXI0C8J58@m65VSixUvTCyWGBTHVu1PM3nO3F2xeYRptynWMIIWhiUS@FxgE3biH2bWfGNzq1U49o/ZYSYJe4B8HawOWlnY8rHCqcuTE5hboeBjTCcG3Gdifo4ZRwtkVLneFeBjZlQB6EkbUqEOfb9a2eYKGMD9XVbAjzXSdF8BdTdlJU6bmWoFbBdiRbFKzZnpc85IluoKIdeFdvCFrB9HeXKypi3aFUjzfFuYpaGiCwI/RU4T0CbZxk06Gar/giLmiah/nGIHonNAsTkjmiRBGb/5C8JrnganSwc3HEm2tRH7su3NISElXveJJGMdlSdo8cZemmXbI5qg512BoWQUgORsdPFmCpLfDiUooZaPXnHUxasnFEmb1yZdgvzM3QgYxCfHX/fIdhnECa5ZGFCTePjnGeBYJS/oJfFqoyAYVjX8A4DxjoslZ9tFZD/5e06tBHLutwtWM5LGOJD6dXi7r7z39r@P/5f7pgDV32HOz5R49HtZbrgSFeS7bj/f/Pv2V4vrQ@yXA7DPE/z/P/cvT/f5wcYiz9gleuJca0/EUfnk/a955h4PByDiNZULJUEgSnhu7Wh4A15oUFTWm2HKo6BQedMXb/tqvkiIjoXel@ixUqWy@QV4kIIB7Y6rbG20LIw/lj4XknLvWnFkVBhD38fNz@zMMiAQaHP7MKB0Wy051wlSrohgWZkGuzFhAguRrcLNwn16ZUCH4V7S0WDbk@GNHtxK2qCGkqWuLzuWU9o2/@dAYwYm4Y94MEy0AzQ4LsNUMXJc@HUrQ4u/0IULY7@06hwxRZR4tTfgVvTCDM3Ck3WJIA0eDEiHV19H5TB3ZGKqaCSGEOZgZ9nfuXQOZ3@X8B "Perl 6 – Try It Online")
Anonymous code block that takes input curried, like `f(pi)(list)` and returns `2` for Basic, `1` for Standard and `0` for invalid.
### Explanation:
```
->\p{ } # Anonymous code block taking pi
{ }o* # Returning a code block
>>.chars # That converts words to the length of each word
# Check if Basic if all numbers are below 11
.comb( ) # Match
/1<(0 # Only the 0s of 10s
|\d/ # and all other digits
Z==p # Zip equal each digit with pi
[*] # Are all digits equal?
(1+?(11>.all))* # And multiply by 2 if all digits are below 11, else 1
```
[Answer]
# JavaScript (ES6), 74 bytes
Takes input as `(pi)(string)`, where \$\pi\$ is passed as a string of digits. Returns \$0\$ (basic), \$1\$ (standard) or \$2\$ (incorrect).
```
p=>s=>p.search(s.split` `.map(w=>(l=w.length,s|=l>10,l-10&&l)).join``)?2:s
```
[Try it online!](https://tio.run/##fLxZr/NKkiT43r/CUQ/dlUB3QRu1TCNrQC2kdlKi9qcSSS0UV1GkJArz33vM4tQ8DDA9mXlv3nuOREZ4uJubm3t8j/P7/PLyICv@R5L6l/91/ef/yv75769//nv2b6/LOffu//r6t1cWBcV/yH/8W3zO/vXzz3//1@ifn3@LLsmtuP/31//1z@jf67X/Hv2Peu2//tfoH//4t0caJP/xH//4Pxv/x@t/ZcE//6VZb9W1XqOtNbVur9NrNprdVrvRbjWb3Waj09NqjW63Ve916u1es9drdrR6Tes2ar1Oq9dq4YvNWqdbb7dq7Ua33ah1ez38X7fWbHUbWrPVqNc7tXan123UW91at63Vm40uvtJutzq1Ht7Uatd6msYnNpr1Dr6i9Vq1br3RbXXr@G6Lr2/Va41OrY6Pa3heTdO0XhtfbDR6rW5Pa/WatWa3zh9hpXUsTGu3tV6ziY/wOfhXrKXZ7HTbnW6z3tYanXoDT6v16i3@Cp/GJrAOLLldr7W0VrPR5lfqzWav2a51Gu1ao4UP1xudZqfR0rqdGtZfazfrmoYXdlr4mwaD4H/YeaPX0Fp4dqeuNWFEvBM/6NXwoFodT6xp@B@@0ai1sEq8A7trtXtavYdTqNdhjRY/1MGGm22to/W0Xr2H7/Qadayu3uFOsT78U68JU9TrXTyt1qE5mp0eFoBj0dqdplbvdvH1Bhbc7dUbOEh8s9vEGnrYS6PXbWJp@KvRwsnBBK0mTqeG9eDXrXazpzUaLWwXZurgpzhAtTL8c6eDLWA1nXqn3cAaOm28hS4DO9T5fzBnq8ZzrtVqWhtH2YGdG@2m1q518W2sqlOHY3Tw/91em5ZqtvGiTrcDH2nDI2q9GhaMbTSxKPwIJ6x1NXykptU6PW6lTZvir6bW4kliw/V6A5vCSvHELpwRh1/HqfS6dWyx1@m0@NIa7IOV4fzwKqyhp/7TxaH2Ot0a/pWu3etgT3BSHgWOuKsxAujoLQ0LavdqMCKiowEDwWRwWPpZV6s1sUccDQ4ELlGv1bH7Zh1O1@zCPl14Pv6/CaPgB3Wsuk0D0lZ1mBlf7qlw6dXgwx1NwxOxDKxfY1Q14S5NGAC/UfHXo@nqNGQXZ8GjaDTaXfgktghzNPBB/DNOGn6Hk2orI3XhAAi1BlwLi4NRuxqejM92GSxteCsdRBkXG4Ph8VmsC/@AqKPF@VYYE84MV23SqVo92LHD7TVbnV4d8YCIgBvgFS3ECRy6Bs@G/RAUeDy8Gy4Mz@4ybuBYWq1Ha3Sw3Wan1UYgw344WXyt1qph6fC1eruDo@rh37qMmhZcAwvHehGvGr5Ww1axnxZNjtBo4U2EB@6Xvgj7IzYAVDAvLKg8Abbix1v4Ek@0RdRiNHZbDNT2X3xguQgQ@HsXT0J48xX4Oz6rtXttIgIwi7ijEZgQh/QErA8n0MT2OvBBBFALqARnQjwBPnrYELCk1Wj3/ry4w2NtET2JDr1mC8bBacGV8YEWjwdPh7fBarAgsBDWBZi2aDVAJrYFO@JjPT4Ry6LFsFDsEpbF92AKeAcQDy7aQ3gheGmbWgPARHfBE3rwki6BoUXbAH3bWEuPgIKEQCcHasJydYY2Dgqn1IFFgLH4j8IUuDnRH@uC67UZ6TAf4YF@iYDGx5owEUCOOQTPJ17hgzjBuoZ/x8MJtC0@G@/oEQGI8wgVnHoHcFQHIDbhTYiWRosu1MByYAJsGK6GAEFYw2KNBhASsEL3aXDp7S5OAUGGmMJTa8oMOGT8G1wen2NyA@oAL7QO39lUzg8z4EN1ei@OREPoMXE0maVq@HINwYT3wzDEXiyvQb8k6LRUzsKTsSyNp4z9AuBxUFwZgxMA3uTxtZRREVw9YjEyHLwR4E2waBMQ4daAY0AvDNilxeFMTAV4Gy2A0GMiRXJuA5UAjcxTeEaXx8tA6fHT8D/AK1bapkmbtBe8G/5DoEGypSM3mBvwOXgl3oYnMDLwNxxXBx4FHMYrajgqnAIWRACs0QpYOhwbNmhpyH5kBcjrLfAIGAN4jhgCLaALdrBzbAl5GMjAV2uEw5ZC2S6RFX4Ex4YfAp3oPh2mFiQR7ImLwcLxF4IaYQtogbfiwHvqxTgafB0vJW53@COcThc/h58DplrMqdgMDr3LRAd7Y8swLmELp4XTQ6yC2NB0/GfYlfEAH4MhGQt1jdgMYMY/w7UBgYAcrAUuCL@DG2t8PpJnkzSngZTSoGGVD8DD8Ut4AY@frkfHhBFh8XbnD5a6hGKmf/yMcQgMbLeJjXB7PEBrE8QADJryKTKCDtkKDAx4AV4jItrkHk14BNwRQNFpE7s6eAs4EL@OhF1jmkIcgL1h7U0SHuyqCctiuTgJHr9G/CTQkAEgXAA3XZIZ/Lqj0jNQjdSrS99CLodfIOXjLBuMYo1GAzrg4cyipE1wkB7hFycBEOki4shE6EmwAhwVIER6ADQG1mG1CPYO6QvIEsKO8N5qYR8av0yMVDQH5wMIaDII8Pm6YhB1BBUpC/YKd8ATADIAPXg1FtxBngdZxAs6OFhmWMQH@Cv4BV4HctIhf0Iugge0gR/KMxlFSA4qpMGQgF/4ep1OyLQLb6iRKBFoNGQq@B5pKmgO8lCb5EWhs8rAdSJrh7GhMdkTDHBmTO4tMi4VTirquwotFQ/p8RxI94D3eBpeyVyBT/X@Tgp4CAwBZGCn8A7QPLpUjWmdNIlIQ9sgM3bJEmlvBiF212TO7RHccVCgDR2yGG4cS4TrdprEdWwLqMn8DrsSsxsq/bSZ5mCZDkEYn0YUaeSsKsjBJXD@ZN5wwCaRGW5c46EgvEDkuySQtFO7SVrFJE@soNE1nD9iHJuFAcERiJFInDjLHjMi8gGJISKMnAVfgXWQemBovBw0lr7YYNFRYwzDRNgfTYLAZcBi64ry90jhEZyIIGZl8lWWGNgrzh/rJfaSRMHtcWQAHdLsBh0Pp48lwjHwPsU9eshzKtH1FLEmt4HRGCEaSQotiDVy8awtAP017BgegzeQFAGwGXN1IjGOBSYATDOXIDSbfBOCAqmXpRXcDitEsmGx1eThYL@s0wjUdX7sLwVosBP8RnEQUiVNlRD4MeyFc4fn821Azjbs22XkIi6Bu8gB8HacJ6lbk8YmfJDDdVUViJW2VWEBBsyj7BEb8EUan4VLh7kEhQHWDP8HIhLBYVVAJD2a1RrMgEREyg1sJdohfyFDkjywZmR@hyGB/uoY4V9NxjZJB4kqXL7OOgcJAtwQwIjjA47XcBQN5gZ6Lw6YyIRo1ri2BkMKHAW0ByvG5rEDej@2yZDHavEohJqq/UCU6R94Ai3XZlWJ/9VAk7BXnDuhHhkcKwe2NEnTAQ@sibrkjrA4SI3CJ1gHh4Xdtcl6kZ6bqvJgSQoEgbX4IyQ8LAM2ZZkBt4DnkVPig6wTWD7AICxL26TmfG6DRA5H2eZjEBYwTY11ZUeVvwQtuDHZDCIASARrk2sAK7qKoDJ907tRqnVZePG5JN11RgIDos082W6pipIwxiqmyyIGR0hQ7zBDICpaKt8RARircFJAR4ePon001gUanZIAizUR52htVk34PrarqYyDeCV1QlQ2WMTgbHAAOJS6igzkLEYrkIdBCjOTP9GsAA78HgSTVIbg3yTPRbAreoaStU3@y2SNTyFygdjIxsiIeDu@wDODMeHPTH34FV2wRTFCI6jjWOnGeDMsjRNksMBCqDtAXbAnnLXGQqdGSg5QAZ/psJJv0Kfx0jZX1CFWINzgbdgrPFhjuuSRKcLaUwIGdgFIBYjAV2usrbFjBlWbXB0g2WJNxwhhIsPW8DlqHQiMJiUQ1oSwO5aDdWjK7wFKbeIF8juhvMaQBsbCeXqsHlrEciAd3oOvkN6B6SFyWPO1mAsVtNX/88RIEOoMIhBRGpDEXVMFB97CQ@mQyOPI2vDiOsUSbA3JHSvsqhpCcdi6KtSJxwgB5BlEHvgCYJnVCazD2r6p3tghmW4TDYAfOL620pnwYHgagRL/ga@wqiGBQtamhsP6q0aBiCy6RvUEiYUoT2PDj@oMU5wPuHCHp8ATBWNHQgBoqDq@3eix9OOpqeodiIbatdbkwbHsI1SzVAHnBtOAO3b4Rrgxsn5d8ccGRQSNkVtrKUmGPIWu1aRSgAggc2wr1IKXsjbHIpusfOAoxCZASps0iTsgFHfJK@BiLAppYspAYDE98p4WQx6u11QiButi/A5rRMXJUhD/3OGGSORohAat32SkYlk1xh5lNjhNjZU7uBfcA0jEw@@wGsNzmYkp@IFX4DeMTKTeGtMaDIlnYs@s3MnnlHOiEOopKkqS0mRR0mHGwfEgmbGOqlMNI4fXGAOs7ZQ2QkmjzkIEmIa3N1koELRUDdkiW0GmYO6HuZihGWZKvaMCAZQEVNQJCl0yJyatNtcCQ7XI5ojlZEtdJRfggHhmSG7qPbBRDYQL6Q8IR46OA4ePKPVPI7r2FH9g4cwSr04SgQSs6tMmmRSrYY31NzW3NkkMsLPBMhYLBadsqaqUnBwYysczL1Bc0FjdIEjIOYlX@Aa1CxZM8Hn8M6XBhiJwgBBALfbQJM4xKdHyLdanXRZeWJQSFrAX5EB8kkV1nRIBNUhWf6pEVMwJ@bJGx0RFCOSiNYDzNYJzj5HRInfCcSC9IBTwPU2Bb4eaJoKMEpzSjzqKvXSUuAeXQOoEXjSI2RSrwP86pM8oArEsZhpkZFqgRyrBMhhHTl7DCNaoHbIwwYcUJcLpwwObNaV7YFdIO0phwhkQnbCAOotbdbQADr6VdVjrTwzTSHuYD2vMvyzt22RTXWoxFEWAfAgy@DojUJUSSvNV9RPwHhbrUhagXMqAYNamHVFUYHV0mi4xukvcqZEvwn1Aiin@UK/mgnusenBybcUWNEJWg/mrS22PyY71b4M4C4MThilpsxrEq2H1lsI0OBg1OhY5wMw6KwPWgTA8vIZEExmDDL7NmhvhCAuo0KkxuyFtwee6JGcs/wnzOB3mGvINEmeNiQ05SkncTEt/pBE8RNEqQhSrF@yhQQmTnB7rgRXhhl0KvF2mnAYxn0qjwooeyz96B84HqYlSOH2GfIiVeo30kpQbLg/mxD1olCO1GiOtS8LXZv1EGqVIGlCj1yBC4F8RmnUCGx2lzVzSoQzcZYmEMpbSLpMxazoWeU0SB1LkLjaMNVEQaZOEkejV2io5MuxJj7EzxJEGHoCggCPhmcwt1AqoesFl6kwwXEaNCVAlF6yS8hkxgH0Pyl8qM@JQsR3qQ5T52XcAOJHOaJTCyHYoZdbpTD2KGKp/gNCg99AvkKo0FtJwia5iPF1qhm0q@1QwsAjkc@Ql8h62Sdg6AL9gHDeYvrCVBtUhknjaj/QTJ9SiE9ZYCVMUY1@kxqBBqcAmABsdHdUhgWGQBnp0ow6zDKCSahx7MU16hWI4hEacNTsAlFl4gi22Z2pUPCgKk4sz4RB4e8QZOD3bPWTiqCvA7mEvkCh6Iv6L41DJutdS@hGOESupsdjH53hoSANduji5IYoeJRCT9lCkbDJjNZUy1aAESShuEM1I01hosmwAJnQV20PGxqeRMTrKjToK1zQKG6reaCm6hSxFLZ9OqQRh7KtNRG@ye8KKqk6UoSCITSIX0M/Jt4CjrEKJQh12pmAhjWBdU/0qoiL8l/5GdGFaodDHvK6E7TqFOiq2HW5So0hI5s/ihVIBhS5lGCp3JNRMSg02pxiUGkkhl6HSfVMV7vAuVCSUTIji3EiLshHBG36F/KdaM5Rg/noOCHU6VY24QmG7R7/rUM/CZ1kjw2fgYprKt4izFqVBOqOKTbXcFp2b4c5OIYgvqSXfy2qQflWjgTTGAptx1GMo8vQoIVI6o4xI12fhSL2M/wXc4LSxNmJvg4xObZZCPIOOfBu7VQSMZKvBJM5MgJwLOKmzGgWs0hyUvFkSY1N1yraUUVqK32iUjuqqH9kgO2PyJafDchqU@NpsXyoVHseqkb4qXKagU6cgxsYFgAGZicUKFd8W/ZZKVZNAAMRoM3UrmYAkFG4IXgGSwfhTjUPyagrTsDnLbBCzdlPJ2lS9SP1hOVYMSvxvMufC3gRdBlyd@rSmtk/BmDyWHR0GbI9GJ09TXYwu60mqjDWW0YjLFsODNBQnCoxsUUfhQ/4aMvwIYbWmlEwWBMQ9hIiqG@t/5RSCDaGupEom5i6VYpw3IQbHQAxjJiOdbKlGK/6VSladnQDVA2PlQ1bTVd0JWrup@sn4TZuFJ6u8Ho1IranDmps0F6DOJiuBCDBImYelf1dpC/Q@TeGlxgNklUrFhg@Dz3YoeVCHReFBzblHy3XYKlICcI89XqQpLJ7qZI/9s5Yqnmvq1ypkKMEg7imeKdYPD0AUsiX@16/r0UsbdFJK@KqRSWmqpfRF9lWaFAYo3NL5Uc2QDVCqBKgBlWvsLteYNVRlV1P1LvtIrOCpsHObDRZyHVLBnuoiaqpT0WMpDKekCkTmoxEB8F/6dZNtDCbGJosHbI@tZ4Y8K0rSQx4pw4C4zSZDg60CZihKS1RNEKUMAOorLSIja0o25Vl5swUAUKIn0jFZnWu08V/jhrmFnJj0osaUyJyO00deUAGPg2G9VGPxWKODs11DXOb2VRxQP2EpWm/9oUpTNTo7zCuIR6QPVf/xZ/RxUmzVCwAOMvGQvQMwSNxZzTZI77hU@KWCyzphjJ0AZhiOIiD7g4sALxAvddLdWk/Fckc1QTS209jv5LNZXtLOjEz2fMGwqQ3jEdR9NfoXFcCWas3jsfB/Nh9gFGyqwWXRG3Dc3Rbe2VXKMRsaGhk7A6T2R4goC3LIAm8i622waGs1ldYNgGR9BNOijMexIXRRZMFgeCz8gk2Vxl@WxVuJE6wvEcgkKEoD5FAHEgo@1FH8ismMwVxnQ7LDrnqXOgYpLtUHuA9pJMlHg/ojlSaOe7DhDirNfoVqN8E6FOZZpqlas85DrquQRqblOAHFfRJk1aZCRdFgzah4JZmHAibK23QtViId0lM8BYti77/Bk2S9T/GiTR/krANlui7xo0P2TxpfU12L3l988rDqSlGgnf@4phrwIGFukLxRDmwo@RGxi02wk8zRiZaSHFQd0yY5ZLzxkywtARxk8Up/Zq@BsIG8ViNlq1MFoYijWiQ4vSZ9sMF8z/Zmm2JCS1Ub1GfZAVB6BbsILVXss3WMnzYVjampUomBw249GzLE8Joq@hskn9SsER@qWU0azaqvRY/VlOBLNokk2iNTYJ@RxSRVKmoJYAJkJqpXip11FETx8y3VEaaYQg2jpin5FC8i5azRLoooEYk7qiPa4QxDk6jaVd7WU8/mRxqqEcf5ja6aUqHMxF9TWUPIUqqnAsRuGYKwq8RWmo6ozI4yS94akws2XCObIgdpE1pYfLKnVqdu3WavXONAyl8Tg3S2ofoEjb/OP7ITVQkOUiC7sFrQiIbsI7AeYtSyW8JJANAP0i3sDhlEqSOU0JAalELOqZMaZeIamwltqsYNhXtU3uo1Nb7AkgXBRn7IkoYfpQLGAgD7aJFP4mCVxt6krM9ymR2nFtsx5JTUOxEQTcWxKEZSKqaUAcdjo4MNYBCGLuGfSraSwtk@Yn8SaM3OIlMx31FTFLDBeRTWTiQcLVYVzDl1NQJEWZSDXnDQBjtvXdUga/NkWiqdctNwdI0dQnoyyDVzqRpmUjFGAqexrFJQ2KJplH5G4@Hvbeog7HxTb1Zra5OTUMmpsYHbojkbiu6zWddU5S13QubGPimjgHttsf3FKpazYqoNy9YoJw1UtcDcWmcYUy7jPBQlatZIDOsuuSVQl4mXebipqElPbYfr5ngQi7Aa25@s4ThOgiTGIr6j5jNYSjKr4p9VB@gv3/YUdsKf6BzkUYRsJRzgG6REGsfdiCEKvxtqZKrHipqajkb/gUOQATLUWN20OVEDTGeZoEouohgH5qiDURgje@DKKF0y67Al0FZtFzVm8dcB01Snhm7PXM65CaUKs5VBklSrs8ogmtQUGKrGuuo61ZQYrjSYBj2JHRs2LKgOsdyssZ7jYbEybbHry5Yf5RjGbpejJQzhzt8QDlZJtbD@p80yf5LysEnS/ZvywRdR6HeVdMT2apdDAKykWiydgDycceDsB4@HTcS6UlfZEeJ2sUYgcucPHhtqloltS/aDWypQamzCaJQCmH3IenpsZCg9Cekeh/GnJcEYzN/UAVnSdjhk1OFIU499R42jOxzYoqXIvlkP9FjaUaVmU6lHkRwf7XGaieIiBXz2Agjz7EhpLL3ZD4VL83lsFXMoBXtoK8W@o0Qa2Jw0u8mBJ85vdNg2pO6hhq3U@GKH3V@q//BiNj5YMrWouDcV2mgqtNji6HJZVFDZnCPV5lwjIoCZvc1RDB57l73dGkd@wKmANzzbHseIepy66FHe4AQGPJ/MkNMDpKZdauXsI7KzS6bB@am/XlCHKMapsa4ayCCTIgqBilF6YIjX1JAIe6Y1NYBFKaDH6o5kid6AlEdTcuiUtSvHKmiaNk9KDUewkcZJPgrUMFOL7SdWSSqXso2opCAsAFGlqdFBpXKp6kh1l5mwmZ6p/tPZ2danuF7npBBxgTOY/B0FNpZRpPqqaiMDZYDC2OxVsxanRsi6nedNOsaUQcGbvLOrhF@Os5C3UURQnXKqTuzhsCRkTHOij@bmTECX80pU94jTTfYqOa1EA5KIaWwma8w4HEMkMyGQctyRs4/EMI45EmnUSBKrD02N/xD1OC1AvZMGVjmJHJxgxVSAn2vsObOpwcEEljhNNibYc/kjKHgJiir28tg85zwwpzrYSNHUrAAZANMIFf0uewNUl2p/yh4biR3WfFT2eqohRemuq6keNEuWlprh7GkK1vA1xhKHOVmUcXalpToDBM9m86@bznYeE47qc6uCiRPGJOscPeaYDZ2P46Gs5Di3REhghucETINoAIjiMBTHQKnSq2FYdo45pMjhSqVJw96aEms4H0aixUzfVgOORHrKPm0l/KBuo1pHssOKqknoUyMvra6aeuUpEu/V1NQf14BtiSGqZ4CD4CyWIuysHqn7sFpqKQSn2QFQQC@21BU1balTZMcGOYpDvswcjGOFsmywK/mMzTDVnqTnsdfPWKUww@NCIHXrar4KpKhD0tCq/efkHPt/PUrbnIRSBmQIUWUkNf8bbyNprSl5kefLVu/fiDXLSRYrNBrnLJiyOTPS47/VeRL1PzYJ4FSTmwginAWBmfM2ZCccqa6r4rXGar3LWZa6ahTXqeWxXqEuUWNziwHTVk1RzhhR5uiSqLFJQxQhu6CSxWEbTXEqZkDOHFH3YBHYUcm4rfRKzuvVOPCgnKNLSGfd2lRiBNfJxXEkTrU7m2rUqE6ga3NYhxV0TdWl1CDJlrAfDtbBIyj@kuC1WFBQq1BBybpNBQM@1VPqIfyM48X8BnvAPXI0rKrJ4GZjU@MEC8cPCVNKzGZTrdlT0cUeKokM/IXTSjVijXKBHl9Rb6n3c4yZ4Ms5LqVDqjYOwKlON1Tzut2eEgfVUGdPySPsrzQ6aoamw3lWiqqUb7oEdsonbRJ30hl28FRRQrGxS0VITQ9RkWCaUFN/PXJTroAjqiq4GGyc62LCQ/C2qNeBv1PNBYUCbuCv9h8HZlD/zfk02Slo0lKEFKqWVGo4odVQsx3Uweqq4lfoqY5HSQENJSDQdjiTv/Y859OZeNT0cpeCOBsTvNHQ@5voUVDLeQ@6Z0eVPA3WmEzczMgNNWvNU@D5Uphqk95ykINZ4I@4sPSl13SV5MBWIdk1Yb9LWt6h8ttVY0SMe3ZXyZnwYJ4x@378IKdmOajC6hUkkyIC@TYHSFjTKpbLHl/nP6d424rXddoq@zWYucA9CZ49NYXNDi4LrjZ7DhRB8QgOnVAY5GNgOs6oc3SFNTlpFaO01VYlI9lXW8FIV41Ut@jzLcYRFsmUpjKgGnZnt4UXOWpqcqyppjvaanweq2f27JB5N9TshyJSbLER@DoEYQ7LUL5sK42EPJMEkcWfRmm0ySE5spcWK0J4TZ33GRAzPWZHmIYn1uKMCNVV1cmvs7NCzky0YvIlcemwXUOQ6KreFep3TgBxEJ2TP8pSZOCc7mSDjHtWxKSlxvPVEAd9mTUQyj7mHDX4pi5cdJnBkMooFXNsrElhTUnhFAQ5dfPX5GyxWFXFXU05GIfqqE3y2gTZTUdVI0hyrOEISz02gyjkURxmemQMKU23RyGL2My0R9bOphyHH9RNGnZ1SYFIpzhLwpTJ1pFG8R1RWOPEmkbGR0jlitrcbp2qMpIce@E17p4vY97RWD40maIIYEr65p0e1SnlSFVbsSaeN2dJO0zsbQ7zUMdgF5ZJ7i@SqIxTegeINVQPpc2ToXnJLNrcBBVUNWHQ5aQUZ@lImBocFuR9ngalROoMfDEpEjtvbOur5ju7c2oIVjkwRQWma871qLF@SqgaU4JGL2Jkq7sZTSYNjeMtPfb2eVpslwEPyGRrzBQ91epVOYKdJp47ZzhqykGYATlUyS4zRRhqY@QZdQ7rq9nrWltJp/gM9a1e709BVRVOkxP0JNZ/aEKg5kQGUL/DAGXDnjU2h7Poyhwcx6c43s0Nq8szIP/kxS2KSEy4lLTV6FP3b6yYzaaW6keQlZMEYd/U/ohdFH@pzPXUdIymmqHqDganGFld9ZRQzwChPM7HK3FMXQSBP9P6TZJ1emRbMXCO@zABtan5sW5kAHfZvaNsxdqrqwRR1bJpqPLqb4CHiR92BmHhTBVr8B6bZNh9l8OXHFYioWJqplKprpERWKjQUJ6iQERRFJylq8ZpNeYSzvWyZuHcB/tewP0eS0H20jmQ0eD4H0UsihWUqJm1W2o0ie5BDsN7H7yX0eLbSAUaCgZanHYGLqpqleosx1ya9DZ@hW6rZoYQ9N2/SX/V3lYdNI5QqfZzhxHSYkOLY3r48Z9mQkmQYc@BK46E1/4WobCoo@QbgAmlOnWpq6s6dlS4lUDLSymck2MfkGU11VF6ArfDniUHXLqcJmfNRzhAJLDO1oiCnBZRF4g41NbmaHxD1Q2c1WmpSy6qK8Y415goyOZ4trzDxZk@SoQ9NYbcUi18Uri/O4NqaJCz4zx0@mqP/ac2sYRT93DtnhIDlVtzJpXtTY7QNlWPvqnuB7E0p2HVZD7ZT@tPKVc3hxiPdBpe1FGDG6QcHN/vqtuHGgGbDIeIjFVSE6aMV1P31VpsSjFXaxwaoT7KbhX7aST4HaqafCmHv2t/nIgeDQdvqSqBEwb0SboMe@JKkVMvZnDynJhhOfLQ4vARfZg8mrI7YZ3Traov1WWZx3FJxeQ7DD42YFVfnKKOYk4dTpd11ZgCiSVnZtjOJTchTjeUGgle0GSztEbZhEImm0fNtprpYluKPWGOhfDw2JciuWSDpK6usPzd3OORcZKLtuXlBdWgqKtbPuxhkKT9DXVwlpjXV9iar/HWVZeDhLyOpDyDF954pC320Rp/9SjeDbPC0TlkxDF3jrdwYETNarFzTdah@pNdBiuMzrHyLl2SI5IUIv/mGJWcy044g59@z2k8avO86NIju1ZXmf6UeNqCc@Jsjvy1VCgVM3joTTQN2x4dVvu8lKAArd77G@Fq/kUr2zbEvboiSyps6dwcwmd3jPKionE0FGeXOFpUV5Og1BPaf5mDyi5JEy@IIMAY77y4xGYe9aSmGkenNtVUOjbTMYdgWz01vknOzW44j4YySI33@pTCCIBqqqYWORUVyKa6l9Gmkk25W7k7fUeNY9MveyopcZu8saVxbINeygqS9yIIJZ3/x/r8LQsIwhlviNWp1JPGNJVCzpKvrcQddXeT1IF9ITVpoEboOL5fVzcxeKGvqW6SaGqGmKPsf0oxS/CWmkmngqCGYBTF4ko09mR4dZUr19ToDHGI9kVUUT3RqFWpix@cZuftLzIs6uHcKph7ixSLQxENpc8yTapETfxqcSJEY4g0OIWpqSEYXojgeAnZIvkaw5jJkxeSayQpSgivqaZkR/U21AuZg5iFWOVScuzw@inTgmov8P4kCbHSUyhBUDAmTeIO@LgmZ@1JxVRPuqfkl7rqHzepb/K6Ew@R5KrHEk77kxB4j4BiKwV/wjyrFabplpqGZ2@OfKjJuUkSDl6hYn@CRoaTs2rg7DLvZRMhwZhbvBPCo@E0lrooy0u16taf0iY55c32flfFEmc9OHVL@CGOKolHQR1vI/zdk1aMoPY351BTkgqvNHC4uKU6RmpolbdTeUuzzQ@0SIDZwmaNTM2IjU3mBNVWVUU4Z52oGJGENTk@oG5WNEgGWPHAhorlKIlNzf0rlYK3c5h4GqpPyLvvPEbsVvsTWOkF@EVLTXvxlkGTd0Rras11pb/V1WVCWpLEs8t2NK/tcbROhRnnXsiuWDazhq6r25YN8m6NV8E11a/TOBfElg/VtwYbHapw4ofYF@dV3k5DqRR/uh1BmnN1VIQ4xElWQ/M21B1H9sHU5WRe5yRT6TKba38Tc4rO8jVtVTl1WJt31SArR@7VbSJ15YT8h/oFpYAOB@do2RYfqu6EEkc5r8zyUt3b4jDF36QxhdGWmiZvqHsmLTId3mBj/lU9SYqDvIHLepz6EjdYV3fRecGjztFh3gphR0klVPa1CNYahycp1XFukLJtW921Io62WVDV1IP4Jx6oMae6GgyjvMiqkdMlTIUd1WToqia06g0xtaME4W1D@iqeopGuKKmkRj6vyIIip@p2K@luU9XvTcUxeSmvTnFF9QW1huooqwYoZTecHGc9qUixRuOdMapsvNxQYwVHRafFioOVLidLeKeQF/gYaBx/YdamcKYIT0cN9v9RNI6Y8U9f6HDMhHVQXV08YSqhZdiB7v2N2VMF4wg3C0yeHjMPVUv2S3iLTF1pVFdVKe4oQYgVVlP98Q1K/tNYuHcaiu4qSZTXYzi00Pm7qdZQbfAaL3IxZ3bUH09AFUBd/lJ/ZEGPWjeH18nmu@rGc/1vcIUcQnXfVBufvsYpWt6YIz@isErOrGZq6kq4pu5IBZMKOe@mKSDnhRh1cV7NOjNN1iid9/4UA0QQ74zWWNqpi8GUlZGT1NA@co@ayaq31eU8oBWHF4m96q5WU9214pw19XKKxXBwTYUCWa5KtH9aFsfhGureMFsybAOoSpY3Y8i@Odmm6hCqFSzdutwR980y5u86PgfXVK@eeY2ir5ou6dSUFs7LFqSyTRXdnKxi/VpToMrFkVjyIgVxRGUHVqFqVK6l/oiPhhov@ysh1VgRmQq1HHIy9vmYcNmy5IggO4z8MwKQRtggY5Il/6IAy2nMNmf8iSckyDUGLq/ZkruwCufP@J@6mn3ilBDny6la8NZDT409k/Oq61eU2tiNUjcTlS0oktbUIAlnBNTVN6p81KvYbeafA6L6cg1erGCd2VItf1ITSgFtZo62usbOLXWVjFij6/JiLacalNBHcYQzxCxXyY85ucUJZU2NzBJNWTOqXvKfaSkid1RrRc3gcXJNoxpWU4OMLXWTrMlLCEzkHVbGFLbYEuXIjrpdxms1baqTPSWYMhZJvtk5ZBSwIdxq/Q3dKrreUW1salYsgwhhSAt1QpZq4qqbBLyjyh6SaqErdZ7zSjVO7XFqRNUdbJO01Z@3QHLUZCUCEoTso9xQDZDz@ic1S0riLXUnpMfkxblS3sRnB7al@k1/k8ENdRmTg4dqUk0xs4bqSHFchrBLcavOsGxzzlD9@Qs9Nm0o@3NEWskevADaVNO96q4HyZLG0UtSVoojvBXVUddmWJZSDOXkIpbIP2WG/ce6GtrjuHSdf7pGS113qKlinsMW7Lzwcg7v5fC1LdW87KqqVk08MG0p5Y7I3/3PWRdan6S4wRm1NokfG2LsDvKeE69DqOsaqu3VVtfFKH41VZnWVIDRJKMmZjd4jxaHwjvuvKzPgQNqohxc55SSurBZ491p9Qdc8I8IIeBxA7X6v/zP//JfvDR5pdHl36L09q//zT2/Au@//eN//r9@ev3XLPjHv/5LdXn9yz/@8f/1m35ZyET8NCn@fz5wliKIL/jcK7skhXzOiX/Jg@QmQSJulKZxJUlwuxdyTBMp0s8lxxeSMOJHvDu@@gleF4nSaxFElaRZluZFmVzEwrPLTPA4fOt2Ke74onfGm16l71/4KHHKxD9XkgfFRTb3i6T4GpcYJ3zS9crPeGmeX7xCsuiSBBEe/L/ZinuJ5SqL2fIithwP0XwlA7MMzXOwPEl0lfRQVKOZLHd6/pXsbcixspKrXPRVYYz3kTyMYzncleu5lPNTdvsmkk5nJ/01XRtilyvJXvIbROL6sziqxoZkXzcXP/na@UOWbzkWG/MayMDdGTLY6VK8Ijm8l5VRGTexg5nMJnLcWEb/PJe0b1rW9ntdiTs8OqYYnt1fGtXovZHTTyau/g7nxkgsa5nr10kiq@NrIpF87EH8dlbjSrZeFIeFI2Mp9rfLayi3nbG3lhPLlu1SF394Mj6P38OQeHDRp/dqMBBv9JC8H88GH0cuxXl4kLlMg/i4GS73S/t/Y9NytJCXWJfHRe4S/OyskP17PYwHc9OW3RD7vuanviwT4/yU6DuQ1SD/fcQ/Tksn39jyHkT5zvDTTBJ9EV6NvoQLdze9Tu8fia8bcQZSTPH9bO2vi5MvnhW9ZJ7k69dKAkPSUTI5O/KdG2vxT0u5bj9y129Z4gQjyQe6/EbyXbvn38AX3U3MdDCM7pLfzMtdVp65PKWLpxnLIpfVYz99vld3scPvc5etT/KuFqZUMtqEi5GTP1YSv/qVhff2pX/4ruZbmU6fp2d62SwkGwfymi@LcDW4ZnI8Tm7Z4xjF8LKjnGd6aMW@PEeLVQ5jue/F8HL0ip8h32Czh2NsfxNvfb/LM8H@HvYnu/u/TB7BKC5d4/GW1zN63l5HWe6LWKzXIKnM4reXQXyYyCSyLVmuf4ODPKukWg6SSR8RIuX9INfVqrB3w/M3lpub7NeeK0f9tg5W8VNKefxO/tyWuTXTJfkeh/NFtLFxIlHxPKzFtOR9sQeHdVXKeuZOF6X0n3JYbcaRV4T7kzij7WZ6t6fy3Ljz2fXoP6Tvu/58Niuf0p9Pdf88eIn3yPQqk@tEnP692H@di9wmO@e4vMx/Lxlgc7/vOpLnxByay2Mhu5csjw@9kFG6kGf@dGV9kwS@9Q4m/aBKgSLZzPsezdNJwrc9jTOZO05/Nj3JrPq684Vd9CVYDrLNOyllYchGBvPxT6YnY7LIqrPYO9faPZfJYiVmdTqeZ4Er8@iezAey9g@RDpTLt6GYbzlsT5@BcX9IlMge8OMbv4Xp7dIPcG5wn9kOlh@vtxNZrAAOVW7bs/wocf7Nj9PZNvCAiddqfnR@uhyvsRSeV/7CYS6XyWYiq89tI@fl05w/ZXZK97f9dR1P5JYvkq9jvwpZPG7DnUT32RSA647HyWDp@lO52HE6lf1k4A4@h1Kig/Sn4vdXspDl5zo/FYEgcA/9XwXYdu@yOG1@kRzfh8ltbL9Gso8XOznsz@U8H@ZjXQ4j@5Z/U1sAwReZBdU@Gt0tGeenWMbxPPzcTEMcceUj4XDt2CVMc5p/pG8QJBfT7eE89C7fkVRXOQebRaFnR5k5@xkc/WTsF@t1dk9@cvtIMnUWi9VBPtUlG5u6mZ8EEbR9Bbpx8wPZDEoZv8xye32PJFpsxgsZ2GLhzf7ipcfJeHh3ZTDbeQsJLPe9k9LY@TNZzeNykU2@kaTea25GkufWUi6HJYy0c@3LSipDPhvJ7@V0mF7DsXyu5kfMSbr/TPuIHC99X8c5XNb1B6Enxt57A3S8XT9wz4a8n7oMvO9X9ycxcpuHg46y1@n0dJ5YvZN7yW9Z2tjJYWeML/K13gv56WEq7xUy0yx@LF9j@X2yLRxuipgbvHR/MymMhwPM7L993TaukowWo2iykdHced8F@WTlj@T2GL2HwO/HczUXa7fbDuaPw0cm41BsN5Hdwc7FyaKzBLZ/uIWyEuQjUx9kxen2kNt9X0gyQIj3BzJ8Oe9Elo9n8K3keyRo9B/D/W5QIAPLyI7l9LzJ5TMM@2Eh0eq9uWblQEbRbT3bAoauBlBN9q@9t1yf8EFvL8CW@@g4GUhVhoA5HS4W5N4HQfRB7pJ1@nCeo8PkhWiW38307u8y1uUSW58x9ogMf574L/1@GwXIWsXA9KS4vXwfoeYuB195luZMytV0cEWaEvMeP/oyTaPTbS3PdDKGb7yM9LafDUemjIDdx7Nky9dBBmmcINNeB69t8S3i4iDeaymr3XMr2@3x6sTlXoJ@CT8Epqzcezm@@kcA3Hjx/YrxXoVIosn0I4H5lSSSYdDfvK9iJnowyORSvq5SDYrV0TJxPnvRZTSBe6xw5GVWhcfPZ6m4TDJ89ecIh8vYfCzcUTiQS1V56WQv@618N3vDz3B@njPaTJ@/OU5EpvHoLM5l6Y2cGYhELvYt/cH5@55cL8fzxA1kHsP9fp6VgmwcTbH84UJG3vUwFr2K7F3oFzIeea/ryIGXjoL7KcieJwmq7eWWftMUKBWON54p7mt4@4ZiJaU@2ISvYySj6e8F57zPdmLKZm/tJpKFzucq8zB/jo5@LNPsbVum70ogv/Sz@L6Hsk/PNzhWFczPx50MjVGonz9vLDm348VB3o7czua29K3i7crGXY03/fmgkqkuZmB6yV6vzrGEv82y2vxWa@lvDmHlkQGNbmAMo81Frsh78aWYDozjTw6WxN7jiSSaA6Kn42AfFrmbnGSQ@OP7YVvq8sCHhq8HyMtCUr@qxpKGUxla17mL/IZ0IFvDkdyLlrNM1q41eyP87@dn6NnZSY7Zcab3bSMQ6y3zkzt9yXV6fJin8o1cmZVT@7yLQWLN8UPGhmeWgTie7XpeVK42ckvLp7dIDosz/P0gixG4z/MttmWs0u3lgXidLt2ZLc62kPx3LE77X4Qlu14Z7mRfXWDr2WCb7o9Xee9K4x3bmby3cooftvXRk0cq@v3sytT3VslOFhOcd4xEvbhVMrvIXj7JWdaPh3NPQQof@WeKk7Sn@lZCx@4vdJktg/ixXdk/eNRy@cJv1@PVJDPyw0MMO7DBh5/uwfMElF6MJF2UDo7KW8Tn9JN44n0fm@iZvx@ymgRHcYyvOADYEin1e3wmbirPaD4A7h@Ot4dhCxBhvZtftqUp@WGyfy@K7S4B//pIcb3PgcnO4XAGcQirQaDPELpmvkQW9V17YjxmcsebPkD2xWk2mB824OyTuNrscqt6gK7uBkuZ@zBUcZ5MbovBFdnK0M@z8fU2EPuKRLb4mIvgk@7kkxvzH3@CuF2W9xMicbPuCxB/UiXHNePs49722RicYXy3JQUxTUerO/wUJO@xDp39q5JzsffCybycyue4grGjySC@eb/9aixj94WQ3oKebB9h/DB@phxnv91aLDtHKhpsq74NEI@@/ak@/jyBJbG@60@eB6nObw@s9nCQ3cp@ZlvZ7@VuXWW4Wofp1ZFXcbq8Roazl/Jt/tZI9gfJH/fzAwDmymy9qRKUGuXNP4vxGw9nxnEFw22ray63i7GJZ/LuR@vp8ihfI5PZ7PoeoIw7fhbOLumj1ND711t23kvxPjgejnW5HnmWJPkwWkrxkfUlX1X6VJAbljsjBkZ8/beZWrIJj97cTvQJgB5VExx9XvbfoeHLNIqM@PG6wIEuoUSz1WSzQMBY4OTv4@wR/OSEfOFM97t4EuUgRR95wnHDV3p4GAMJjYEJxp96wTT0ELfy20p/9gsGoVuCzVZ@NLt@RnI/mTIfggnYSDE@uOJyPbzCnbdDKZeBxKiSop04c6mq3RPl1AgFxcFyTpEbgmB7YTR/zqWv21/kl90zep/FK3a5iWy3jiPZ3mYytj/j9XydkQBvEDK7SybZ50ZI6p@i8B6HLoqSbSz423gpk334eljFGZjytFHObsNzEc2Ql4cT7DHMj5Z@EvKQwcB3bljFSvRlMQcV@Eq@kPXiOJHQet/coyXBdSS/@ah8IdEP5bkDd/r8zpHo8TDeJ4U1vYpbZRaLLBzbIDo9xvEC6Ul4EHdj9T0BUvKTc4gnB1kZqyC8ek8Zh7fp6CTrT9/YDKvFEkXZepE/r/vJS/aDhSeffSajz21fvjMJ1lv3tp5@QtgHBeDeXp2qtYxPv2CRg6nMs@HcWsy/pszC67lAXYdi4zd7TUw3WQu@9JbFZXPagFni4dncW@ggC8P@AWm4P5eXNx08BoPnRZ6fEtTOcQZWNk5kYe38eSL2YTSfvGYSbNz0BWoBlomcFNvT1@g5kcdkD94wj2@hL6N4ci9GP1k7gGvXiqfVqu8A1i7x1h9fv6V899FUru7x/vQktpamr6/ktRv8hif5frbTz152p@Vv0redq5RXgPp3cXUf7tnevuSGem0rI9E3pViI6GxuBeuP9c2ltHfpqtxk75nskr27W77Mw1B20zmTYXk/XlIZm@Y2W2cREoFbyuwTZ/cFk9M4XPlILBdzJ8DuTzW/90sJUKmP39vfTUarammdxIuS/sv/6cuf@GvnvF8eTMkeYvXL8pb3JSp3/e0zlexmhOf82JdP/M1KMca75Bju5ZGcF2P3gFePig0AsvxJ8JTqGI3GkSWTYj@dSni9fJPoIc8gGY03KN2N9yG8IItcbXf9TYNJKKeX745WMi5G60G2NKqhvAZ9u9oNXjeZI1Ai43h9SR9152kxSIcj5KWHpFs7Hq5KZL90nlxm61ju8/7Sz@ONHN17DDIkuxFW9rDeXyT58yU8yum9WkSf8CqbY55KNQHE6nH@qrazKJnL1gnvM9f8RLIBFB0X88sVDgcEkBRVsB@tQSIv68Pm@fyKrQdI8Ces5fd@FOLfP3LzFtdBOHOAiA6KzMdL/GG0Sgcy/4xTEH0QWElf5/h6dhEIn7vbd@X58tbXS/qVzSPNBlKsL/JzdsYbz8UBb6vl9D38gNqv17PiiPSydkf9U4ziIT7ugmSYyfhjTbxyWPkCenM@yuP4Oo22O7nq9zT6jv1cqnkSnS2Y/2j9nGor5jBeL1@f6i7fnQzeumHIZT7Xv2F5lOvxd7DL4ekr5k2WBrJpZiUPKaodSOYJ5xTMR7vTfQSaK5NqtvUXLhKpE7jRrr9GPt79jiUg4TEd7WxB3YCDAur2Q8lTYzPyXaeS/uvxnL/22f4pGYAIJrVArj66Kavg/VnlgK3ZOPF9o9rL2bkeg3K3EP0aXeO9XGfFT@LD@rkyFt7xIxeQmXhur2S3Xu0FrHa1vpYlfKwvp68boKIOvun4uUXcPhLdu/bvCWh49UD23BUjFy9ASlyMTe813AI6rdlgV2Ry3X/c69SEO35cyYzy9xx78prY0fb1QzZewbqTifEr@8H5kKKG1/cD/356i24ZVfLQDdSR29clHMrpctB14/O9R/KdP7Y3QWG7hqtvZwGoc/maVGBYY9TC57G1AS1/mxs7VyD9w3@DMdzdYgFymu/7w7w/kfhnx7fL7hLJ/nT6Jbm5OsqtvN398J06kqabYjg9g9jrx6O@fpn2DdnzPn5mkS39fSrpN/zcHyjG8PDfZnoOvN9Xhp/HqpoaEn7s4fx1yGU8rZa//Lw4nZFTsx@qUde55Ie@Lr/ncPHVz0kOhnIA9I9RD84@m/FUP7zEni02noT6xvAv3y8SZf87ey93MgIbQJAG8XWI3D4zfUFtsRhb2@jrfRC8x/768AC5ehqP@/F5udwleB/Wj3zs3CUJF@9kBYxa4ESNYm/8dBjFOx7PY4mCZH8opoc@IM92EikfS7MY7b8xQiuRsEhNCWaJJRfUDJmcN9/kuviOBnLK85s8/KG9l/E8QCSdkPuyeHMXO5ib1l0G09HzvD9nuczz9Qj5/ogNV/j86xttZKsjlSzfj/EpNB6RTG4SfhfpCNWOaY3kVALbPwX8/iOgZudfX@xytPSO2/HEkKV1e54TbyD6V9J7aLoyL7AWt5CXBabmjftPMczrcX@XKn8dC9tZMc1e53L0s0PkHqf5TKoDuO5@OKsk/8hgaVx1hJ3c3PQ42b7uB7GWPlJ5IseDOa1CVByPp7l8DQzU7bKoBsllN5SvTELrm8SHH9Y5Ey84Ddc/3XsjbXhhf@b6qBPlZ7i6uXmNs0RG77sUEpSuHFOgePGU23p9nK8vbxnfLLDUZ/UrVgMxF6A7txfKxfEMNNEX3Qm/t5v/kW3yi9@rYCKH3PZBKb@v4Rjr/LyPa3@H@HXN2WUbiD87riLx/Is41U/mb9Tgv8SLrqZ5lf1x8S3dMhPjsJSg6NuFD5LjAZSOJwlLmT@M6H4LFqdUdvbPrGYAl/1t7T1QBaA028UbwIZ8zeE3QF1RHrIVq7BHmbw34o8RepsLTGsDvaqTxLN@eV@PxX98BV4cH4YTPQA9@N1l@pqeQhk4K2v0vaKwHh8CJ7QnsRRnKTZTFOfPeC12XiTI0/3BNJ8jWb28TT7UgymywbM8jOR6l9O9QLYbTuW33mz2D122d/OUyS18Ihqfy7IQMPdXNBd74@yqa2wCPL7WJ3KwCl2ofs/T3z4Xr/wVm2B7LkX/7Y5TWS@n1hap6SPvkXU9XocHVMarT7CWYf8l7nSoT0ebiczH3rbKB5lsPXnqvqSXbW7JEElt8NHf5jKU9fzxRTnmyHGaAM/vCO5B/ybP/cUc9feA0nKGoju7H55lLp/5c2rD7R7T6cOauP5dbs4qmcnHXU29@1mu82G48paSTJLXOUNd/BPnu7wcvuZPxrvjJJHs/ju9nbHM8pm1tyIxz3PjO5zbMkqe7moRvGdHeQ4mo0KybCzuj3zpGj4vSLdPOduwpxjx/Y5is4jMwrzNdCzVOgyWJUpwidbbz/grybd0WNThC3249dnYOKe5OZfVbXVblhv7vEDptn@ORrs8QUmYx5JOZpPDfCq798XfbVAs/s7X@L72JNfTkb4Re2uYxg34VGBBZ/NTzOx4tRXnOSlRvT6@mVceUBmuNuCJo4GVHGQaPqaRHY3vwipMfoDlqy7eon@Q8QTpf5Z8P9Ys2@B3mTsxx7rppyDv22K5n4I7n5KRN@oXlRxAeX5J39FPoHORbq1Wvr@63cW5Gf3F@IuYTZzJAme6l03k7kFH3if/5JzlhEx@ieNh6vjLHPWSnayNb55ekg8Q6xx9QM3KyzUV@4bK73Ae3s/BvpTRLHcfct9Pyv4oxoEuNocQ336sAe5ymZlWFR0l/nija/bcooAZPLfm9yW78oBgRYFU7a8gKGOvisx@AZS9iete7SSDKx@q4@MicfQUDxXp@DXdmPm7YME3XiT7j3OUJcqLvX3fOpF8/JNvZScnRJobOrDI@muszLExlK2Lansiz21@nlr968@Wi34Vc71bTNe3dTqSSrar62lzu03fUizLMWLrJrob5futBUIhkR1K6j7GL0nAGavY/fyWoZ9PQS1OyeHyK9aBfO@L9Yca@Cq0zE86zSugVzW8ZfLIrdw6IJw@el5u7dvaku2vGryPH@SS2fEALpZY2b0fDMC8Rr8tsCOmvAu0XMZyWgI3ZP06fFEdGwf36i5RbtqT0PA2300u0@FoBOAOPoC31P8W5XEt93F/WE0OcSrwz70s49lBZtZx9hkbCM/9ozC/hSOAsJ3kfd993LegW8sY9bRsLilqCtQSrjV6@0kBzjtD2Xnde3J9nA@f00Le3ut4O3zfT5xQ8Bghfzx0e3xkGX1JliOZLIvrQorFM30dQI2teST5zesftyDM/tOB6f3ksPMmRxkv4JQOEG4E9PvEUi0fqC2cIi2A376Rvitxv/bt9MveOQq9c2brFaA/eATzr76UKsnLlZyTNL1e7vuNXKMNcsX2cL3rw3N4dSR31@aZtCi0ZOXEw9NrD649qLzdF8c0kr3xkDWqv9/zVpaW5I/r@fPzwVAPCycL2aI9unEIwmMCII1074OQXMzwtCtDBGa/zOaSb@bOEAQ0Ds0pQhNs1H2ty0im19Q86xvblWAfl3rwTOZ9vPNp/syNjI@ZHwBPY8ub3csBKPVjai6tUX/M3uztXKJG0Pu@fC/6eDJFGCFpXifZxAWByB6XiXwOBaDqkfiXg5jpCYe8GS9XN3k95kianzBKPLlNjVzei@XP2l5GC1mgfP9dN@vLPLSmkrgR2MAw2Q@X2e6xBb0QY7B2U@mf7cBChnXO48G82KEGW5l3E1Y/Pq9D63soYzFOeOPb3z3O/e8PmFHcq@UhHIezLeX222eIbC9LlJzf1f0dB/LaVLZ/Gcj1N7AOo/vUm8Lk7myzPh2l/9xv@geHTR2pLo68qqfv@bf7Qmav/fW@GqbzEkX5JpjF1m6bCTw3XjqfcyW/bTjc9E9DeVebrzzP51Hxnh4kGZSTbZlsBUXtdVYOkeCz5@x5e5w3kkvmy8KvwsHdekj1dg5TyUp96OjPQPTHUvQiHYQfieS8GmcFaNgifrv7IPEsqXwwTcsxxmLcdX88Fn3syv0@WYV9U6qtbZzffoGCzE796S4fSHA47eIJStDHJQXeV@/1LzokgxNSIWA5i97VoBxJf4uUcIrC8f6gg2IMRuHzNl/72PNELu7i/jQmWwTpdLROy7VlL@Sr@j038e2sGpf5rZAFCH0uafWNSxmclnSI13FRZNcfivjFYg7ad5GBMZqsTtc@QnSjPybb4VM@q0G68J0gk2CKGlfXJ/f1Ti7Px957LcRKgsdlCXNv37sxkDx8fe@Zv5ELq4jfMuiDPQSvWyJp4SL97g/H@WCwm8joe3Alui7e0q/iRT62PZnhZH9f5J8o@mxCsDRESQg0QsJ@XFYnr3SOoHT30zTGin/74nFbHmW@mucoYdKtV87ZXj@dJjc/lGLnji82qPb1MfjK6bioNuVMHuIvvK8TlsMolnhpLQEw78A@H6NbKD9v/ZYycw37G8l7MnwMsBsXnAmFz8O55QNPRtvBRuKvucP5vT3Z/ybj6nYr31OZ7gbGdD5ZyTzwvFOVB@VNkhfKP7Pv/Z5Pmbzv5sGUgzF6nE8zS@LkNAbVkYm3sh0ZermeOZ8XOMh3pn9MPS5ymVzS5ZuzGW7fsYrbGQX4ewSnyq1VnvxQHwn5zGmlP8PCiOVhzcRaveQtv/tXNvvhC5nt1Nejwqhkcxs6pyew7D3xjfXwdfEkzRAZmT0x7VRe8505MVyU2fPD1QqjfSUgDW9raqFg8eS8jfHm9Ie42ET7y@YXVgeE8AM/Wfb3sfEDRThu8rUMUDfJM9mNZrHsgN7p67f4PKIroGZ@3r7EDCaT01yMz3K5y87Gmtr@5fMW24n67lWsUzhbubdbHklwlepbzcXNq@N@Ug3xo2q7HS5QvM9@ycRAGR77@bzsH4@VvFbgcn5shSNU7Kkc0uiWinnw0svRfTg7NjEvQ8f49AEoI6D2DTxEB225CIIgqvyBKdt@gDxfSmJePmkWnASWPA1joMBtKpX7s0ZeHMxM6S/Cy3dr5@ZChvpZ/L37NuSzPyc7OaWL68GtAFXz1CnKFInA3sG/TTIx8K1p8Dv@Rg@Z38QKwKo2C@TtQyjDoNzL451Ut@0rvci6vEyHZ0DZB5WEXbxNZN/F7ClXxFF196JcRtlHgujh6nlwdMAZp5clgAgxUvj@@JovZfmxDpfzyoKHnqW8/cb3zx2AKddRdZnsZGzejcXAf4LwvPfnE4BBzp/PMDfkPT4s0@yySiWbL10rLSxXskIc1AqnX35dreU7f54X78vFF@@e6uFGzpfHJ6emfvO3oyD3ZBvJrQ9qHK11R74jY4Ec8TS2Pt4ThMfDttJRTCX9z848SLVxZJlk7xHqfvNrXXfpIx6KNz2dn1HmnfayX3r2@JxMLaQblJnT2R1pePjSt8YbWHXDCc6q6yov5H2bjIGL8wQJYlo9R1Mrhl@tnTBMv8V3BnOK5410ONX1/JbwNllsw/NWZpe@F6DMDsEiQHcGCNj35pCbo@f0nSITHuUMIO0HfrA7yGSCoHfcb2pP5bKuZqhXgcTJ9JnEx6V8xxKl69Py5UeGhJ4ztrOfXILjQJJF9auQSHNTl9i6g86YTjWfh8gpHF6YHgNjK89s9Aywj0VR7MOJnOL5XDbfebQ1TrYlt8/t/bHPN5neX/Kb5OEmseZi5WvvLrvfc7gxnP7SlNFt9XZkd7pvZIZi1DF0VLtwra8cloMzdri6Rt9hBW4yLu1ktx1I@fj0T8hFxVnP3khZkzQeh@IWv8/944Dk2mC8k@1h9hXT27prfZLZMtzm2Tldfwxs73OP5Pn@XuyxPENUHpvx2pSpMR8Es2ECQE@KxRqIHBtyhSF@A9/9TfB4wU7eL9vV9ccIxXMZLNPiiJx1/LqrcT4U/zt@zQdkGwkSw/j9A6z6xTBEKnmUe1dPjrJCybP9Opfc1a/5TuYfWYSzb5FMbrqkN@NQiLn5BHsZ/EAXKYcZsh2O9eqGPZPk26Dz0/FkL@4RVNeOd8HCrnYLHLhVbq4oSu6XZRmjaF30JS@m6@XovdYTQf0w2qVH/QTYiRZAiW08P4I@Jcv8/Gb5vXX8@wD0aLTfX7PlGgR5PBQzR0Y8zgbjpZAuiTO7X6oxlanYWU3no2hvSPKZ7q1cyr1VTBHWl@8RDBRkX4z0hRrzPU1kGhXbS@mPTKDcTa7Zrgjzg4@fv/aTcIAiaYmfxRuE01LG38F@bKRDudsjybzpUH7Vz5g9j/jBc71br/yvjJ7lKVrMUaxMM8OyEG79QShb@OHCXYwuUlmHmTeR42F6HuzkN52I@Tsvvhny2Opg/HLQ8Y0@cvbz9UDuJULVC@b6Gx5z/f12Ixn6SNjXuUTP/j36SPnJQF4uxm0g1lfy6QR@4A4km@lf5xtLeFzdX79tKc70fF6iGAtlPI4HuVym9vInupjP9bTYnvrY/PB6G1ZVAfjpb6gE@CsEwMaU72F5esrcnF5uYYBC7xGCHX3ntoG6NF47S/CVq2z9@cg/xK6cr/n6e/befXEzo1q@76c9yrdt/zpbmtYKOd0fbxxDytNtuToC0l6D/nmYSm73R6/hVx6ZfLI4XawdkENzfNuOQkeKw152yWg63R9ieT/fxvoxeAIEvfL7Xhi7YH2X7eB6veimPZuJfjcNPYGPoA72LW/oyddErPib6ynZW2LerQ@Iy33lIqai0SOVKhiETrEY38Gu/WJtWrsXyO5R7HN8Qknzk9h7OuI97PlXJjnqArb1su/5U6ZAjq0cvfJq3Y10LfOxvJB474OxaUswfoLosG09jw5WlcolFuwlXcfyGa3WVjCT8HN7@ADETySv6RKItHxaSA57O0feAYnPZV8VNgpMO1r4klrFEKnpcNoMl@G3PEgZXMPdDWXs1ZXieD2v5fiwTBDBbz4Jlpc8k8EQORBBdVnJ8G3MnKH5kxkwcJgjThwpExvVfDR3ZqgjfXFXm9dK3MsufqFmuaDAem0Wk4XcrqI7n89LBivjDCyMxERyuMoeaXdmbl5S3ocu0F38w93aixVZ5f01kN3Dv6LYuJ6eF3@zycRdn@4yOcaP/Wg4G4l9L9le2B5A7i1/bvjHjS39oX6TI3bieK8ruFIm6SJzHHFGss1MsXRXNndZrU9yOfufoFzpH8kr@@4vf8OpKbfj0R0897Ke3iQwq08w@Jwu8ghn7Nz8Vp@j@A8LheVU3vpGdoM3CPUpQ13xdDMgynU7@RyfUlpzp/9yRR@Np3omoLDWbwgyIou49PJY7r/dOXsuPJB3pJCPrDLZHBb8hQQ7a7o@R0jqRyf5eYm1lYP36J8nyMyH@Ro@8Lu8JJu@r7e53Lelt77Eu0pOPgqegWmv9OCSSrTug5Wl9v04lNOh@sVgs@BFbnqo3rGJHS@y23A1rr5HKfXvqJhlWS7LLcI5GDj2774bDBE9MvcEh1/AxlnhRAss/4SEOnFlHfhWuP4KUXy//7oyXGxuF4l1T588V@ctaHEoU78/n8rjfN/KADntnqUveYA/40xXYzcc6y7y16bY/NaLUM753d/@fvCXeeQNJY4r/7UCk0ZEPKyfhZTuh5tqc9c5VZc9snyYVjspivAq3ieaP6yXcxZOZknioTBC7gg3wX4yPYE174F9R@@Cgu@y2KzkDoQ62MVBtkc/3dnijJ13WsphHzh7F0XtZxlWu935DhI2d/RUvqExfD5zZyGH4XacGK8fWwhzpywQan33XYyF6TN7vl9sUUSyeeWyXspoZM2DbCLj/fx72N3LABTLRy3sfRyZD@LdORn/5BtV400l61Xkm/F2NTmJNb09XjfLFDMrT/DbeO3@UKl97fPQ/s08MV5uIhOnlN149v6/mTuPbMdtIIpupbbCTDAnMM0I5pzj6l2yRx7YnvqcHvzu/pIooOq9d0UAUlmLTYU9t@QP6bp5RhCG93TPL0eGM9Mt0Hxrg2@f5UICYyaL7LegbV8Y@xMnQ8NuK7QDSKvL4TWId8@gBab0ys4xq2A58gMG1vKqGhWq3HEx0c5q6PScaOLwj2@omVo3YlRnp0nfutNnSIIMmSr9FhDdh@9HTPOtWrNaFFXYPryIiaZe7UG@ZYKmYfHfetTnL7y9A0GlLfjgTnOWcUzPooHcckaVFzFMDkIwoUf5jhc0coWpw5rPXkYRMpKFxvkOsnAmEWt0JsHg/O5ginqALSpdbWjA9eLYzCMYGMSP8M87DMsK@mYsMqz44tm9bBvhBPO3Pv3vGyL2I5uKbCv@YU@EjxGOYMqcali2Gd/VfrRTdrTz9A9L3Yt2RBTdj/kdlmbelwZ/uXgHjO5DO/3rBov/8/4Jfx7L3yDc84ayejTHjZf47uWFj/@vDRUmKsEKV3Eo2KuPEPo2yBrDScY4s59mONdRFZF7@EiZhp37PcGzL64eN4xElYzMUp212CayUm5u3PJHQN2gGPnwNSd2xlQePbOxlfVtqilvxwn4uSwf6evCS9Wsd0tspqtF6/DRu8uqpXRzWDTOUHKTN78ub44SVw9PLGD2lR0t6B4sS5935ThQ6kxAQ1unaY6mSiX5qI0Zb0px4lqQbmStEkdBRTqG/FvkB4zeztrpBj6ZN@7KVg/6koxNLXZLcbN3O0dWGqVV8mYUiGsyygocaO1L04jtcmH6tQIJ1nvqKlQZRHm2jsj8TSVJsFWKv6/nudmUTc@pvdexVNVq@YZ3c96VIWEKfn1yAQUtuCEqoFHczC7M8fiI0IafcBfWFvRqlIS9EauqJyk1Lw@CXJunrBeZHFvHxo1NR8dEfETNGRlNprZX@Hqml9fCvlbGDDs2rO3nLVqDe8OaM@nSMGAfg@yVk3zC3bEYY0l@U10rxQCZ3v@8sh6AB@LReF9h3zxlK53PAVPc4WnjvrrjHvs7Ebxu56Jwqwt/0yWhbayq8XZd/hIdQWQQ3KWfr7X3YtvijfCl6Nq8SK9srxxf3vwg/oxiN7IZq@TSJfHK0m1LnmK2GIEqMkwdgTSWUuTlDiTbGfpAKlBHY247kWVsz31svwIUksKWtUnfmHTDYSdTrGpCCmOaah6y/T6cNbgnp7DVIi1IuUO19loSX63eWHDPK2dqoynCaOV2yq9Zr11GalbvdE1QlL9ldFKrt917160X87RKHZM3uOl@EtqPjWVnr6E@F9p0mtVRQXyf3tRQWZfMw0vV6LtKk@1ItHscsemU1cF@3APdhpnbcaWw8yJkS2QdjuxzD/jYfMYjwVO9eSvOCJegbnLuZtWiqic79ifZ5tvAoBJ20hNXaPDmJ/FvFqRlV3xuJKj8/umed@TFKL2WayK8adxrtJ9WbKCYi7Ng3KOgVtOecIsODtKt3iF3gpiQZpcKGjNI@F4PWYv2NtCtFzhxgmYRS/549AkL6TLtzcSMO5cDN4ARwPs6/Mt1aHbRZxPNaxHj1f2A53ZniDc/OiX0SoeHM8YJhrpMIcXUAhtiO/qwdmC/LBoahSBHnlM5CEK542cYut3A7kQHcpvwKJ5IrM11rLNRYMd5EEIb2Bia4td8@GeHAic5mpLswHBo8JUi0gpl9J1jDGptcHIYnt5Ogp5xy0IE@rWWo7ZKzWV86FkhEfTfpyQaGlMGgb2mXV1EowjCwNVIzywT42SA5j0ZLGER@QibCOWpzdik4JjmeXQGmsaDQRlQrvD0hdiwJ64LbSf@IlA9axyK@BK74aHH@OaCY9Li8B3g2ovNQ4qmPtri9wzyrSQWBrqG72UgVqG9v5Up6APTD9l/C7JPo@G4rwJ03q@1caQOnqFvu3q/3s4U1MNlPnkcRHe8tFYba@LjYPojXFW3j1yiGmYPqnrwJVsaHD7wK3d9To6XCkoErjLe87mPmFQ4Coczdc2IGZhHW3AgrauofND@RivDWPp4CDGLbjeR1j4fXAdOM8@6B98xe@X32d5ZS@yOhBszPMZFtRb5fRMWx7S9lfVymYBKKirKPq5otwoI17uc4060LZ6NN6u3T/OPQyhkc4c6G6NrNV@rggC58jpY4PUERNUYVCPlXMMauvcil5SE5juEYrGNr@9PPVGxaeC@tCoDtUemW6BssrOciHFhfGaOgQCUbAriuP14JTGpKG5@QmtVDc3uMfuXS5/UxXz3jJxqCJOdMj38tEbnTb3J5GtozBZER0lzA3wZ22nlfIxEbqgxMSnrNXOo@I4tp3PzV/hts8X6vibBPmZ2Nedzeq1sT4X5imtj1xk3iJEX/q60vNws9dftt27m@90i@ZqWDQv0L/GSUx8OUHPC@dCuoQiqVLmrIhQnNFEMu@yO2jm34w6rs0GQPwuL3Daez/UgZabN5HZ9bSydxFvKbyRK23/rncpMfexrrq4zlacFPXDNfYR7EinD7A57aPiOfeW3GkO/@Rx/ca8K8u0yekFSfwlEFiZ7joPytb@mxLTJLdxbiEUR1AqREHdGuTJUIpVFL0@RiT5w2ZjGl6XT7cvwdFN5aGLlhshy6yGBozqp/z0ie5W5uEPKeRjv93TjPnH6rbFxLiedmp85TUGihxFyQ8/70ClFxmfQ5TXf6EAips2w0mLOi4mVmGIb0NYL1jT3Z70QGv/Ru@Pl5Hy11P2OKn611jcJ1NrIafxMhTEgPjdrFWGABbT4RBbTeeFySI0XKTHrsvCkQIMQ@5B7t@dK4F1jC748kT73ewXBnOeH9GMrf/nBKyfnsrs0Tb@Sh8qcw3R6tEutC97vP52zBXu8FzUvBlVWbi4wWM1LpvQ2ufNbL5f6@x5tKr9oHZGipJE1rhV2766si2tQsq@xtUeRguVkUusjh2b1nqoj9HHcT3wOrOmlg8orzHpr71viZIw5gi4mUao2YrddmtSNZ6zCtdyiipwa2OJ0j7fK5XsUN80d5tYW2Ud7RC9FIVNEtns0KQMvV8M7tyUmNdBXjRamGcoF/aCip91avB2hVGO6tfy9yYUGg6uluON0GAWge5NSt@IYNSYaRBH/pLNvKPGlLvqtUVl/2PbNuVq20T5v2tzGSpaSnUK7N1GNo976Eujvwld7YkPf7GSRAurI5D7yialC1Ev@RDd9XKKmDFtOIWnaiszaM6UQ5pVfERcPHe628vMNIv0QXnXlXrhTaFId9ufTwPKpjiJK9vZQ7e6l6J0vgdqLeihOd5XfJYFRkNWaAzTFpODV9T0CBWNmQvFX6aZCfHMElD4GxYA5SobHhi3f6/SA3kgikG4r59zaHDrXZ/pQ2inxrSxrtE7L1a0PxaMqj6s37EriqnsoqfNbGP35OhZo4x27Hp78Z8wON2IVetUwSOBDqZu9GIl8WBX2xcde3PjJI/RX9NaPYgVbhZI7OGk59y10Dzqf6@yJD3cR3q3cTa8PF8ModpKyK5dtP56Zqm7g6Wc9YW0vplzUSsB5eScbSb6xPbyq9rEzbjUjvZfpJ9RH@xbTlzCQLC9CoVgUOqR7Kgc@1DEsDjmhNdZFroPm97HVIZQDVJBj4ZCP78oPXDT5LcR4Vf92YsC2aAyCQL5D4EvHdyZ@n0xdLLdp9mv2ShaXVvf4Or5Gtq4@tCUM@md7uGLiAqfR7Do@uiT@dC0K@mvPxt2fyq4ezzqZv9HZURGgoxvpl9UXSuTmWOJ0KyAfpFzHodDrhZF0CyRD3bljIRU6DF/xUgFKyYAUhiw8Epj8rbtAZU58rMaJ4mwEVUB/H3/wrejyQw302CwQG1f@vuKC9zbEzzpGqCUpeDh7mjZEvGoBTQLLDoJejBe1hFjN00rDGoQMn4n3iVdvVFih/Z4ZvcP7wHP5JNKQQCENL7J5AvYcipMZjMFY7MlvFV@12F4GEyoJJrd69arbaDTgKu6u@o/LDKSOjePHwxT2x1Lm0GzifOVnmWtW1TEIdfSvuzg7jFZFvGrFCYs2OfZj/yY/KZOlN0Oh6@z8NTEs23ytP3BcbaB7v/15vtdjcLLWHARjzQQX@EnEAcSxqrXG3xXBGhrjCTK9p1r@kbsf1lYq63ePtY4PYj1tU@aUHGYLN5hU7pzy6bWMriFsZAa419Glz/b7uCdvxvtWCBwLiLn@oZlqp9Rum2XCnPFDtJKFM6C4WlDfrdMqfIgctNWRy5iT61Zw1n4KPshBg37lgaslcIXM7obouCl0tYtvy45ddJLGD03OMmXIwtbAkW8LCml3RLTF7BddZh8dxwdY/@22L6Sw5t4D3Z9kkKZze19XSYNhWHjNXxh5/IZnX3ZRdVYrL@W2@rDtQ/mGoWi4WFejadyLYqtyuuydU4H1nViKMgEZokiA85nW5MEU2bUJMmDemZz59MXO9M@HZBHdyAVGi1wlbZ3AfCTF@tsv9SoafzqiAQEnc5iOer7DICdArcjymE3U6C4BxVSESDlD8XkD6sOmc2zqv@499Hc/SSXup9vf52cos@nNSWzXzdB1ueVaXWxy4SOoiq2uk2Y7nH/5j9O/yn0ZW9qS8w22w1a80zqLtHR77EUUdi0Bl7pgntx8bCg9yOviewjQxJjAvQIYpmzDL1xXAWke07WusJEhchr4SjfC8p9D70akZ7JQR9ViOPRjUjX3a7rRoJ@furzm2hOCu1ekbczMRU@Utbhut2f8tFDFXqaQfSSXOb26eVXgbBiCrKDvZ1iwWlbhwSd76qM0koaq9VX9XBy/T8@XLS5ElDUJaEcPnl8k0YNjrqKsWucBnN9iPGU4k9Vnv7uMuoz1P@KgVxtRE12Gl8OfB5uFQqohHhV5zkYjkw5IJozwNuiBwT17uW6CeqdZ/lz9Jua1U6hbrpxHuAubI0vffERcry0cnZsrEWexiFmG0ft3D8Kdr1S5fhiUmN53DyAVCnDw1MM8SkLPdnAdeUTZRc5oRip9T2riC6dY4YrYMyizOBdXtoEx07LyP1vnwVVrKUsj2MMsh1UvD/C8l5wDm@Jic4SKt4m6tl2HKtwsm8dVuZrNVaAP1jPa722dWdZNM8uGc3y3ROTAjiig0jwYLeCoz97gneCGwlCy7XCNCERZN5GvSAqdEUr3bIDkXJcj3NHbu99MlWZMlPqma0uHD19E2Mk9sW2WZ9sMl8X9rVAfsuZ7wdU@s/6grJqtT0TElwabXW0H6OAigmgiG6Zu4mAPpPVzPaMUGszTU6PPdbGJEqt5h@15ej5b1bLfG4u9Ik179YsRF608MQ3OV6JA2g7HVcSI5fU7gSjk2wJZWjnS6IPZ2XEKqwvHaNDiJuAfd6mM3Cxwja7oR2wJO2sUlCsx9bS3SjDif5ffdu6OSgcoWJsEh5@@hhxiDBU5I3X4CqM3WoSTcW7rmvBC4k72NvnIt4UEeycerK3MzgT3k215iodwE6HKMk3QWRGB4CzZb7X0MEylj8EGbunNqa490uOdUxCvsZ2dtqiPVi4jRLG7763Yd6BG@G6OG47GSQYBNhyTN7OA1iHIun6aWfmpVlRGOqlYaXzUr1IBVbMvwhQ7wUGthuQSwuZoN6sXs2uKApM7du3UYieomjP0mqIdksmexksKdyjlIXySrBsXSK/nwFxb@pLVwxSuS/aCJ08f98Hn/TbTzxGagKyWucI7JWTLd47SdsKSK5kbg0RT2w7bAZVmwlwX7rtixkNQGTYqtfjaiTKh0Uo6uwAVy0km7rf7yY4MlKT8mCJ0ZBbyXfXxwy0mbd1p2WzFzjtXylOElrQXkXiGQQNdv/sVDCsQ1LSNnyC/Upa2Ncy2Ac79XGTtQERzcbTdXAsN9KGYezk6FuS9WiCDN8KkvfeQpZzPANVlBi7JrFjboMEgRLXi3aD@vnF8LT5HNq6lAdl/7Elsv5UUzESMHcF4VpwhQqdy1rI1k2xFOI/q4bSkNGbNOO5A@6Jzmr3HOeotHddxxkT8LEbDq69sMVCftnnHXT9g/QzEXTNGX6@zaGzR/iaihJ3AEqD4r37JkPMP@XNlQW40M6Lloi@x1XiyirW0n1zAis6MhX3gyeAUk5V3PS9ZQ6D0tHgX4hl@N35hzB08vFYr775d1Tks9SwkYG0BDpadHnVy@L99eDhtK9klS7ykIZVOXYfiqGhdPpHtpvcbCw4mEuNbdBVWHHFdvq2FzTdY6KMqlGZwkZaHHi1YK@H41HPIAmjd6PDAr4Gb0f7ngP98dHUiLgqUwSAZCaxrwth4AS/wMqeSqbiUfvyW9vGpX98YuVoxn1dXPJVuEfVNb7XXtxxH/u3su46PW2gFK4ks0KzbRdw3We3xiwFmjxy0YsFoN3ZUuTloSzL93YD9ndNC64g7d@7Dqt3jd8dO3ZX0d@JKevbvvPqquoPPdd5e@IKjgp8Uj8JR63cSgReVBRjZ5mK/RMGnZd@BD/ssv5KUrTnOCqpX7Amnwe9WutxBwCa5QbYF7LnpLWBE5BHY75wB@7ad4YLurcXIUnECoTmTcbtVGVYHlIZKzbfA0kdGgLiGhiQoTEEiKOIeMxYmX@pHsCzWrCAwFqDyBhIILaE7wRsSQ1cK9@SPYl1x1IUwaZJJTclWOX5RGe2UFvm@SyJbuek7yJMdoh5tHnO/LGZToNLyRq@U9R0Mhdyajxmd9lgeEiy0TBvL8yB9Rsf0N/GENbqsdIFg8P0u3TEmgL2GxDuj4sb4SvOi5Q1szvznjZwX8X01ipkYZJfJWu8shJQGaq7mv8U9aVR66bozItRDvKWhn3W3XvmtuYVai9EmTcrdzDAO9M2sm2oDou5MefeNoPXEsFAyPwrsWgsnCNpQS8vugS43B6yxYr7KxLNdeA8VCU5yZjj0SfB9GnkBGltWlLZJUU45OT8TMizzb9cNg3kDvvFsKFDPrJBfCWRiI5lQuz3sdz0A9x6gzU9fNp@GbliBi08Aj9svzIFevEwfZhZloGVPr/d9/0LIvdkAN0s/J/8tckGr6iDh0L713lr5HUyU1oN8hOzhijh9ZEi9Q5KLrTf5KNSqeFhPC6div9nF5KZMuVTQNfLk3lh1TUAFcV2nZv2dg5N02DzKMG@Fw9W7rH9e4I5c1p82v4Y@KQraF4YzSbubMjlrzpt/1acqoTBZ9opvouzXgpz87nmUDyc1Sz@Hpi@KXhOfCXTaKZjd6ZP0vepzPPOUbVodDObJlhP/MUuDRqG5pqeVfJEQ7aI7dH0yREbl1rZl9TJeV3zvri71q5uxdTRyZBX5dQuzkt4bHgLNXa0JsHl/Mg4Hb61prvYlYkOOjavdUHtJ2EOS7yy/wjCbGdvtO1eLB2FLmJq6HLfksqPIyg7CkvvE2chPWutJnUJlETE9ZdUQx0VU2yRFd7hIsR@ycf1O73BypLzta14UN4NhcKclpy6gbBpey/SG/SjL9aon@o5cfhWQrY14m0lOQV@NZOcLqcFUIf9ObnL9h918mcIT39qlQRsmcltaIdJlaQ2TxZXIOPtCXRluETWa/55V4TbyO8miCc00qznDaHl6f/RNyFl5@ewEenKLMvm5tF5aSNLpoNKzmULMOMwmpIRFC/ZZEJ2bu/N6yx65@KbZYvbG5GnTm0mN3e7eV73XBp1xS3Opkf/oXKZsKa3zl6aDj0oZT7stbLam5oqPBvTumr3x4uf28dHACoGXQzoZ5eiAOYLVL7OZDqYI0tD0818njEUhzuFi7iEUyny79AGSx59PVLzSp@FANRr5JkVpcSAOT2pvn1Fh5PLJQhoTLcUzslqBL9F1eeHqVAcxi8yMWw5fXyf2fE57tuZ0DTc3mJ8ivfHOLeokGtmi73vUFp1iIObMnarX6AP0eVwX43j8SF/NAl6icNHPtU8PvBeukOn2zPhHE@EpP8yHagqmEt1O8oo1aEIpzzt/phBZV12my8zw17JlHDovA35BGVjJ7YMUDeHbzQcmAFZWS7F48I4HnD1JglyAsYNVYhYXYYyH4NKvKljB01yd1HoLd2B/t1sjm6JXdjo4/hgcx1HLkHfb613sYFA1t@ej9L@ut3XTyj4cp5XqNw6mUXTDPKkI6tgcTQZrHmN18HUglCP2dn39dlJvx36pD4@hFUZCE0R3vkl6AxVWGiHJeHNJKM5n6wx915xTaiZzZsrnMpraFNS9u79q1jW3VXenJGajZBSZHSdT9AmmVhFV6GWJDw10QoPqzxnmCmxGUqlgkIDY5EJ3K7co3sALj2YgR8xrQJqV9L5x4LCFNJJyIZT9YYsFjNkhXl5SVDNoKWvPS/fMXNsPpAS9GM1FknPDkkiptGSVqpPsbTIle5YpXFptjs1vbHeyZ30vIZXPVnbMbq21Ia9kaj@Eyme8mFIQ3gr62sXEBpB45QcJ50W1EDeYeD@5YyADH5UvPhgaJ6bcZb6bAkrlu2w4LWxbTJPpNPp3SDjMvZhNRPXidJCUSYHoRsxB2QzmUCqvJL@GM7z2wBVB7uFCf6koIOWRyjJ16QaqdrNOLKzGCCrXrxAiFQeDSgaDmAewpTLSmHWRGMOwSQNWOjV6dTc2UF5qNSuqm3eQFzi612KYgAaWnqHxeMSmwfQpKCbxeYdc0BR096Vg4mr@9idtEijz/bmqCtnNataVRoxY/aX4yqiGk2/2QmJGZYCuez9GQu5aoa6/TnPUdlMT7DY2X/YuEbHTwSuZkcdWJFMjK0mU7QhcBg3JsPu5zCXcmdVoAnEtzWh4K7zenqWMDRBTje/7345mpP5n/31sFEFKWRuZnBsTuFBpdUK6lBgPBHpHeH/XnQYqdA9u2aa6BSH1QbsXTYjriaddrYO1k@Hubsji8hydDvNAgA2xTrLdxiOcGEdFvYHFoosGQgGyv@inrXxgnp1waPsFNR9zGCN6bWQtNIv5cUe8gxxtk3l5cB65f4Uzp/fESedR8c0w6hN3YIdpLvcxcxPH5Yo03qa5Nhfn/4bkQStY1sDt2/W7jPyKhbvc2actT7u4oWUHM8htsk5SWH83kKXLMMqNQMIbVm11bn/8HaVWS3kBiYVJE4FdnLUZoVgdyV79PiLJ5neyOvChTUPv42OoepmrrARqGx1HgOLug9ZCvlJFIT1FEQfaytcRAn5x3EwBsgswa694CQpv2rCiuCgzt2nQKNIercOGgXR5tnoiqvdISV6VeousdOaxH5qd50aXyt6lPgM@mU@CUTPTdTu0DaVZetsNx5RVl1N@mZ3Uj71ZG59ORwvu6hcCJAZejNsF8FVSffNFJgLjpk6PirrAxP@1DHA@Gj/d22A2x9zUGy/fv@0Kj0FQymUq7XFoPymtOvmRWhe5KGJm9igO59WjyWx1ro/h1Z2WfXZ1p2FccIc4i7onttjq9jZS6O3nacAMeh6CQCoFHTDjHLTUBajrY95aB97wd9jVAG@dNDKUdU7swy5vmKspkn43pNeI/@0BzZutLtiOrpjs6hxAamxgL0NmPkGLaatuYtF8IEZAzvHFjmtocFZtUKdoes8MM5e2BppSwteOra0nZfHe3JRXImcatloYNx9sV@eG6cG4KiDUXIbuDLHMjCKOzmGprOCrO2yiXcyER79aPr3APZ1yuNJBA4@NIDKpmwbtmb42DOM@iIXn6B21yNf2XV5uK0uzIE4tl0xMQz2MCM1mOXBUM9ymVpYRpvd0eLQ25Bn8zl5UJfcLEgHS6u0MmAUzZFMLu7oIMr7TLzL50qhV0KBshntItRr2ac/3ypPeq1wEPXdER/1If4k4ll6i2PuQR1LIf5fGtmuvrF4J7yThLO63lW3rGhe5OhlPZiUPVAUn0bnfVBG7PHYIHGiBWEIKGHnIIj5AbuVXsPA3/SZ4dujiKs66aIMBn5y3WmmPQXq48ftgcT8a/xY6/86dJbaVC1wz7iM0pFXuyZB6@7eDcMWfy8toASEilAa3JCacWZsF9@CI8VN4/cMX0@TOw2VZWD3V3vSi4G2x0Ytnqa@8GNGYmFRwG9Ufu9lkOV5Pp63nxg@hnnl0Kavq8t/yBe0slcIDeQqc30Ic26J7YnCSp3bphdGO66bXqdXY4vAXy2J7S1/uqMWXTjYt1y5zWJMhVu0I2OxLJPX@CJUxvglY1b4Pj76ccKaefMm6yBQQiY8z7Rsc/NbegOvPn5rAfo0TtBuaZCV9rLorzFPwVl9Y5x0ifrFQ/uv0A26rSWnoYsj7bemxnHaRSIShMTtrv1DeJoUy5Ds/3MwEMsd@FSgNEGncPlD3WajrA/QXYOldU9cbm/s7hKTi7q4yzIVAZ8uFiP9mnMIJ9z7oUA2vLLb4N23k2CN4uX1V0dLGocg55KHcdvMTR7RUK4ZyE@i@5GbZOpNHj7qS1uWINhWo24y8ChZvwnHBzcXSoDV2nQq9Esnz6q10IqIjXNshVPF3tonkHn0erXmTMLcLL9tZ5ul3T4AY8miZr3ZGGY2q0XcvC6TMGY5djoBVar5FoCOdYaLgMm7Xic3DEZnwjKLWeFijzi6lMoitD@RK4ZB8NdM20fQP7jkebR2s1UoiJ4usuw4MzPjXojKd@ySt9fKQf8t2YY3ZrjToqjlYOf7su7IkqVSG@KZVHbzS9DrTQ8AK4f4k/vN/JG@fQxMuv7OS6iw34JGiyJDVDLMOKJoDuaDRMXIEb4SsGWAI3njeSbXOsAFi4HCPlzuDLtf@DToD4zZn67zncIGb58BU1TSFURJh4bhJRtpKHGyg6931u9V/y3LdcADXgie9b0aFfgI3MzRvBaosyvgWDCyv7Nan1l0gm5Bw9oT4FYlRYULTvHkg4WNL/VCL/veZFDT2ZQaG7JFqL90TeSFvx@Uy9lWoO5skm9y8r96o2ZTErckOxYo/G@O63er8kQrQXqC3E99Bf6vqYNB1gE0fJU26EdmZqVOs@3TOIYovfTSaHXYzsMNWp7Ub@/SohHPXKqflXGaHUvu5aXnxUt8th2A1aD0og5GSens0m@WAVkvcfCgT1xnHUWkqfTfqRDAdUcmzAQcv2sHV0BmDrEtn/XICmK1U/qIPaSkJy0bZ1hMnrRGryNVCDmjvySaOQ2o9aZrOvHB4V84StfqwJQLei6Y6fbvqnaZ4SsXdk7RQTmh7F2Me9KuV5sRMTSEVlaZMzEQV1gEJz51242SRmzYaV5lLSc3X3LmG5rSD315is/jt/5oWTSOe7jyt97Ttg8IwdZJH1s7JSVrtl8saPg2/SQxiJVDixdst3bYWLZmGrFG/6@y0OXU0n58RPDZAjhIfiScTm95mfPVVH3PPCaxi7XO3ZMMN8Xx2I4SwSI3BAznt1IKp9IMsNqFTRhVx/y0v2fdhkZ@XQ7HScm0QgLPxLWUB3xUSPaVr3c20cvk5n4NRWYO4upNenmRyYxXxJSbC2AF7uPQKsqH6nS4i2sJIQF6IcO@JFXRgu82Mr11OajeYm@uAyp3XAUG@2I2gvDFomWaoyM3NVMZ5kuCDj0l7@9@xt@hXrqLbxj4twJoTS7zwS5jXEqtMhcnZBwz127PttHJE2KPrTPbf@vcxaA55e/O4TBYOofUB5VuGeeZB6G8@UyMBRD@8S9hEmxOl4mX1x8pB5IR@1D1lF/w8pBotRF5rJ47WvYO@fS9f9dru14y2Hedg1OSM@wTNfTK4U19HC2l9MmdvnLEAPc8YZn8AdvLZA5o8Oto8ZuoARb6EDUt@Nxw0hUyxt0Gw4bVf4hDWcwkSWHos87tMHW3VnfxUriIeBXIp3HNnSh8s2rK6oiT2Rh7481NUl7rGUnk3l21JLZtV0maR5ym2Fc2o/9SCT4rN39pHd4P5ukZeJlBHdweiOy@dD8Pe7ThtKWp9lk7QT1fgZc6YjHUu@F15I5VHdlYwpmn9SHOj4elpvnDuHAYIhXEfrwS2UrYsv5w2zR0ntQ6eqzf9maLsFNbSr8/jVfOJUTqGxDbNsLL2EekCCerxOCFEppY@r3HOI1D4Qq2sqxiki8AUYtgA6eytFh5ZLWOdYiIAJlfFnYL3WOY1buorgEcKZAEnF9P1mpElfPmdI1WfvA8wrNdLWEsUCgqqbBPpFMA3M5JOBGZlak3ykOp3q9SaLpveYLxcSuQSkjqLKkyJ@llDLOfwsOjKa9lD4JA4OS2dp86h7SUpbHxlEeFjV@46ZdiCQ4q72jEkKQvRBFIbwlPp9VF2bZAc197oJJuqHSvtiVSj1ZSsvu9GueMUDXwKH9c8nldVOD25ebPJJT0MK4Hnm/08rpIp9WoEn@7NXdbw9qx8glcfR4@kqXDNHtCr91gdSkjD5X28D/RDH0K9ieKxZuw4MZyfARiZ/OjZhyx/u18Pai0@e4jBwlVdkxvGiuvH8Qv0z52STU8Ucyyl4erd23uqAoPSKvXU2dCIr3ExB80k8Nve0aZarICnLO64AQl84M16teIVRi1Bar5Od4Lx7HutqLq28JZE99KZOFqU9W4vVXqnrmzm0sPJC2Njx7Yel6J2zK0X0qjHjE74tFvMLqkYqSk@Iqx5Rw8K2Z1Uk6xlRwQL0LL2pcl78gY@3tHgfqrDDXb5Op5l/sRamZ9prIn8epSf2r0/k1vFfM/4LNHragqr3rPOtDOFWqkv6xuTq7k@Q4RhnNoiF2YsjBu21oiidXVwKBwv3Gu9aQOw4sWAkcEuYawq@XYCPp/CGAPBTURIgqWMQGOu/e44CGCKd05WnI1EXY9E0O8C@scNC6lQEQFOVtop5wJt0g@OVUttDxSxtQKNwaG0vzXNnq2InCuCale@zVsEfsSVqhln5ibEmqZD37e/RRp5YgivE4LKbz4IkleBryaFfI4NhAgAJnF8iNpSU0B2Lpi6i9Jbg6OraN9t1wxsqi0SFpAd0@BOFmx55ELQu@0erPAdkD1yne3QWLRMU4YsE9oEPiV0ykrACUn1686uuDoQLq4PS1zuFjE5CgkzQkp@y/v60bsj4IjYuvBkSBIJ18M0KFV9ALu0FbiEp9HvGD0YG4EgxRHvhV2wL24cYsjl9Vkzpy@RlakngZJasyrF6sKpY@5sd8@7r1IOWpxrN2cut0JFd7dq4gu2Ki5S5/YTvyn05kahuylbcAqrq97ssE@B20IVDA/5lWI8VGded2mqNBATe2zqtHNemA51bH4fp17aWD@Iq3PeSDAo/hFxCemghAEj05NHVyd0sf5TN3mMVT9u@hYZy3u7zBAyZfMsk9upkk@UdSXjyakx86qfcxycsI3EXrfiKcv8Zh1lDNqKrsmiyjtssjGTHRkaPadE0AmmigBgXF0vfSPcKTs8O4X7JptzIICMEKBt9rF9NYsFsme6ntcraP5s2IPqKIEZgayETKCQQ@O9LyLeJn2Fp6uaJL2uZ@wsZIoNaRnRicvls4L8eI7fmb3BjGF4jGJiIbpCi@l2vpce8M/dJbwpH8ZowluGmDWMQ@vW2RnWfDycr4l9OYiCxG5C8WpH1ZjWnNT6IMWHU484SGOPZNcM3N3bfswOa1rbcD@ho7mWz8igHwZ@yPkgqj6ybTusKWR5u0CRuQlpmFxaYKySWILTv3nn6iJQSVMendviDULhhTDiZsnkCvjtTJNlirGmqCdLUqffqYbpFIV@1TcVBE0MpoZlBQ/YlSCrOdnyYsjgPdXCxv/2obNkoHP9jCfFRi5B6E6MKpkJGuc7@@eToYCW67djDBbkmNXq76vzizxYRbbF7955mRB@Re6v7py3V/lQUPw8XWD2lXmN6htCXUqs/sVJfRFgfsd1YGc1yajkXIg/XgZon2pBX7chX1mgT/UKfLPV@bEpFvDBVaxJN0W@W@RyHAQpM@udKeN6cJLepEb3xm3yZkQUhrA6z9moo@qyyjjMO3yqBPi48Jy6A9U4IOlhHlFfa3PF1mnJwvd31n/rxnQhcNdQeebliWxTWPdNJBZ31NPa@cqOzz55b7CLOtRmTC8u6xvowOwSnFWY1DPqxq1NgaUBI00TIIAz6CtbyRIGE8aOjKdYyE1hJkdvLYMBm0EWsNCP32ySAuBMKSYD5Q44z0urfK/UfwtkRgqRL5/EK0GbXSXrw76GpDq/31aIqTiHl0JTP6Z/7To4wS6VojN4LXlDxLRpXoK7bsDrvgdDE0dFqNrM2kLskUlylz7dsepnonvSAgbWSFBJu5nDRqaURtxZvuCpRxg9RlbUaCG5@2xFkUHv5tDV0vs7CzEJjV73gE9AA80d8iYFaVcT@C0pxcBrfdt35Q7qpLSGu3SYZAdBfe6AT7sO9aGhxkVWofoeSQXyW6SIMRdByT8U@LKw8g74XhwG1PD7FsCWLrNyfA@lrdl9GHstUvnTmH/fRwSZ@nJx/dtiODnBif8LkklcWmc6xAb6iKHXbZGpICQLUTeMXOqbgjrEGC6vS2xGoB7JZujY51rRC1ymHu3GCIpnan41xghFDqrnHaqjF/dNDvpsynxdzrrhq0l9VUWczbOzlMLUqbaaZFFtJ09YdcFRBtoWXcqT9XwtemcQw6EZovPRVwLuybTC/32aWGhgn7q8P/gXQt0K7UYNt6rarMKFrsuqGwOjWcz@pg2iskUPn/rHK/jDwKhlzeK1WlKiFE1UGRtaGKaA1oRTVHH4pmRuoFlp1Omx0/phyKzcM0MvzGo/7vKpXJkw6T0RFqle3PyMeasn2RtFn9gHW@zuiSdgslmysCy59JsFZ1mLi@/3OAklJAflXmDlFbcPVxF8pEnXBqfWUq/eHQd2B6Ku@@1WGN6yDZxTQHqI4y5GCa/BrV8@AupeFEGJ@wZnmKY8gNjyPZIMd/XbX2rY4mg/EagHEC5fDPfX1QgeRYou5Il2LsCchWvYMrDVu1AVnmFUbvLc6VBDDT@9QHXHckrfrzthCyI/1bwmA73PgMr2xunz5qLMaZB636SxMAxBmfmwA6UrXYRGbDMJrw4Q74zFR3GLMpM7QbJWUIN5AlVZnUFdjVLC0dnqN700vjiCWmqNtSgI18/1aQYuZz@1GyoRBvpVbL7UXDHgZCqxpMJKI0lglu8U5tLXQknqnl8sid4PubSnCPNbi2jT1U4y7nPkpZwtMNveEuIcYerkEY9xKuWL0nY5CvsKty@kprlA2ProPHRb0wyIW9LKHpE45fog3QS@bXbOJR3TBBimbVXYrKPWx8fYhfcYNgPd43lPd9904/wC@TRaMa5fCX9XtzbHSnjeF7ymlzomr3nRFGNhC1YSh6ecW8eUeKdnQzJ02u66B5htKwn50acUtk2aiguCRWf0F8WZ5SLYBhsM@cfNd2v31uwLbGytrF3DYzPOetjbYqYkrs@GKG@ilOZ1Zh3T@b3oXtKh/YUJ85UkE5@qv72MnaH/iYPNjqU92H50oeor0u3twFCqhNaZYi1fbcBh9gw/Q4zlm7ISG0HgJyIvifjqrxxFj3OLreFpXxKMNg0H3/CTTj@fdJ4t0cRSOb5PZ7kZ78qrDoqUxK@KKarS9e93Cn1duX4IBZ9DKqPAnpLfLc4BYxac/d1bmHE/porsAq0ZiGo2aBRLbYAXV@D4VrfCxL7ZryALz5UglZcmTI9s2BKEYxk7XyCq8G7KQr9SAyuKi94zfydo8neZrpEA8p4zYDEUYaOseCHUx7AVNjuB0gbbFrQYkg5OfCVu8VprYaUnyih/Kr9850zl@wm18usF5peOWHF0m2Z9sCRrPsrt6azTL@uMSev5drfdYceYfKoCvc3Lv2D4fV9Vww/Q7SIJMVHqb1bLQfLUXcN8efmdqK2vY567mBF2J19/C7CLyPVQwreIP38tF072pmNAxrfykDDeZDDu5eWNXq2Xc9WF5ZM7fGJVPXUtlGpd/aQlwkjF3bI0SsnuVXy1nNzvFO7DOFyta/fyyHq5laDkP3f0BR9TY7wN9xBjIN2i0BhuDjNaoxq0UzElQcDnzlqGoHWbo105KHp54tgiBqTliObg/baGpfKRx09kBuR7mGO6jiEa7k1mVu7kUqkhR9ygdR3nNfXHf8vV0EbUo06lfS@xQ@DrIu9d@Uxmd64t4HoH5O6wjy1JYRuzxWPO7wt@HDHJdbNdzwJce1L6XPL0DkTD9ONnRBECu1FdjMwlpb8v5uO2VcOAcW92WibfeUKYOFF7wzpvZ0@0XXYQkTbv6NegFlDa5jxL6QYJ9AdHQMeYiDk7hmvIE/CEh3/MbBe33evN2Xwe3XFlwRLsczmiQRIHaxczR@ffr3msYhnoJo1n1krKyFSds4TxfSPelKKiRDU0ydIhPtBOCWsZ1jMxFScbFTgOuM6piBvSf53mmQ65ZZhldPvfSgntzThusaGw4Hc8TYJz89tDuZlQpbmxNC1cNZh7A8519yekReht8vr7QoIRTmNJKkGNtGZT6/12GakVpWvpNyrJ5PpxYS@h/tk4r50vhRDMnonY3Aq6MZvFW0JNl6yb3F6VvtXosvNMHjHPu7VLu9htHLUoBkxJLpceqmx5R/hYtMhfGg3Xp1aMJOkmnmXJcJxLN5wxCSa3UGAq8ceDzefxW7XS69Am@CboleRuYuPMgSvl61oDxnUDVavrPJJjkwRwx/0XgO@lb10jT3QWEC1UEKO22aNPka6pjvo7xhE/Bmd5xRry8vjzNB4CSaob6cpiNSHv7xhq7DUiAEkS@/fNhDvZngSiJViGO0Wm/RZ4oY2l7NNRjYxpwDi722YfFqSHQ3Q08AJ1NGpYq3ou66KAMJN6UJIAmvGM@iBaISSFM4Jww@@wme@sscuheiSge5Bv1V2YkGZMLKsk2NH3I77Woh6c/WevY5FHmo6R7iMijNyczm3Q7rN3/U4enOLpfnp//uY2eQ7BoJnZ5P2QtUalRc4TQIciTIqz@30RZaWG1jRY6pYlR94N3svX7njIwT2X6trKvBC7olnpmf4c88mcp549CGXEns0GjWwNDTxYhvh3QMmdgLp0GciYFqiko3XV3CAN9wNW73vtICuyXDK6BfGgjmXtfvdO5@oOqRMGi2uYWHN0fY27ypYm5PRlNtJEzzUCjflbq2QD1WQynNwL8dgp1D93A94h4uU5EGRvmV86DCILQv96giKvZSOIFu850/S6LG18xyJSGQ2LXTbbXlj6/Csn@5m@PlxCKllCVGQRx24MzJchHsA/iWupiU72SupXzMPvIPTuWhVFLetvs5cvpYuZr0UoLp5cM@p0Rd0u957EyehaRq50JEaVMTRQrpJTWCHDM4jhAb6F/QOpqI3iCHULwadMXNNwWQIOtn885/sCNOyWtgqTxsPBW6mwKlt7zpXNIjq0l7IYzfqmNl9zn67lLSoHN1TDOfhDMZQ1U/RpTobEWtOWd6W5fQ8med3YkSLX@QmQi98nW89@Rdt/4YyAQzCBbI8nXZVzeMffqaYEWsf3Rf@DKoRX9n7bTi/TNGHFZB4aW8lT@GQQB/fKoEK3B4wLrFOtC3pF7kq0MUGwvrG/fseUbt2KtdptK0cQdnkvlfDdZ1zMPyIBD6RebvqrdvNxz98jEKtwT@07qr91DaI35iJ/aKqrN7@zsPr9aMclOqi6mWWUq7F10VUfndex9LwwOGe@wR8Oz6ZdQ3uQhPSGm8TenqtzBX6IVBbZzJoIhMFvzb3bRgRBSEttQq@3KSZ/QEetLrNZEKA2GPkUTaZ2p1YHbfRmTYcr88XHFmKksUP@zoSOMdwGwrzthbFwqf4NOafdqeQoVqZ@h1PaXnrYdC0Y13sZz@1jk@EzGk5/0CDVDn445eAk8mArxncea//8vvwlrCqNE1MrrnPN7ZzXrzDpkDr2Wfi7bU9ug4uHpA32@snkPa4V0fKZZkNVQaRl8DGweE/YwvmP7s4k2U0gCKJXyauAEIhJ0I2YtAMaBGLUZ@bydmF75/gbL72HCKILqvJBkwnJYIHhV0QICpQpfHheiTpqnepW1RipQ8sFVkOW5rbo@5rUT@7fUyahTTfO8eUcD5Gk0IrEUsyII21Jh8RDiSwPYjPoTyvKCO1SBIGxVKfz2ezfs6QZ8Yiswub1ShT3dInbEGyrV7gz3oIlFT1@ErZnINxPAjdMhTKiifqJB1gnUXpZtyPDeCkdZOEra/ApYw6G/d0FJJzvjM4SjuuPKg9sIn1m31lqxYSP8nTF@dlgsYnLrdWDlG@tcv6rYdUR9HBI7DDFi@lx/zI0cHPlc4wpU6Btwup7JO3b38fJnxkMVyHte7S0HOWQSnQvtK0ZPqKJwaZqbD7EsgRNx0vir1aTSW@ENqIkzBrDjOcFVNtbU@NtXGhM0fJ4p03P54x0LLOVetdU0COmdTtf0Ovw7xWhUJNe9b99j6ruTyDyN8ZHTpflmAdir9@@RP9kd/Q/ux0hTWic05FTSdf0nbGT259hvl3IGMlHjaYZ6WH1ksXx5hy4Eh2o7GtUQRN/LlC9Bfw9DjU85@UuD68c4S6Ww6i4jjC2JlM6t3qr1eENh4eEmkup4gz7ENGnyZuEZublTPTdiucrw9WDl3sv/4Dqtxv2knQd85DrhfPlxBLMwDn77rFpjbg8EVXJ0lDZN7jx0KhUhbutC2F4xhmN6ubKcdv8HizV@mFZZXjMsggxrLDu2yQ7c6@cND@i882z5S/LhQaUofpOKm4TCR4itDz4FEyVJRhMMxI1cE382k2XyzYnNJN5z3N07yLadbk4SlrRHz8B "JavaScript (Node.js) – Try It Online")
[Answer]
# [Python 2](https://docs.python.org/2/), 103 bytes
```
def f(s,p):M=[`m*(m!=10)`for m in map(len,s.split())];T=''.join(M);return[len(M)<len(T),0][p.find(T)<0]
```
[Try it online!](https://tio.run/##VVLBbtswDL33K7RTkiEoRFGUxLW57LZDtwLrpSgK1EucxpsjGbaCIF@fPR@GoYBgWdR7j48Uh0s9lOyu1127N/vltB5WXx42L2/Hz8vjpw3Z1du@jOZoumyOzbDs27yebqeh7@pytXq9e9osFre/S5eXD6u7sa2nMb8Ag9P9vD2t1vb1Zbjdd3mHw719vT5uFkyeRF0QlqRR2XHywQXPnNhFFetS8qSRgrIqRyEryVmNXr0HkW1MFLwNLgVnkyq2ZNknJ@wdUbQhanLkk01BiF0CJQQfrSKTD1ZFZkXHFEER9TaRSz4RuH5O78m6aAlwgZ4VEQ0gOqc@qXhly4nmEJwSjEkIosyAzDo4wgtzTCEmpiAukoOaVfLzFdAoAj5gOZD14tmFmULMysFGF6zzAJOLHJ2XFC3828AkgoTR4yNoCBYqd@rEQzuSMJqInAiohZAlKFrBAsNZD5fIgep8UCHFKxChG34GRRTMQaKoKCk46gjuKM6Vwh/@lNEKogQ1G@d2cFQYwLNIiCyUEugOhpOSw0OCmRgeFLU4Tby4uRnGLlfM2eK5reabOZdcF@vH1f/411M1jandscX1NLSInpu8a3H/Pg/hr76U48Xk7v1QzXPJppZzO4KQ//QzZHsA9dxNrenLvnb9xZRhKGM95db8gPZpMJAD672tBxC3DTJNp92unaXMz1PeNRczdrU1T4fWFNCm0rfHPCvt9zNmW8ax3VYzYMK7HsIfK/jZ7GC9LzAzjGU7NhPMNbUr@SPue6mmm8zuXwturn8B "Python 2 – Try It Online")
Returns 0 for 'Incorrect', False for 'Basic', True for 'Standard'.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 16 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
ḲẈṣ⁵j0DF,Ɗe€¹Ƥ}S
```
A dyadic Link accepting a list of characters on the left and a list of digits of pi on the right which yields `0` if not Pilish,`1` if Standard Pilish, or `2` if Basic Pilish.
**[Try it online!](https://tio.run/##TVe7bixFEP2V@YAN@v1IEUIiIjAJQgTmemzvZT1j2WNWDgggQvwGhERISFxCgvsfvj@ydJ861bta7WNmuqurTp06Vft@PhxeT6e3f/56@/fXtw@/f/r57/fm8y92H3@bP/3y538fPv7x09XpdPrsZZuup23/ME9fTs@P87JNx@vlZn7aL3fTfpm@P6zrw@u07O/ut@mbdZm29Tg/tQ3LD4e@5N1923rcP8/TYb3d9ofXaX18XJ@2l2Wevmq2Xx6nZq7tupu3@7bx3XU76fnl5mbupqarl@Xm@nV62m/z9PX9PK1t2/N6mB@Wbun2drpaH@bDutwd16eb4367347Nxdfn@ce2//EwL/tDO@n0rd/ZXWjvuKs7t0vt27d3aVe5vX2759tVaE/609Cu@nW/35/HnWm/ClZY7LFtVd9X8ZnbCtvWdIuuffcVoX2G9pITfbub21ML6wbnFHwaeFF5Vdq1byu6nYhfru2xbW/fk7HOIZaCnQkne@yUUxJOyPBCYupRGUQRh499bbfqiESFV90/hz0Fp1rEodEHxOhg29J6pH8G1rudxBP7GRWW@skB6w322LFKMLVELML3iJWeVtQfeRoYpQeWCZ8emEb4ZYFnt98tWvguu8S2ZELwEJQTTg/w0CP3eorFOd2XhNw5fDtEIlzqJ3o8CUC14yL4908PtkVGmGG14J4wRD4TM1eRiUC/M9Z5MlHilBUVniecZOmjwVqD/YUMDMRS4pDcBSAQgY/UggV2BtdqKTPDHvszzozwqvKcCquCnQUGhXxw415F/IZnFPpmgIOww2OVICDVEhGpx56CPZl5deSRBasyuWeRfcGhMi8OFeKJmnw7nGkQTyKmUjuG@FRWa8LviFMCsytsylybWamKWWZFZGahclV/J3jj@VtiUZXJrDG9EnYGIuaRQ4OrxKrM5LODlxE@FJ4tWGXsDLgXeb/SV8lTYkQZbHXkRCE@FVg6clzUR/ANwE7uFjzJzK4BIpqVNHhaWGsR/khNSoYtzpBMCaaVsYgySuVb1krFtyeWGbhppIb8MWRMZp1a4lAvXoWVWhG74VNV7Qp0BCNHlZbq9GSv9gBV9IDa9qwpQyZK73BkkGeG4oWeFdjxzKMlP@xQCQusJPcecYjGFfKnUPPl2pMphfUgWKfBQOWVJZsNtf7cXSqwcLQX6WOmV5E5k17lqS6eDChUB@1/dbDODkYW1oVWhUPchTopWRR2OFpM5Iil7qjepAsmFSqAYbWKaglyiVoT6bPYLaOzJGqrKsiZuY4IGZ7tiJfckV6nHNdYPTtdxL1AtRUlCuCVYyYkex6ZqFgnChxhKRAxhyilH1lwJRGHSDZVei/aXZhtRxWQfiOKFYGPciMzux6nJXZk4Z/UrJxmUIWGGZFen5A7UUpDq9prAlVDEBd8E5FLVMjMrii9VlleqNuOs4lMD5pf1cXM2g1joir0VjqIaoKjkmWeYjg1eEars5b2xsJKrcT43D88Ky8xfgd/JKvSUdW28NJRpyujdNTxMuadOCamSP1TBjpqrOAVWQGBVqQvJlavY3@ynEIre2NiDSfeU0bnUa1hzJ46O1TgYsnPxHlGrYZRPZZ6ZagBlhzMVMA4JtMwuBY5i1Ta0Vqsw8dI1dQILPuIclbOq8yyI9cjVbSyexl2usgu4DgxqbpEqrwlp3RiCIM3kSwVXOqYUBx3O84fMptH9hnLeSqzchO8KYwo83WeU0TNdfbPrDKpK@3pgROWG13Ijg4t1jxZJJOc/g/xnBAi54lE5op6Z3aaOCZBT@Zm9lidewp4WDijyP8hURFPXZMJ0VObMuebMFTIER1hQWRNiSYlTruVHHN4WdZgHurjBuoJ@cpUnsw@VTm7n9mQ2E0CM5xoT/@5WWbPUF81Tn@h/MKGxElLtdewu0jX038cfvyXMjzZsDNJ/I59I47ZuHImDWMaK6w21dDEugic6gJxrZzgC7FxrBTtkOKPVl@4YKp0rjrmYvkPF9iBPeenzKrUiNL4xyFTryWvleOZOhrJIM/p/dz1zJhOPGehyHov4/@UoRpp9aKjfPc/ "Jelly – Try It Online")**
### How?
```
ḲẈṣ⁵j0DF,Ɗe€¹Ƥ}S - Link: list of characters, C, list of integers (digits), P
Ḳ - split C at spaces
Ẉ - length of each
ṣ - split at occurrences of:
⁵ - literal ten
j0 - join with zeros
Ɗ - last three links as a monad:
D - decimal lists e.g. [3,1,41] -> [[3],[1],[4,1]]
F - flatten -> [3,1,4,1]
, - pair -> [[3,1,4,1],[3,1,41]]
} - use right argument (P):
Ƥ - apply to prefixes:
¹ - identity i.e. prefixes of P
e€ - exist in? for each -> [1,0]
S - sum -> 1
```
[Answer]
# [Ruby](https://www.ruby-lang.org/), ~~70~~ ~~65~~ 59 bytes
```
->s,p{a=s.map &:size;p[/^#{a.join.gsub"10",?0}/]&&a.max<11}
```
[Try it online!](https://tio.run/##zLzXru3a1px3f56iYAOCDchHwXe2ZYM5Z3IwCPIP5pwzZT273OZ/41fw2gsbC2MOht57a1VfMcztzN7/Xv2n//6//J/7v13@a/qf9n@O6YJ/87/t7Vf@78t//nf/9//4X9N/dnM7/bPez@x/@A///n/4t//Xv/9v/@6//Jt/k9I3n//jP/yH//bflxb/CWxbG@nR/NNW/qf/@O/pz//8z2P@l/0//8d//vN/@V//yz94xmf@ObRTuf/X/@f5fxZU//n5574M7fFvl/a//Ld//Mu/CCb/L//yj7fc/8GeBxQU83T86z9THO1Y0if7Uk4H7nQqyq2darQTsmGexxdTWzcH4nnCMd/lRhtM/fD3lbyhTe92LzHM1dEOL@ZlmbfjnEpYtO9zAe2OtqrLo6EN85SOtJ9FUf7tCt45FemLrT1K@E2JmTbb56Ecp789VdXfd/J528r8wDKUUzvQjv@RlSMqGJpZwkYcDboDTjp7KW3NBEOFOTpeQYP5Y7YHyyUifq2pQsk4hyiHAzoxPvnf6eo49WSpnwmzqiXMrroi7NPBsuPjBmSFNg6vLGJ5sg3F9NhbB/NCfPhS1YLLfiK4H4NjHxBd5iu@Yg271aApiH1LZFMdMytZVvBUDjI@9iSIuc2a4itcPpIPSsZcvS4KsCxzYyplghPvCgbcNjdeniO/CPJh7A8PMo6wLnce9U8MLVOxbAQmg4JPxLv7OhEjVzJq83IccqHDxo4ad3soj5SPoENtx9jnzdC0/3EKBnZYZVeiQfvZy4HwcvmR0yUbP55GWG0JC3MS0xXDw8Hhtu9GEaunt/k2Lm7YfmIxL5gYo69EFr2R/dRKbW6MlQ@Pw6HS9otbuEdSILeGHfq0ubuDVsQsTErq4dFFF0ViogpuNEy9TF4rYOMYfAIeN0s/rgCTTdLM8UODrZbKBk4umclsrNIIY4PThep6OQ3s/ll/i5vgeg0JLwS/NwRv6xyMO/tadFwWbPQ4egBVXZN1Ln0Di9xi182jd7hqQRwr9dLFw0j1FCPVmN4aC6yC4Ww0Wdll8GWcH5@Ip/VDKoHgU3K3abBONL7Ovpem@BZ0rTCemdhd2NdhrfcYZniMsHZueqXjC8GNkQJlsC2Y7sdFWN/pNblJYanqcTYRKsc57B@fPiPqbArdPEPM1G7rjCtOdF9S6DZ0S2MwPTGvG4Nv04oMxxq5kCxcpc1F7nvC1TLVOMGuiBxfHvKjDxN4QuCrja1i9TNdq@KiA1tkha5p5wpWV5ki5Xbk3cK8pB8KPLY5wscrUSs/LzZL/dvB0eC@xx2wKhIvmfGB3w4z7pgDwmxg3dYMbo2JautqFbZ9Z1KGRcufWEoS9Jetjgt0z2M1NYH2Pplu2AeL1uQW/5pOGCJ8cLr8QU1ExVjeFPYvs36rORkOpDeJU63NoA/NpHNwi2hgSLm2oId0IQqSmxObDsOEkCSlED9Dyn/zTdrFNZrt0emPbqDAcEgG3s22tS3GuD1brGpBm5POVa8eex@DuBpx5Pn59fyGUvEVOHftIzVXSV@hJXNYh5U7Kqg3Y3o8ez9gdDX/w9BoKoloJssTZ2aFitIeZxWhwmXcHZ0YIrAqCtaBAfOu9ORoQS0asd9LUpw1MBL/GxBfkVLL9i4gHI0fojA99Y3fZAaRYNfbM9sgWS2htW84CI0FeUtGyKPe37UkwkOGGz3vevZJU5PoN1jxTw4NNYhSPi8fAW@FtPWNg1liaF6oUaEnYmi47tJMH@obk@oZhhPhfstFlhhpS0AdFOwtI9ZFC587Ie/SGVSXgMHwZQOcDYuOXBg7M04y32TgtF9uoLWy64dT/BUaHH08jUV5Bsz5rksDts0yUUYmTdIvs0sHr4jbx9acKj9XvYy7km5IyhzeKkudk89XJW9UslnB9TnEML9IdPIf22apiGtlwOXPwxTKSH6V00IPy54kq7fS2XtbPn3madNIop8ol3isy8DH9DMuh9xGGztzl/HdS0AFp1LPcTtT@Mohdh5pJnsVjC1WmARDGBQfgu5dDcg5nEJA3QkXT0rdrY4O6/cLOL2LbihyDzub8IvsDd4ypGjtIqp7OCDnkRhuOZK6Q92EByaOWpzlwO/eNcHs1vZ58cR/osF2fPjjDnJVCPaIZK1R3nzP9gcG5/Kr5eQgDLWrBSRDlUiqhnAPc9NN6It5CNKWRogVDu/Zk8wxVGLtlt/URDe5FNy581YhUnbqZny1lDfXOTIoR@uWaYzk2qlS7ExTCy3508FJOY56LwpqtczkHqynpOF0VK4iQ4LUjB0LdR6S2sU6KzLVxi7OdajxggSBtDtOsZh7BG4eJ/LUituD4znGI0K@m3B@a4AgiCtvPEO07El1SJriZM0pV0VMAicbzwPxcnqyy0m90UoPpgF8y/pXBWliWm5Bee4VXu5wYkui9QnBQFCoPBxa8nN5@/i@zX/lk4nfWZ3aoZSlzsiEnkP5vvmshAgDPH4oFgutX@4Jvrp@Oq0I1FFI4ZVmLngaIcMGu54/Kn42R1XGqZK10Ecqvy@3ZsKKWIJV8AaEvIpkMO9g//rigCzkeyV4VKVC2yTtsiZo36Cs52eeSaV62c8lZDtfPz2s6WQ4v9/jAYL67VScjfaDBD@0fgqW3rsr6P22CnExQl0u25KKDC2@@Taei0c4pzUV1tvqafwDLwo9k94XnfJmj0aEy0OdSsFZWMeVwc8c2Wd17oXKQGqlfAqZNx3Rf775@p/jgvWj/s3/WEeoiRgEv0RFvjeWh8qJ8YfIwph3K5noRhKtym3YH1s2JeCmQm6i4GTQ0Zf4vSNMMTAX7ytj7lXwVqVn5G9kBwhED1s@mNoCN7O0i9q/Sdc@t5cE8RJrDGuLLawLepKpOyo17qTkvMgrl1O1099IYCrJHWQxl84WXm5neT6cjo96PtfcmCIjpXqPYAjEPusF2xKdOSg76lfVzDQbXnBg@@IjCb@BTjnLz/6H8C1prjUumMO4wvU7xWu0F1wBkrGzrZuZuhlMk2ZQi9yZfjAUWu@RjNqoX2glQtxTCrfrvGYm/Ou2W6WVtFUmQO/ZrMFAM9uxCxz7o4oyzZ1@6sqOsohb1EG0W5vId82iPAdhOsRpNk6Plio3xnS@pxz50/nDul0dHKWN4YkPPBLYkyz1idcpm7EOOke6H8V1J9ogRXB/ehmcErZICS/jCH4T8deNo2p00mQvilICh/7lWkaj1pU2k1y0yGxF7DQ0dKSblN1INE6PfKJzZXz932a9HYHpjzOhFzRRR6ootcFV5FYik2pyVXOwKzIy45aM9p5/uDdR//4@ob41zyahTvRdFqT4yjvF7l@f3VkdLjIxg9zYmAlMZ8FpqE4J8jq398L9RXqEea/op4o7dmiyB4Ub6/wLHRlytlNLB4QnQdePnfhJiLXv58KyN7IiLnhZm0R8eFiVke@VtGRkfqyyRnjTKyeqjSL8HHtdAoQhGqsC77j9XHnYj6TcBdELcV7S55LZR9i6Ju1IwDJorv9OFCrOukghfjKvibFDExe81Ya6FP1Rw8UOrmrGeMQFmlZdHEWz@Da838RSqGDYql7SEMcVeTktq@kKuYVp4wcTxw233JyXUUHeYP7EkTTiKS5ptuD3ca7bE6OQ0FM@okLXT/bqxQLqMIhjt5dUQGWPQXMU36CGsYjJr1jr2g8J@YWnhr9RGTaCohsrFW6/z1EncuhFTiLin/NW7XPqW3wBWO1ruT47iWbfYtCqW0CTSNB5IgGbLKYgVjRdvqJyDnicZouR8tDwg6fjfX8rBSeBAkVkecmQ9QTYeT/oqw6WsR/yl986XCny47dJ5HbuOCCoNcj2Lbu6u/wBsE8t8ysXLHf9J0lsMvTN2GcUSoIR9D/ZhBL2e2cdFMLd1aaIGvTpMWjky7xCY@y32GIS/HEIxxVeTWfhgDEPnVDgwWbANWIFvXXVWWyhrQR8unDuZPQ81h@x0/2lA5iRH8PpsNQK2btYfyGLlo0bkk4eDbIn/C1EIzpPQpKyJV40KhEc0Wn7Kl8h97UqJHBvVvT51zAplLnGtlahsiPkjBx3uEC46/C8FrRukNWuevc0PxT1QttJXhdy8rXGRqSiL7xuGfojQeur9KBcR2Hj03ZFyiYXtNEFo/QTn8iSdr7oucEQLPBsRDbM6thzles4bi2x3iehnedx1iJPMKxfoU@wI0FXdg2tn807oQVRJnnSaKu7sCrolJC4QR/rvoAwKs0hfHA9kuvMGtXXYT2StXIMCrl6TjzhoKLK4mbNMVqmVDAO9h/38QmeO1DvEL/E/BTW9iqcFYn6Y1RZl6V2sKOmvBZAAOOfsKijF91q3dt6Npz2b3ZOf7k0/KYw@5m7FPH4qfqfGZ5NXM6QJSlY3GUgI8hOaPe4NMafOcm9U5CxlNIPpN33qzfsiZYyuXwFXw3BeU0rQT5M7F58jPmhcL00NCMJSweLPc96YzGcPzZYZyy12KdbzOIen@WEKP@muA/RTakhZxEdWjh8EsjzQ7vijQdBHiwoR6iq6KvymYYOazsJsk/RXbyiviQXqezMfeZW6ZHsRSY4kA/B5RZTfHnsHGu/P26vKfwL7iDG1Q6WcmdicDMvkC91mAN75J2T3G/Wp1JzRzQ6axbb6CPOmpFgCD@BzqyzrodMPi37GMnlGMPdV/DjbcarkMQy47a/gTZMOgKvb7RMugf4JEWxoZcVFRwpAGZKwcXgEkSWbuSv6wObacngEzqX7@oOFM2NOjcqrtc8UkSPQma3o@AHZ@ag3/JMoE8Ai3lPxyrNqBHuJmMzrHvuVuX8wO/mhcPhlvi8n3jRfmmBg9dUL/4mtHdd7YjJXtxMYJORwsMY/9qJXyDflpKf/FuA8CaN0cV7IgQ/VEwzD49cbHj1aUgtmv7Y@rw3gMSPrrnfb4PnB@5iRBGlrjNPf8ao4i@yTz55INUwRXLTxZo6HO@PIDOhdWp14Zc0AmEulFcLCiMjI/XabPixLvnx74tPkoROFX42KDfQQpHqsj22WfSFIvNesHu36nu4hCsWEiKaUovg6mYkOO11OxvJliZPRSG@IVKvitvzZ4CphmoMUWnHhzFyV0c08vhGSTAz6raDn@uEIKp13Oo8qcZYJE/WUqJun1leA@rbbmLyim0mwvC3I/f8HUJGByBLNGQp3/mApNPSuN@xoArvrFIlKsc7wyKe3yrn2BV7CPaP3Nih2VUU8TvZNo1myvBMyBVNcoGxxHfqGJFyZLCXPY@kjBhGvJ9mwKN3QQ0Kti6VeqC1hM7nrrxEWDJl4VS2fMLyS/Lt7V9F@qP/WpnK3foLIIkesvzGKhg/e6zLXzkgTJJv2iQnRn3WTdFfs4d59g9eTQnsmThm3F2ya3LPRl6XwQYbzpif/m46CmO0889X0zb/HvB357yqiP62eX2PNsjqa35baiQpeeryURrNvHKLWAbfyhsPk04bEUpE0i9THtRuX1aZaIetGX6OnvHFonweMkr20S7zB4FogJq0HSuevF2TClC2MGQrGJ78puaNWTfqCK5WsWvitSwbtFfkdpvsNZh645oc0iiDVlQ8QvFjaFLyOE5lDO0URocasSR5tjfh7EzpEMJnpNaa0B@zhFabLJSUGRak/jNVxiNwSLatRlfwdghZb6mTEvK@ZfQb2K0uWQ04VVjTMF026JsrkN/HNOCXvr8/g4@AISsxr05OerEboNToH2MWKO1IloDkJG2/D6r7G4Rm6cfCPgUzjwNZEWFa9ZpOOQfmwdz0Ugb9oHPJDuwWkVousytEqYrDBu@2x4ftOX82W@mIiyUasljdNLwRsW7Iay@2G5wpVgy1HepsjpVgbyJYZkFWPiGOJPXtKXF0q2TunEi5HcbLTeWPxwOlt55pjD46Tw15m/Dux@QX2Ubes1pWUE7EJ2aM5O/yMkG4GhxozwzxTCp@rKhdN9bd8oJcW0Sp6/sdDgfJINypd4qLskaYWIDx@qeuixvB9I2X0yqINrsgpHx2XqbzvK/YLX7Uv5mklUGLQoudAXlRwns/6Bdl8G/Kh0qSKoSx8ZzZuUCMTLQHax8FQU5OohQn6E/onTg0dWskM372J70aiUtYu3lHKYCi2W/0STbwSPzTUq44o8X5S2HdOV0@Cplazy9pam1SrzfBqLFn48oougdUxWPEK0xLePA1UHc16cF5jiU8FQVrOWq93lZGHCkOX6Vwvo4u7O2YyKdZTt10Mqs99zeeaVVyg/WMBFQNkuYgt@NVfK7vhx2DoJGSBXW/Ujeu5nmAyH0fdNi@93urUSLxeKx78OgsGPxd/dbnL9yQn9/ht0F6gvl@sQrXVK2ArOnGJVhVXPERJWPnbl3w7I5M5RlV8BXoch68G7cgyLEyBeYy2CzwZGrczVyS2cPVu4fimIdYnUjPG2pujq2xhqUksCFJ6alR6F6aaD033Pqq2lR2nap2lpIVDWrPmTTcmaPmTYpK53snNzEp054ulIs/eI9ZRo/0Qf7FyoSl@ZLLk6FtmhVaA6RUFx9etyFMa@YY7aXFWDlFOLAsMrLvj5eqfi3JblekNs0nxLFpKGweg3RItcbQqVoRZ54UwTG4wS0/mJ7T@wt1tAFLZZ2Kvpfokg6ndmrz9O3UoOgWroLw2yaKhNuIWdGUSFfxu8ri51NY/NJqbNwcGzMLjA87ECWxJn066IRS6T40e3QCeKtyUnrtniU/I0qGjk@cKHDWFEHtO3WwB7nBXwrDR7JcMcgNNoKskP1r03Nb2uLTz5ZMkWRGKmaC9@AwQ5XYOZmEXGCPFxEhzzexHpMQzg2M5ThF4dQNvFpkDfmhnp08xaA1DeEPWUg4ciVF4qVIyMnLceRnrzA3ykv25IrPNpfTTYqVDjeh2VlWM@yakl@U8k3ahicEbcs6NKFyssJIC2r4UU9bdy6JO0pNst4hxnjnQrWsAQUYbg2kZ8fvjKhZKSC9YUWAIufvILEHqWyNLKvsaaFSjt64KzEOK3JKpPKu@tJ2HX@BTzam8PZimBQvQrsJvAF3kRTWkng92Rzv0Yy4j@hIssgjyChtK1iDLVUttvpslEwFyf0Zqlu7s4AXgVMlfl2rFw7zlKm3ajDZsIWBRUCBwe4xZ528YyJmfMfs/sy@2FRCi2SKyu9wWzyN4d5/18Cd3pLuWd1eUq@Xrxd0m7VZEbXTzWxnYNeuheB7uSu@yUu0OCIWm6ylYVuOyEv4AtKO8e/yLqmlOSIxSTfg7tFD6ViMsiozKW7aSi/m/uNvUHlBIOFub5K3uXiOM3bRyCz/KtE4g@ozhDlqETQr1m5ZpPYMu0N6Dg8kYT9sbJF1TUC4ZY6Up@GXM2UKyhKZJVzFdBDzahQ7qzBH1aXRnRi48j2uo@daaYXaTiD/6Bhbjv9idDmZAhTzqAwcxjrvEaGxpQ/Y6pyNAwLmYvVo6osp@uVKDNmgovRI4QRSv3vEa3aULbxjPki/C3G@XmSPXSffcm0U9NLFZl6S/rZr9Ycx8U7b6SCd5rkqm9BHNfjkFUFUNQyf9pWHLXOl9A@LeguON/LJHhJrc2/@e2iZBIRiB5fS37fW52lh66r0/goi1Mjwlv7vZmycjT0Bj0QCKc5hQUBSSn3yO3tqTPZcdGy@7vEEoGMvqdSaRKPZ7p4D1GqWUsa3M7TheDLtOuksHXOVPsmHHC9FS3o6WrnWnBwhdadKpiWw8t9d2Do9KSMwbIGnZGRFpTYi06yURckIIJauVHBHB0lVNxVlBGlOaJF92XRq7J1Opnn3w5SjVsUNl2F@VlAKBgyK71/lu6XeWyqmbCAa4KeQN5dfFxBeQOTcbAab2q1FDuulMqcfP8pgjtRINOvxWvHWE50jxISOeBW/LmWfjzTjaF4z6uVeC/4ut9c3T24PkyLn4zTX2GL3X7soOVQfZ0VCo@YqTXmm@W4Sg11Dn428v5s6eEsP@7sWeVE3BrQ9rBqHn/WTQrnfaqP1CxZQ5Y6md6cvvqDnfTbhcb3@gzVNheNSI0zcqQTnFIBCbaWdPBn8smpr3aU@NiwFjOLtucbq8F5epGI5Gd5j1hZMZ4I5Zq6/MSB15OUgDDPGKwvbKbfwFkSalifKEBumkGUwcoamUZyelfAGtphexUGBzJ4L9bdxaKPkNyoUQbtyJr1/L/cboolLyApJlpfherlTABuQJSRDL4cRQ4jBCf1a625BY1ZQZkazikpATaoK7ny6lm3g@df7PTUKe3nlc6sPGAT0G@b3GU9wiflXEHtsHEv1UYg3DJ2wrwQnCoqTVCy1qM90SsCvuB1uNgqvXdCqlHEZRmncH8q1C/PdgDW1XWnSdAfXTyYl7/enWQof5V@K@MyWJXpo93rCfGRkv2EU6xz3UyA8UYahMi6w72hssp1Do5X9HvKfYbj9niiNuqQnNSLD7konyU8vJqRrEnWkM/7Co6vNGLqjbxRh5iA/9b/b60mi1EWP45fJpU2oXXXcgyQ2Xv/U0KEw8sfrT34YMZqWSQJztXYaD3WPL3cvnEsm2s@AS@E7jkaTETNR8Om8euNyCAHnY3ykH63flSP8FPmt6/NSof44UdUVB3qb58m7tWeNaaf4J7H5t65QrkaKJESi0KWJZmGcEplQB0ru2B74fGMW796JQR6NuSVmPDYo5Wxef09hZKxnHXVKAfwSqKg2y9mmj/IR/ngmcZi1P8QRnaXBcnZc@JoHfsjv5GwJywyH@MKveS9ZScsupRBdfi9zzAt1xmIrkj1j13@SImYUs/WosvohfEHQcFmqRYElRxqMdOT5o77wh7D0v/6NqIU7@sRkw1H8CBFif3PBUW7COv0EbcSP1HveP@PuhoqkRk@DHVKrKIkO8TbN35KK7t@1/fK@YHsDm1Wwkl5zsrreBrQV3ufVkW1vHCovTx@9QcAbFN61b1JEiuFjseknG8cvdodYrhitXqDEPiOah3qGFOVzGWed9/u7iVnynnizJCgCqXZNHMIQtpSgJhjegpMQsC35/IlJKu95aRPQTCb8SCpQq3izzxLysdUksEZfPoG9SQZ4JkURZpeIO0ynH5LZqKLsJanSZ@84ZzIC@0f1Lf2RGPGW2n7xJ3TQa1gtUZVvkG9HPfj2DNFd01sH@1zCPUuVT0nKbkoS9nFJ5L6GtqKiPnqbfNggLDfaocuYrY09Yka1NEmIqEeOopCrzYR5W1GZOhZVaIqz/uTmbkgwUQlvqfwgS41ocMVKwHOFaULCgPS@@U3EJUfmvJTOjEU3M2s@rAzLAY@yQvJtlePi0dfUuMqyQN7MTO8jLbt7@7umXheB0G45ggE1S2g8uIyHRxAN8ohVDAo6TtvHUfAyFKYm9v5JEV7fgzktl0C5X3qs6jd3I49cTdJ1WPIkRGjmtpxOqkV2QzFT1RqyYX5nAvEirappBbW3crYDV63IpIv6RAahvqugWiPVlev1/fwcj0bTiTwXGCqqKr3Q14oR9GkArWTzlmJ2TxRBuMNRw15@tEnCql4zOWGMlISUbYv2F0FRqOm97JltFaX7apRXSYkndZ3G2MQjY5jdxNyLQUSfe7K9fCjbmMNkvN9LRrpJDEarIZyRvFfXe/KUv4cX1LgVA6yLsLY0DuM4wl5BMuo6/EcfAjGxLdR3fd12WkNtdnzK1vuTpcPa3LzB71t5X/RYU4JQO5eHX9L40CiMeiJDaZdK60FkcimN0KmGh3@JTeTTnn4Bh7O72YS86EiZ5SLLUuZR7pEd393cHkGuTcSrBJH2QMqDzGWUxQYfbEs6u7dIw7ubAev1lLaMtafk4cuuBFXUuVbjJxL06TBcUuRRREUT8XFF9im0e9BIrt3OGKYTKDyfrTkfMXlW/GSOvPEoHnnXuT/amMgY5OsjWS0Ovicr6c4wY6YYDkWe4PHKLWOq7Qf9htFrzzEpNYO5FqMDkn@3IbiPcPHvcpiIgJeZt6Yx/0G@TTivykqILCbUtcdfa9jvz6AFt06/olDSlOY5Umg1WGyH6prC5TITKD8IvzlmEpKdwSCVCEY9JnyazC29/uJ34BUNR3gkhGG1mC4BssxD2sgRY42TTfzhEjytKV/578rU6DmqLgyhiOlWQ2vDGVqHSm1dPjERKME@xHmnjHmpE9ThCMqzECRSuRrV8jv6LSro8z1Ueo5CkkmfjT61kwn54UJZnHk0toAlV3l87ydqa0wfrO7PdYoHwnomg6FTWFEX0bKo3ViuR0B1aGSGUOK1Ii1XEEdqyv3wqQqkLzWehXzMicRvIxz3GcELdZdDc1Kr5q3OXFQx1ff9BPAFGXalY1jZZrhx3gvBSynWHKwHm6pQHWQcFo15vGdEHzvN/gUnPDVNTQpjPWR55DaUqm1@YCCtrnoECUuD56uaf9@D5If1/64EFA41gC/hicxkhS6pZd23FPS6nujo0W2RcunoeibxSoWg0IUiGjOk1eY@aX6xyBbxNa8mCSm@BWylmZLlkKcXsu@JOJPadGKStJ1jU37GZrPCzj/oFtzLOBuuR3AoyXUg9B6OKMRvElQ1jEZc6yW6HbeSCObncxnir3UbBFxVlYxkaxqYRhKZiWqEcnBh5XyOR6JeKfwqmUILUmPdBC6Nk1FPDUI342253jsMuSG6Lg5Xsn47wW4MOx0TijQfxnz1kHe2/kDZKBf83dZbnvQ@Z1KOAHF@VlYjzi50GTsZb8PJko1WXgl0/m5b60NkvTPKETSW2R1xC45rtRr6u@4KEsR7wK6apEjmapE5hPZGvkMQvyF8D5sCpj0YBWbr4MmaosTnzf45I5xt1f9qirFVhiOuUhdxZ0kEgs@mtGa5LeB48kBqqtIBf4max0sfNNJAfqM@8XBONqX5Qfc0ypEFMsffHWTlb9wps5QUsHbfUAzUFRjvvndwjpiSFg6QyBwqhGS7muTvOBs@I3VHETVWCGuwzmbn8OuKisJGlaxl4fsLMjdpoMRjFwq8JsBuzr/bC0FEcG8VuljEvg2WZ2rENBIv3ytipQWzsXgePAHBIsFiMvgNHDdBmRZ3ezrMje21m8L8eFVCHccZt4Zw1Rqt9N4tdyclul77u3PzOXeMorMoWKq4GB8/7iKgThbKFWu2kKJUgXLHK05L99g9AyPIKrOAENb6eIIRGOOZbyOa75cuq5ETvJOF3HAW@JHx9wO0P0t104FMPfamL5@sAFHesalCzhzpLtXAV@5Y1KuqdTTBmbvl@HuRFBR4OMl2mLacMbgsUdlsNzGPJHq/kWiWuCibo/caJRqxsdS8I79PjJN5hENblg1mQO3ccp79NT@Op@6BnoMW/6A5Xg5vMOj0EzJUJYPbFlbvPvhT8TB8MvCGX5cYmZxRVicNCIt7qAWrq@jSJgBHntYs846O@JnW1JGzXmYy8i//8D/X6JFuTRF8H9WLPuQ8xvEtdodImjqisz6LLL3o/ddvmL@n6pZu2fj5/eE4@gr5PeidtXsp/p7MwpRTMCLv6P02VNSEqDkk7YvzkgJfafgOGlKoyD4iBHEx/2x4snfNJ6Kw9cKMQu1t9u/vlzYEYbrHzHh6kV/XzTMQ8YE8ifv3dwtB986DWo3NrkPGn30u67X/3aIY4O8bXBOCYOntokAO9Sf6NWdLiFVQFs5vDzo3/tJJ/vAMr@y/cJ2hkMbAURJYat3ttSVBWs6E6nZ0s4@S2mOnvP1pOcQ9m6B4J36ydslZS01FPbfkj9J180xBGO/pnF9OGc5INl/1zA3fPouFAH1WFtFroW7fL/ImRkST3ebP8pFUl82qiHZXDwqi9MrKiVWoHNmBgLW8qkZGldsOEe0s/@ye4Q2a/vH9qYbajYTq2WkEb91pM2I/pUyVfAt452H7kWi@leus5nkZ20cnMQWJW7vIt5RTVSr@Wwv7/MXb2/ArdaGNO9VexjE5iwa5aY8yyxNMDpw/kUd5tus3YkXUYc5nL5II6fESRPkOkTvjMGu0TMBg/93B5DWfWlS42p@O66W5mUfoBOLH71/vMCwrtE1fRKx08PRetk1hOOMfHiGZQtQ41Vi2mc5yP9opPdp5@kfRjhQi92N@h6WZ96Whj4t3IOj@11cc/n//3oI3j@XfwO55I@k7muOmU3z38qLt/78XGQzqyxVXcUjUOQ/38yyIakZTTnCxn8ZvrsMqVO7hU8rk1znf4z/74mhRkylhJVKCqM6ab2NRKjcnatnDDxy/GNnfa0zZGQXi6BqNJa1vU015O05g57J8hK/7XbJqvltsZZpctDYbvrsom1I3/4rGHkpmcufXYY1RYOrhiTgiUdFW/e6hIvFYR4x8qU45spd1muZwqmQlH9UxZQ0hih0TyaasVWxLpA/HkH@L@EDvrbSdbrDxvDFXurroS2Vsar5bijt7t3PMSr00S9YIfX6NR1HCQUa7NA3fLhexqOkLWO@pq6jnKVhn60gJvKkEAVsleft6npsVZNNzqu91LFW1mp7u3ox7pZT3OK8@GT@A6t8ICzSSk1qFMR6fwrW/j7sLc/N7OYx/vR7JsitINSsOnFgbp6gVqRiZx8aMTReMMf/wqj1mQTy1vcTWc3C5Lfa10mfs1D6Wl7ck1M6NNc@ESyXcPQbRLSfxxN1lEUFCfgeaWvI@JWzvc8t6AAvFDaJ9xb650lbanw2D3/G0UV/dUU/dFnNutzPhb6sLb9MErm3MqnF3TfxijWLBwDlLP19r70aWyeq/NyAPZfngSvfK9sTN86NPL3Y9nalKLk3grzTZtvgpZjNTUIW6oVE8jISE0msHwbKH3hcKUrWI2U5KFpbrPJZXgdq6sER10rZMuHFY8RTJKpdgTBLVpaS9D2cN52SkbDWVFkJuB2p7LbEnV2/EOeeVZ3KjStxo5lbCrmmvXnpiVO90TSjKv4fahFZru/euWzdigyqxDVZnpvuJg35sTCt9dfm5yDSTtA4LxfOCO9DlrIvn4Q3k8LtKI9spX@5RmE2nKA/W4xyk/ZmxHVeCneWRLqF52KLHPPCo@fRHwFO9ecvPFPUgb2LupNUiy2d27E@8zbdO2PDrhCeqyG6NT2Df1E/KrvickJPZ/dNc98iLUXhNx6AopTKv3n5qsUEyFnsh@AogV9MeM4sGm7Km1lEKBB8rzS4UQZQhZnvtl7VkNkOw9RzDT2gWvmQptE9USJdhbQYR51wOzADdx/va7Mt0ZD3hZymq21KolvcDz@3MiDYvPAVyLpvFGdECoy4TJMQQ2ChEkyuqB/XLopJsc2Lo2pVNsSS3vZQQ2PGtjreRWwpLMkn5sbmOddYL6jgXP7S@RQgTvcbDPjsKWuRwitODUE1nK4kPKhLMd44Im1r/ZAhl3k5AnzHLonDB15q23Eo1k7I/1/wpnPZ3zUIlm0jhW2vS1UU48uAGpqYsm6V8FA9o3jPD8itCj6IfReTEyrJJojnN8/D0VZWFHmQImMLVFsXCHjsO2o7/A5J6VhmS6yVyfocW0eD8Y1Kj3zvg2ovNpUwbeGRS3zOItxSbhFcN24tQzEJ9/54TIcWf/gL03@PRp94wzFeBfPBrLZqpg83IRR2tX2978uvhMp488sM7WlqzjVT@sYnFFKaq20csSQ3Th1Td/@It8Q8P7Mpcn53TqUIK4UjjPZ/7SNzABDjsqWtGIlKWbMFGUldh@ZDRjWZKkPi4FCkWzWpCtX0@XActM5t1D404e8X32d5Zja1O@W2Z7mZMWKuh1ze/4pi2tzJfJuVISXlJ2seVLFQCd73LOe6KukWz/qb19qnecXCFaOyo0zG8VuM1K/iU8q4j891eAS/rg6wnjKObQ/deyiXEP@Mdfnyxja/nTb0iU9PgvtQqhdxTwlpQNulZTop@Ecxmtk5xJN4kCsfW45aKEfD85sVBLcs/o3uM/mWSJ3GItp6RkXVuspJM@31qo7GG1qTiNTRGC96WklyHJ1I7rYxHgOL81IyPy3pN7YB/x5bRmPkrvLbZIm1fY38fU6ua8zm51mxPuPmKan3XMmbgQ/f3d6bl5aSJt25/T7F8fzcsvqbNhgX9q7jxqQ0H5FxhPLTrj4csVM4qccWJJoywi86onnM77ljtDX7@LFnotNF8rodSpuqs3I6njqUdu0v5jYrU9t96J2ImP9Y1V9eZiNNCHrjmHkVtJZSG2Rn2n@7Z1pXfcoR@8xj2Yl4Z4u1kwYW4/mKEJnE2w6B8ra8pif2YhXkLvij8WlIECh@jWOmyIpRFL06hQT5wWcTGy9Jp1qW7miE9QWzmOp/l5qP4tmwn3vfw2SvNxf0LGJdge0825uOnvyde7MtOpubPnCY/1n4hUXzPeuikImVTdHnNNhqUMFNnrEEx58WUlcSUDdT1wprk3qwVXOM9Wne8jJivprzfYcWu5vrGvlzreRA9U6EPFGabtQoJJ0EWH4t8Mi9MjkR/KbOlXfo7AwT@j/qQebfnivGukYkvj4XP@V6OM@b5UfqxFb/8YKWTcbK7NAyvEofKmH/J9KiXXBes138aY3HWeC9yXgyyKN2Mr2c1KxjC2@T239Nribfv4Sazi9opQhg3osq03O7elXkxDUn2NbbWyAcw7VRoPUqFab0n8og@ivqJzZE1vXAE4opZa619i@00y2xO4@MwkRu@2y5V6MYzknEtNy9TavQtfrrHW2byPYya5v7l5hZaR3uEb0BCJvHZ7gZx6bu5/LtzS8iEBn3VqL8kJbkIPlTBabUma4Uk1cSxprc3OdcQopqSM06HXoDcWyk1M4pIY8KB5@lvMnu6FF3yot1qIGpPtn1zLpdtuM@bOreRlCbKHqDdm7CmWW8p32vvwlZ7bKFvdmUR/MAWlfvIp0zmwl7wpmDTxiVsyl/LSEqStHxm7qlUcPPKrhTeDg13W3n5hlA7uFdemRd3gibRsD@fCtMLNBJRZW8P2eregLzzVVC7YY/idFbxXWKMnCjXDMgU44KV1/fwJcLMOKCvBpuM6GYUSH0EScccxsNjYcv3OjnQ63EI4TZzxqmNoXO8TBtKK1E8M00btVNzeet//FGVx9XrViUw1T2Ugf33mPLnaVSgjXvs2u9kP322mZGq0K2GQYCHUjN6PuTZX1VYFxu5UePFD9df4Vs/kulvFUnuYCfl3LfoHnI@x95jD3fxu1uxm14PV0YodiplVy7bfjxzIDu@q531RLW9GGJRSz7j5p2ox/mW7b@rah8rZVYj1Hox@Lj6aN9i@uIMgumGJBSLFAzJnoi@hzrCYisnWn1dxNpv/i4iHVw5gGI9FY7ysV35wSGT336EV/XfexHYFjWD74v3D2xpe/bE7pOh8eU2zV6dvYLJJNU9vranKltXH@ry8/tne5hiYny7Ua06Oro4@jQ19PtrT8fdm8quHs86nr/R3kkR0AWb0i@rx5WUYiOB0Uxf@ZAwHUNCrxV63C2Ih7pzxkIoNAxf8QYcSkFHgiH9HTEmb@suyJkdHat@kjjrfuUHfxcj2JZ32KFGcGwm@MYRv6@48N46/5nHiFoQ/IexpmmjMFctUAWYlu/3fLTIJSI5TyqVahAp7Yn1FLfeAm5F@z0zeYf7wXXYOFQpayL5XcrmctRzJE6GP/pjscd/z9RVi@WmmEhJiNzq1a1uvVHBVMxd9R@T6pQ6NoYdD4PbH1Oaf0YT5Ss7i0yzyrauBLb2dRdj/cJV4q9asn9FGx/7sX@TF5fx0hs/ruus/DUIli221h4cV@tr7t/bcp7bEziZaw5OX1POATvxNIE0V7XaeLvEmUOjP36q9YGaf8rdD2srlPW7R2rH@pGWtElmlwyxheNPMnNO@fSaetco2ZjpcK6jS57t7@JL3oz3LSk4FvC59pGZqqfQbptpYE7ZIVyVhdFRXC3kd@vUijYR/bY6cpE4uW45e@0n/0MOFf3KgqkFOFxqdUN43AG62qFhWZFDTtJ4P4MxDRHpr9Vp5tsiQNIdYdAS@4WX0YfH8YHqv932RSnMuXeheZMIYTq393WkxB@GhVW9JVMer2GzL70CeZYrN2G2@rCsQ/qGoWiYSJPDadyLYqvyYNk7u4L5nVSKogIRYcjhfKY1fogiuzamDJh3BmM8fbFn2uchXngndJAFRS4rbR1jPuJi/Xt76ZVU9rR5HT4jMkRHPdsRyHGoJVEc0ynQu4sjMeURSuePf14/8LBpTDb1X/ce2rufSsXvp9Pf56dLs@HOcWTVzdB1uemYXWQwv4eTJUteJ9WyGe/yHrt/pfvSt6RVztffDktyT/MsktLpqRdJ2NUYTuDAOJn52Eh6KK/z78GhiYjA3QIZUbbuFY4jQZjHZK0ramSEdoOvdEIq//nn3hTpM5Grw2rR7eDLhGru12QL/H5@6vKaa5fz714StjE1Fi2W1uK6nT5jpyWQrGX6ZZ@Si4xW3azMMRYGPy2C99NNrKZZuPhEV36kRlBJtb6qn4vj71r2skUFT7ImIOiCg2UXgXdxzFWYVus8wP57NE4aznj1sr97fppI9T/SpFebIseaiJehfw9W9uMSleJRkefZqKfCgXgihLeg@Trz7OW6cfKdpPlz9Ruf13Yhb7l0Hr@d22xR@OYjZHp1YYK5uWJ@5osoSwm9/@4IOPOVSNdfDIoN97sHCIUEBk89zKPA9dkOxxZHkl3KGc0YCN@TGHTghCpc4vsMZRrl/Jpt0OegrLzP0lg4ci2kSYj9l@ZYtfKA677KOWRTVGw2V7GWIq9t15EKN8vmMlUup3Pla4P5jNZ7m2eadtOcpcM5vlvMM7DCAKQ0D6EFjvrsddb2bxS6lG6Ho4fgRc2gfKUk6PSfcM86BPu6bO4O39755kBqxliq72Btg@Gjg3C7ck/ZNouzZfyWxfl7XnxIm@@Fo35G/aGsmq2PeYovDTW73A7ocCkcb1A2TJzYph5I6ud6RuGnZ66W6H2u8U0Ym807bM/Ts@kql/3emNnLB0kvfxHFRTOPDZ3xpNAXtsN2JD7M8vqdwHP5tiBNKlsYPRidFSVYHRyjHhS3Au@4S2lkZo5pNEk7IpPbs0YiueITV32rmBD/u7y2c3ZSOpBgbQIOL3l18UcYyjN6YrMVoTdZhJ0yTusYeBE7k7VNHuXbQsDe8UfWVkZnwPlES5yi4bfxqNJU5bSsCMHZS/r37PIwTKVHYINbePNAUx/hcc/Jj9bISk@L10YzFylEZXffm5Fno6bw3Rw3jsaOBw4bzcmbmgjqH0RNO420/GQzLENNqbJS/wKvSjhSzb74JdQJNmk14ov7NUe7mT2fXlPoG8yxq6ca2X7VnD@3KdohnqxpvITfjlIcfk@cduOC5HoO4trSE8we029d0heuOH3Mh8/9e7V9DskERLnMJdYukS7fOQrbiSWXUieCECSW9WsHUpqJuO6375IRDX6lW6TU/GvF0kRGK2jZBVIsO56Yv3eRrFAnScqPKSRHzn5sV33scPNxW3dqOpuR/c6V9BQ/U9iLkD9/foOu370KwwqFNG1jJ@RXkiVtjdnSYd/PpawdeDIXW92NtVChDcXci@GxUN6rOWVwR0zqew9pwngZSF1mMHFqRuqGhkAoUIt3Q/194/iabE7ZuBYGyv5jr0TWWwn@rPCRzenPSiukBFM5q@maCpbEnUf1MGpc6rOqH7evfuE5ze5jH/WWjOs4ExE/i96w8iuaGeSnbd5x1w6sn05x14jI1@s0HFuyv0mRfh2XxQjoU6/MKOcf4ueInNioRhiUi7ZEZuOKMtXSfjJ@VnRGxO0Dqwx2MZl517OCOfhSHxTvori6143fL2IOFq/ZirtnVXWOpZ65GObm02RZyVHHh/f3Vhwt26rsgslfwpAIp6ahOKqgLp/QcpL7jTibiET/Fk3GSjOuibe5ZPMNk3xURmn4l9Ky6MmC1RLHJ59D6qN1wsOFV4OZyf5nn/08cnWFXySU/iDoMdY1zrLxAsuxIiMrU3FJ/fgt7eMFXn0TcrV8Pq8Of0rdwmub1qqvZ9q2@Pee3XV8zBJUWJXQhGreDsV9I6tddtFh9JSDVioY9aaOKjebbEkM/m6H/v3WlKAOmXNnPqraPXp36tRdSv5@/0ly9u@8erK8w2M6dy88zpbhxcUjMYH593sB3LAsoKebQ/0S@p@afgdt9v9ydx7ZcuMwFJ17FdiKsqicSIWZcs5Zq2@UewE973M8sL/rV0kkgPeuigQ/y68kZWuOs4LqFXvCafD7YlvuIMgmuUG2Bcy56S1gROQRst@uf/u2neGC7q3F0FJxAqE543G7VRlWB5SGSs23wNKHRoC4hoIkKJmCRFBEPXosdL7UD2FZrFlBYCxA5Q0kEFpCd4I3xIauFO7JH8W64qgLLG7iSU3IVjl@URntlBT5vktitnLTd5AnPUQ93LzM/dIomwKVljdqpazvYCjk1nz06LTH8JBgoWXSWJ4HyTM6pr@JJ6zhZSULBIPvd8mONgHslRHvDIsb7SvNi5Y3MDnznzZyXsj31SimYpBeZtZ6ZyEkNFBzNf8ttUnC0kvWPSNCPURbwvy0u/XKb82NaS1amyQudzNFO9A3s26qDYi6M@XdN4LWE8PCkvlRyK61cIKgZVpSdg90uTlgjBXzVcae7cJ7qEhwkjPDoU@C79PQC1DY0qK0TYrllJPzMybDMv/2wGQwb8A3ng0F1jOL8SuBVGwkE2q3h/2uB@DeA7T56cvm01ANK3DxDeBx@yVzoBcv04c5C1PQ0qfX@75/gXFvOsCdJZ@T/5acoFR1EHMo33pvrfwOJpbWg3yE7GxFnD5SpN4hzsXWm3ws1Kp4WE8Lp2K/6ZXJTZlwiaBr5Mm9seqagAriuk7N@utKE3eYPMowb4XD1busf17gjlzanza/Mp8UBe0Lw5mk3U0yOW3Om3/VpyqhMLP0Fd9Y2a8FOfnd8zAfTmqWfg5NXxS9Jj4T6LRT0LvTJ@571ef4zFO2aXXQmMdbTvzHLA0aMnNNTiv@QiHcRXfo@ngIjcqtbcvqZbyu6N5dXepXN83W0ciRVeTXLcxKem94CDR3tcaQzfuTcjh4a01ztS8RG3JMXO2G2otZD3G@Z/nFWDpn2W7fuVo8CFvC1NTluMWXHYZWepAsvk@cjfyktR7XCVQWEZNTVg1xXES1jRNUh4sU@yEb16@XhpMj5W1f82JxMzI07rTk1AWUTcNrmV7Wj7Jcr3qs78jlVwHp2oi3GecU9NWId76QGnQV8q@Pkus/2c2XCTzRrV0atCyW29JiSJelNUwWVyLj7At1ZbhFrNH896wKt5FfX4mGmUlac4bR8vT@6BuTs/Ly2Qn0@BZl8lNpvbSQpJNBpWczMfQ4mU1ICYsW7LMgOjd35/WWPnLxTbOV2VsmT5veTGrkdve@6r026Bm3NJca@o/OpcqW0Dp/aTL4WCmjabeFzdbUXPFRgN5dszde/Nw@OhpYIfBySCajHB0wR7D6ZTaTwRRBGpp@/rffV8hwDhdzZ1Ao8@3SB0gefT5R8UqfhgPVaOSbFKXFgTg8ib19RoWWyycLaUyUFM9IawW@WNflhasTHcQ0NFNuOXx9nbLnc9qzNadruLnB/BTpjXZuUSfRSBd938O26BQDMWfuVL1GHaDP47pox6NH@uos4CUKF/1c@/TAe@FimW7PGf9oIjzlh/5QTcBUwtuJX7EGTSjleefPBELrqstkmTN8WbqMQ@elwC9YBlZy@yCFA3u7@UAHkJXVUiwevOMBZ0/iIBdg7GCVMosL0cZDcOlXFazgaa5Oar2FO7C/262RTVErOx0cfwyO46hlyLvt9a7syKBqbs/H0v@63tZNa/bhOK1Uv3EwjaIb5klFUMfkaFJY8wijg68DoRwxt@vrt695O/ZLfXg0rTASGiO6803cG1hhpRHilDeXmOJ8ts7Qd805JWY8p6Z8LqOpTUHdu/urpl1zW3V3SmI6SkaR2lE8hZ9gahVRhV6WeGagEhpUf06WK7AZcaWCQQJikwvVrdzCaAOPHc1AjojXgDQr6X3jwGFjNJRygcn@sEUC2myGlxcX1QxakrXnpXtmru0HUoJejOYiyblhSaRUWrJK1Un2Np7iPU0VLqk2x@a3bHfSZ30vIZHPVnbMbq21Ia9kaj@Eyme0mFLAbgV17crEBpB45QcJ58VqIW4w8X58R0AGPixf/GVonIhyl/luCiiV72bDaWHaoptMptG/GeHQ96I3EdWL00FSJgXCGzEHy2YwM6m84vwaTnbtgSuC3MOF@lJRQMojlWXq0g1U7WadWBiNIVSuXyFEKg4alRQGMQ9gS2SkMesiEZphkwZZ6dSo1d3YQHmp1ayobt5BXuDoXothAgpYcjLj8YhNg@lTsJhE5824oCno7kvBxNX87U/aJNDM9@eqKmQ3rbOuNCLE6i/BT8ZqOPlmL8RmWAaouvdjxOSuFer66zSHbTc1wW5j8qXvEhI7GbwyM/LICmVqpCUJ0x2By6CMDLufy1zMnWmNIhDV0oyCt8Lr7WmSZQNEVOP7/re/GKn/2X@PjUJIaNaGJudGBC6stDohXUKMBwK9I7y/604DFaoHt2xT3YKQ@KDdiyZE9cTTrtbB2slwdzekUXmOTod@IMCEWCfZbqMRTrSjot7AYtFFA6EA2V/001Y@MM9OOLT9gpqPOLQRvTZmLTSL@XFHtIMcbpN5eXAeuX@xmdN74iTzqPgmC/vYHbLDNJf7mLmJ43JFGm/TXJuL839D8qAULGvg9u36XUZ@RcJd7tmnLU@7uMyygxnkNl4nidXfDWTpUrRyIxB2w6qtzu2Pv8ZmtZQXEFvoNBHYxVmbEYrVkezV7xFJOr@T1YEPbcK8j4@g6mWusmKobVQcAYq7D1oL@UoVheQURRxoK19HCPjFcVMFyC7ArL3iJSi8acOKxUWZuU2DRpH2cB02NKTLs9UTUb1HivOq1FtkpTOPfGZ2nhteavYu9Rnw8XwStJqprtvMNpRm6W2XjUlWXU75pXZcP/ZmbXwyHS24q18IEBt4MW4XwFdJ9c0XqQgZN3V6WNQFOv6vzQDno/GTvQ1mc8xNvfHy/dsudgyCUi5TaY9D@0lJ1cmP1LrIRWFmpo/icF49mpmtzvUxvLrTZp9d3QmLCu4QZ1H3xBZT3d5GCr39PA2YQc9DEEiloAN6nIOWugB1fcxb68DLfq2nBnjruJGhrHNiH3Z5w1xNofT7QnoN@d@OzLzZ6iLbURXjXZ0DSIwN7GVIzSdo0W3VTSSaD0QIyDl@2HENDc6qDeoUTu@ZoufS1kBTSvjasbX1uCzem5vySuRMw1YL4@aD7epclhwZVwWEmsvQnQzDzCii8ByWygq@usMk2sVUePSr5ZML3NMphysZNPCyEcRM6qZBe6avZSzqg0h4jt5Ri3xt3@XltrI0C@LUcpmJCdNZSGg6y4GjmmybWllGmN6T4dFaxmfw64SoSu4XxAIk1dsZMAsmy6YWdnURZLzTLzT50qhV0KBshntItBr2ac/3ypPeq1wEPXdER/1If4k4ll6s2PuQhxLjv0vLtmuvrF5hdxxzFvfbWLZ1jYtcHY9nZsUPVAUn0bnfVBGzPHIIHCiBGEIKGDnLQj5AbuVXsPCVfhM8O3RRFaVduMGAb85brbRHID3c@H2wuB@NfsuOf/1eiW3lAteM@wgNaZV7MqTe/u3nW/Hv5WW0gBDBpMEtiQln2qbBPThi9BRe//DFNLnzcFkWRk@1N70oeFtk9OJZ6isvhjQiJhXcRvXHbjazHK@n09Zz4wempx5dyqq6/Ld8QTtLpfBAngLntxDHtugeG5zkqV1yobXjuul1ajWyOHxhWWxv6csdtfjSSafl2mUOY5Jh1I6Ayb6EUu@PUBnjG4NV7fvw6MsJZ@LJl6yLmQIi8XGmfYOD39obcP35U2PYr3GCdkORrKQvq@4K/RS81cfqvEPELxbKf51@wG01CWUumrzfBhvLaReJhGga07P2C@VtEigZ3/lsM2NIHftVoDRApFH7QN2nTNcH6C/A0Lumrjc299cSpOLurjLMhUBny4WIPzNO4YR7H3SohlcWW/yXNnLZI3i5fVXh0kZM5BzyUG67@YkjWqIVQ7kJdF9ys2ydyaNHXUnrcoSbCtRtRl4FizfhuODmImnQGrtOhF4J5Xn1VjoR0RGu7RCq6DvbWHKPPg/XvIkzt2OX7Szz9PtOgBjyaJmvdoYpDavRdy8LpNQZjl0OIavUfAtBRzpDR8Gl3K4Tm4cjNOEZRa3xMEadXUpkEFsfyJXAIflqqm2i6R/cczzaOlirFYdOGlp3HRjo8a9FzXTuk7TWyxn/lu2SNWa70qCr5mDl@LPvypIkUsnwplUdvNL0OtNDwGJwfxL/@T@St8@hYcuvc1Gd5gY8Uhgaspqi1wFFcyAXNDqGjuCNkDYDDMEbzTup1hk2QAwc7vFyZ9Dl2r9Bz8C4zdk675ktcPMcmKqaJDBKIiwcN8lIW7GDCXS9u363@m@RrMsGcC14kvvOqNBP4KaG5q1AlUUZ3yIDyyu79al1F8gmxJw9IX6FYliY0DRvHkj4u6V@qEX/eyYFjX2ZgSF7pNpL90ReyNtxuYx9FerOJvEmN@@rN2o6xVFrZodiRZ@Ndt1udf5IBGgv0NuJ76C/VXUw6DrApo@SJt2I7JmpU4z7ZM4hjC59NJoddjOwWavT2o18elTCuWuV03JuZjOp/dykvHip75ZDsBqUHiyDoZJ4ezib5YBSS9x8KGPXGcdRaSp9N@pYMB1RydMBBy/cwdVQGYO0S2b9cgKYrUT@wg9pKWZlo2zriZPWiFXoaowD2nuyieOQWE@SJDMvHN6VZ7FafZgSAe@FU528XfVOUzQl4u5JGpNj2t7FmAf9aiU5MRNTSESlKWMzVoV1QMJzp904s9BNGo2rzKWk5mvuXENz2sFvZ69Z/HZjTYumEU93ntZ72vbBwjB1kkfWzslJUu2XmzV8wr5JDCIlUKLF2y3dthYtnoa0Ub/r7LQ5cTSfnxE8NkCOEh@JJ1M2vc346qs@5p4TWMXa526ZDTdE89mNwGCRGoMHctqJBVPpB2lkQqeMKuL@W16y78MiPy@HxUrLtUEAzsZbSgO@KyR6Ste6m0nl8nM@B6OyBlF1x708yeTGKOJLdISRA/Zw6RWkQ/Xr9SHawkhAXohw77EVdGC7zYyfXU5qN5ib64DKndcBQb7YjaC8EWipZqjIzc1URnkc4y8fk/b2vya0qFeuotvGPi2QNSeGeOGXMK8lRpkKk7MPaOq3Z9tp5Yiwh9cZ77/V6GPQHPL25lEZLxxC6wPKtwzzzIPQ33yqhgKIPrtL2ESbE6XizeovKweRE/pR95Rd8HNGNVqIvNZOHK17B3X7Xr7qtd2vGW07ysGoyRn1MYr7ZHCnvo4W0vpkzt44YwB6njHM/gDZyacPaPLoaPOYqgMU@cKaLP594aApZIq8DYINr/0SB1bPJUhg6ZHM7zJ1tFV38lO5imgUyKVwz50qfbBoy@qKktgbeeDPT1Fd6hpJ5d1ctiW12aySNg09T7GtcMb6Ty34pMj8rX10N5iva@RlAnV4dyC689L5MOzdjtOWYK1Pkwn66Qq81Bnjsc4FvytvpPLQToss07R@pLnR8PQ0Xzh3Dg2EknEfrwS2UrZZfjltkjtOYh08V2/6M4XpKaylX5/Hq@ZTRunIiG2arLL2EekCCerxOIEhU0uf1zjnESh8oVbWVQzSRWBiaDZAOnurhUdWy0in6Aggk6viTsB7LPMaN/UVwCMFsoCTi8l6zcgSvvzOoapP3gdo1uuF1RKFgoIq20Q6BfDNlCQTgVmZWpM8pPp9VWpNl01vMF4uIXIJcZ2GFbpE/awhknN4svDKa9lD4JA4OSmdp86h7SWJNb6yiPBlV@46JWvBIcVd7WiSlIVoAqkN4an0@ii7NoiPa290kk7VjpH2hKrRakpa33ej3FGCAj6xxzWP51UVTo9v3mxySWesEni@2c/jKjOlXo3g0725SxvenpVP8Orj6JE0Fa7ZA3r1XlYzCWm4vI/3gX7oGdSbKB5rmh0nmvMzACOVHz39kOVv9@tBrcVnZ2gsXNU1uWGsuH4cv0D/3Cne9Fgxx1Iart69vacq0CitUk@dDYX4Ghdz0EwCv80WbaJFCnjK4o4bkMAH3qxXK1ph1GKk5ut0JxjPvteKqmsLb4l1L5mJo4Vp7/ZSpXfqms1ccjh5YWzZsa3Hpahd5tYLadRjRiV82i3KLqkYqSk@Iqx5Rw8K6R1Xk6ylRwgL0LL2pcl78gY@3tHgfqrDDXb5Op5l/sRamZ9prIn8epSf2r0/41tFf5/xaazX1cSq3rPOpDOFWqkv6xvjq7k@Q4RhnNoiF2YMjBu21gjDdXVwKByP7bXetAFY0WLAmMEuoa0q@XYCPp9YhIbgJiLEwVKGoGWu/e44CGCKd05WnI1YXY9Y0O8C@sdlhVSoiABnVtoJ5wJtkg@OVUtsDxSxtQItg0Npf2uaPVsROVcE1a58m7cI/IgrUVPOzE2INE2Hvm9/izTy2BBeh4HKbz4IkleBr8aFfI4NMAQAkzg@hG2pKSA7F0zdRemtwdFVtO@2a4Zsqi3CCkiPaXAnC7Y8dCHo3XYPVvgOSB@5TndoLFomSYYsw2wCn8KcshJwQhL9utMrqg6Ei@vDEJe7RYyPQkKPkJDf8r5@9O4QOCK2LjwpkkTM9TANSlUfkF3aClzM0/DX1A7GRiBIccR7YRfsixuHCHJ5fdbU6UtkZepJoCTWrEqRunDqmDvb3fPuq5SDFuXazZnLrVDR3a2a@IKtiovUuf3Ebwq9uVHobpotOIXVVW826xPgNqaC4SG/UrSH6szrLk2UBiJij02ddM4L06GOze9x6qWN9YO4OueNBIPiHyEXkw5KGNAyPXl4dUIX6b/qJo@R6kdN3yJjeW@XGkKqbJ5lcjtV8olmXZnx5NQy86qfcxwc1oZir1vRlKZ@s44yGm1F12RR5Z1sstGTHSkKPaeE0AmmigBgXF0vfSPcSXZ4dgL3TTbnQAAZIUDZ7CP7ahYLZM90Pa9XUPyzYQ@qo4TMCGSFZQKFHBrvfRHxNukrPF3VJOl1PWPPWKbYkJQhnbhcPivIj@f4ddANZjTDYxgRC9EVWnS38730gH/uLuZN@TBGE96SodcwDq1bZ2dY8/Fwviby5SAMYrth4tWOqjGtOan1QYoOpx5xkMYeya4ZuLu3/Sg7rGlt2X5CR3Mtn5FBPzT8kPNBWH1k23ZYE0jzdoEidWPSZHJpgbFKYglO/@adq4tAJU15dG6LNmDCCyzkZsnkCvjtE5NliramqCdLUqdfj8FkCplf9U0FQROBqWFYwQN2JchqTra8GFJ4T7Ww8b996CwZ6Fw/40kxkUsQuhOtSmqCxvnO/vlkKKDl@u0YgwU5ZrX6@@r8Ig9WMduid@@8VGBfkfurO@ftVT4UFD9PFph9ZV7D@gamS7HVvzipLwLMr3kGZlYTj0rOMfzrZYD2qRb0dcv4ygJ9qlfgm63Oj02xgA@uYo27KfTdIpejIEgys94zZVwPTtKbxOjeqI3flIjCwKrznI06rC6rjFje4VvFwEeF59QdqMYBcQ/ziPW1NldMnZYsfH@n/bdumS4E7sqUZ16e0DaFdd9EYnFHPa2dr@z47pP3BruoQ21G9OLSvoEOzC7GWYVJPcNu3NoEsiTISNMECOAZ9JWtpHEGE9qOlKcYyE1hxkdvLYMBm0EWsFCP33SSAuBMKSID5Q44z0urfK/UfwtkRgqhL5/EK0GbXSXtWV9DXJ3fbyvEVJzDS6GpH9O/dh2cYJdK0Rm8lrwMMW2al@CuG/C670HTxFERqja1NoY5Mknu0ic7Rv1MdE9awMAYCSppN3PYyJTQkDvLFzz1YOFjpEWNEpK7z1YUKfRuDl0tvb/OhDEzet0DPgYNNHfImwSkXY3ht6QUDa/1bd@VO1gnpZXt0mGSHQT1uQM@6TqsDw01LrIK1fdIKpDfIkW0uQhK/qHAl7LKO@B7cRiwht@3ALZ0mZXje1jamt2HsddClT@N@XcOEKTqy0X1bzPh5AQn/i9IJnFpneoQGagjhl63RaqCEC9E3dByqW8C6hChubwusRmBeiSdocs@1wpf4FL1aLeMYPFMzK9GG6HIQfW8Q3X04r7JQZ9Oqa/LaTd8NamvqojSeXaWUpg61VbjNKzt@GFVFxxloG3hpTxpz9eidwYRHJohOh99JeCeVCv839PEQgP71OX9wX8Q6lYoNyrbqmqzChe6Lq1uNIxmMfubNojKFj584h@v4A9DRi1rFq/VkmKlaMLK2FDC0AW0JpyiisM3xXMDzUrDTo@c1mcss3LPZB5Laz/q8qlcM2HSeyIsUr24@RnxVk/SNww/sQ@2yN1jT0Bns6SsLLnkmwVnWYuL7/coZhKSg3IvsPKK27NVBB9p0rXBqbXEq3fHgd2BsOt@uxWGt2wD5xSQHqKoi7CE1@DWLx8CdS@KoMR9gzNMUx5AZPkeiYe7@u0kNWxxtJ8Q1AMIly@G@8tqBI8iQRXyRDsXYE7ZytoMbPUuVIXP0Co3ee50WEMNP7lAdcdySt6vO2ELQj/RvCYFvU@ByvbG6fPmYpnTIPG@ScsYY6DMPOtA6UoXoRHTTMKrA8Q7Y/GxuIWpyZ0gWSuowTyBqqzOoK5GKeHobPWbXBpfHEEttcZaFITr5/o0A5ezn9plSoiGfhWbLzFXNDipSiypsJJQEjLLdwpz6WuhJHXPL5ZE74dc2lOw/NZC2nS1E4/7HHoJZwuZbW8xcQ6WOHnIo51K@KK0XY7CvsLtC4lpLsBaH5WHbmuSAnFLWtkjEqdcH6SbwLfNzrmkY5oAzbStCpt11Pr4GLvwHsNmoHo87@num26cXyCfRitG9Svha3Vrc6yY533Ba3qpy@Q1L5piLGzBiiN2yrl1TLF3ejbEQ6ftrnuA2baSkB99QmHbpKm4IFj0jP6seGa5CLbBBkP@cfPd2r01@0I2tlbaruzYjLMe9raYKYnqsyHKGyuleZ1pl@n8XnQv6VD@WJz5SpyKT9XfXpqdzP/Ewc6OpT2y/eiY6ivS7e2QYakSWmeKtHy1AYfZM/wUMZZvykpsBIGfiLzE4qu/chg@zi22hqd9cTDalA2@4cedfj7JPFuiiaFyfJ@e5Wa0K686KFIcvSq6qErXv19P@LpyfQYFn0MiY4E9Jb9bnAPGNDj7u7fQ436ZKmYXaM1AVLNBoVhqA7yoAse3uhWm7Jv9ClJ2rgSpvDRhemTDloCNZeR8gajCuykL/UoNrDAqes/89bPk7zJZQwHkPc8gi6BgjbLihVAfzRZrdgKlDbYtaBHEHZz4SdzitdaSlZ4oY/lT@eU7ZyrfD9PKrxcyv3TEiqPbNOuDJVnzUW5PZ51@WaeZtJ5vd9sdZozJJyrQ27z8C4bf6VENP0C3i4Sho9TftJaD@Km7JvPl5dffWl/HPHfRI@xOvv4WYBeh62EJ30L@/KUcm@xNR4OMt/IQFm0yGPfy8kav1su56sLyyR2@saqeusakWlc/aQnRUnG3LI1SvHsVXy0n9@uJfRiHq3XtXh5pL7cSlPznjr7go2uMtuEeIjSkW8iM4ebQozWqQTsVXRIEfO6sJQOt2xztykHRyxPHFjEgKUcUB@@3NSyRjzx6QjMg35M5pusYouHeZM7KnVwqNeSQG7Su47ym/vhvuRraiHrYqbTvpewQ@LrIe1c@49mdawu43gG5O@xjixPYxnTxMud33I4jxrlututZgGtPSp9Lnt6BaJh@9IxYhMBuVBctc0np70A8bls1NBj3Zidl/J0nsNgJ2xvWeTt7ou2yg4i0eUe/BrWApW3O04RuEEN/cAR0tInosyO4hjwGT3j4x0x3cdu93pzN59EdVxYswT6XIxwkcbB2MXV0/v2axyqWgW7SeKatpIyZqnOWML5vyJtSWJRYDU2ydIgPtFNYLcN6xqbipKMCxwHXORVRQ/qv0zzTIbcMs4xq/1spob0pxy02FBb8msXEODe/PZSbCVWSG0vTwlWDuTfgXHd/QlIwb5PX3/EAI5zGEleCGmrNptb77WakVpSupd@oxJPrR4W9MP2zcV47X2IQzJ6J2NwKujGbxVtCTZe0m9xelb7V6NLzjB8xz7u1S7rIbRy1KAZ0SS6XHKpseQd7LFrkLw2H61OrjMTJJp5lmeE4ly6b0QnGt1CgK/HHI5vP47dqpdehjfEm6BXnbmzjzIEr5etaA9p1A6tW13kkxyQJ4I76LwDfS966Rp7oLCAaUxCjttmjT5GsiY71d4xCfgzO8oo05OXxp2k8BJJUN9KVRmpM3l9TaMw1IgCJY/t3TuBOtieGcAmW4U6Qab8FXmgjKf10rEbGNKCd3W2zZwXp4RAdDbxAHY0a1qqey7oogKVSD0ocQDOeYR@EKzBSOCMIN/xav3xnjVkO1SMB3YN8q@7ChCTNxLKKgx11P@RrLezB2X/yOhZ5qOlo6T4iwsjNydwG7T57168P4BRN99P78ze38XMIBk3NJu@HtDUqLXSeADoswqQ4u98BkJXKrGmw1C2Nj7wbvJev3fGQg3su1bWVeSFyRbPSU/055jNznnr2gMmIPZsNGtkaGniwDNGvXcgdg7p0KcjoFqiko3TV3CAN9wNW73vtICuyXGZ0C6JBHcva/e6dztXNqMOCxTVMjDm6vsZdpUvDOH2ZjSTWc41AY/7WKtlANZkMJ/dCNHYK9c/dgHcIeXkOBNlb5pcOg5gFzL@eoMhr2QjCxXvOJLkuSxvfsQjVjLJil822F5Y@/8rJfqavZwujkiWERRpy2Y2G@TLEA/gndi011sleSf2KfvgdhN5dq6KoZf1t9vKldDHztWDi4sl1Rp2uqNvl3uMoHl3LyJWORFhlDA2Uq@SUrJDhGUR2gG9h/kAiaqM4Qt1C8CkT1zRcGoOD6R/N@b4AZd3SVixuPBy8lQqrsrXnXNlZSIf2UhajWd/E5mvu07W8xcrBDdVwDv5QDGWdKfo0x0NsrUnLu9Lcvkcmed3YkSLX@QmQi98nXc9@Rdl/4QyBQzCBdI8mXZVzeMdfj1ECreP7ov9BxeCVvd@208s0TVjRmTNjK3kKnwzi4F4pVKj2gHYh61Trgl6RuxJlTBCsb@yvX9PQrVsxVrtt5QjCLu8lEt59ykX8IxLwQOrlpr9qNx/3/D0CsWJ7Yt9h/a1rEL4RF/pDU129@Z2F1e9HOy7hQdXNLMNcjayLrvrovI6l54XBOfMN/nB4Nu0a2oMkJDfcJPL2XJ0r8BlSWWhn1kSABb81924bEgQhLbEJvd6mmPwBFbW6zGZBgNpg5BMUmdqdWh200Zs1Ha7UFx9biJDGDvk7YzpGcBsI87bHIuFS/RtyTrsTyVGsVP0Op7S95LDpWmRc76U8t49Niu9oOP1Bg0Q7@OGUg5PIg60Y33ms/fM7ioVVlcaJiRXVueZ2zutX6HRIHfkZ@31tT26Di4a4Dfb6SeU9qhXR8jPNhqqCUEvhy8DiPWFjM3CayzTaIiGIIB5h4PsN9NFot2rbw44Vmq/g1njuHKt57tH9lNTKXA7G7PE82OwvKNIMlCo1RD3yIBvRh8RLA3nJYp3Nv8aQEYxXxZh2tb8@ZCe18nTYIYiMyvT6GykucZDbgD23XzkndIWbtph@HDwJK5w1BSfMCnGHIZoPj8F9FI2fTy/ksAuNDXlY5wOsTeyBC283MTTOlou/VdgO3WWPmUj6rmm5mREjPvKHBL@vDS4Tudy4feDKZxR/ezWMPgISLqkZZlC7JJ5rTQFPv70zhiMXQXkKY54hHTv67gc9XdAcEb3vN@JwNEvGYSyMox4G0eGCibPxUCiuiw2T1yB/jQqPfiM0IUrDfND0@LwA51Ydeug0AWUKh8f/NeRZfwcsNvmNteuoMMWU6fUumAlQq0UUGjKJ/LGnvIRzQZT6t6HQf/Qe@n@0HoIsRcXFVx4NXtP@x5l/59xOoeuil1NQWtCcykIex4/9gYRWXXa3XQaU37OCtiuAvnGoQHJeFr/UJYRvcX1a6xEIY@PQud@6a7n9/OXzIcVMb2T4nYNRROtQDikKmPA77PapkjoHyQe/9Gv6gUzHB94GTZbrQ0kqe7NjDnRm/4rg9yhDISQQtek14KQ94MTLION4WyYpCs3XfqeGOqX4qQ@dwc2UebluHnzXMNDvG2E/j2n@OxLKzsov@j0GNuh1CagWmkztrEDEDxfEpZKtlSvzHGiuoqUyc3T4u7St5E0POYn3Zq@Eqauil/DV1/xpag7T5Vw2LEjAp366gR3L1feyAovXAvzIatMBqpiITOZ0wid0qLC2OS/5jmI@Mmkna5orMCvdrskM@gxra6kH4d9n/HmOyLVDoddjq4ph1BPJGefgJuc4NH0@C53ohaRZaWzsac7dji9rwlUQ7xlbbnjFUn@sxHq2yBscnrSFFTmrc86pfFvQm5N3MxAwZZvu90xW3FIfHZUEv8BcheF3oiIXGFdcNXRSgnZ2UBFr1YpoXTtq5y3mVT2vMy3ZYflicmvK5CDw20/g8o2yF/TqrUg3HKWc59boTDBk4DWp6ZRTTInlr368XXP1mWpBlWgT9bpan260Tfpq72IXPc/vtZgIQYdYs469ZSznlovaIZbx7SeHXIdguh21gAossG@UHgmSCoo@3c0vdcGxVLIPkwjoa3aIwPO2aDoSTAbp0axovzCZK2IaaB31UbDN7PN8sAwLBIsGx3S@IxB3JfMT1TEInA9E917OoGA83bLeZiLKCL/V8CXKZkacN5X5GZnyZWum4gapGtN7GJuS5jJy72VJGpdLN3ug478kAvne1AidJbClza1QbNbsHtp9ZWyUL3D5eHm4nGew6A@31f27LovNB0a8xDV5omDK2/oMs8mMZw9xs35YddhxtEY1QoytnYZl62sWrcf8yQ97HZaN8DqzLo55gnZvHVZYDsKB/1XyDvHBnZzbmyeYJRiBBLKlqI3Du04IE98nNyVwmOIanzFvuLxKzEXzHduXS@O1s3qfpVHk0/eh6vVtyRKqUvgud3eOCx/Ld8KvrPYez41HeRiUQExSzmwS8BJdNA6o2mOA0nDWLHFWNEgaLdOuB3kCb8goWcsLRE8XGpTBCNyzx8pPl7cCTn9/p8QSNDpLnlLnbKAOQhRExxPdbyft@PVZ8vgStxqq8KD/GK1u7eNPqy7PiERuMgu6tw5zO@M2slRp3qspH93jnWETk9JG7uIU6qko//c52yERGx4krA@VBfUrBzK/L/37leSI97luNX2IvWjKHLhzyZeDWR0D6Pni8@noXVzUZ2wr9YivnvgazHQ8Vbw/v4aG3z1jWyqwCsgSFEVYf7udG/yURfsd/w6BKhXKXIO/7JXSdqqJL7F9/0qA0YgMQQFfou2tbYY2RLzf@T84sjwwIZdTAy7fbNSARw57rIxanKeGcJpoulNBhHJOUvRc2dynyBKwB9/v1DY/EDVrOXLwVRiuDfTjHu4w3VwNKE5rmLl3/@b@MRhbmuzeK8vqkUzduGml/7atl@ano@@h@G1r6nGxyupAslQt5m3HqnAS7wjSZvq6NMS5DdKgYL/GXDMHVkCrsNezu6O5O/YsbOpGdfRv8lOu0SPjDHd/CpqwyHZm@3gHd13Y@3d5k4qOUrlWa0qtCW3SNm5JzIz5tRmEuyyCM9w3V@CdbE9@HQULEfWk773SFnVg474OAj8rAlC2a5nP3rAPKB2aPKjk3cKEYActg9kFGx3QBa30TGHRQz2vdXyalajRI5em3DM/X3o1tYHWnNF8DYSAXbjl1yjmB6ePTlCJVFPWReb1MN/nx7E8BAUswe8yfr4LuRBKm/Y043waD06sFgRcf@qxzJlKH9u/4yYjDIocMUsV0fcMBCNk86gCu1KVi4NG529rCjUXy928rlWQmlb/Hh85sQrnoVnNyO86RIbG1SS3TBzF8U/BiMmxbZYxyTyzzyo3mV635V66o6QZjo8k8dsurhVe1JT2aPV/z5hKHd5GzhGXWp7ewBhq2MAgJie0TSeDL/7OnsgOvtReMJeLG6F7QQBrszgaNXIYQ2D@jpPQqPYi4ayOY8LOx34cfMsJk2szcYbmwih5095Cl8mH0@8pGrwtDP7N2@I6HqAnlQ5vPF7TnQqgjLPPicrv2RTy@QUK@0wUX7ofVsVdv9NcYOuL2bi330lAU0J/59D5XKIh8AK/FIlUGMYMCKSteMLsxTcEVLWByBDmvNSYoQorN3h7mi5oppJEfK7szMDMLyXuuDbCiE7dqtFglM8A700/e4pjUT2ZORedlJEitG05qcNQCevFl4QpZUfx9btVp6PT743oN/xKeEKio9/Pg8sMzZZOqFxnXDt@DmF4FJAf20@qvJw0pf86O2PVnqAM8rNAjmwkMS/Am/2Onb1OzeVBTiTdGpPbuX5rNBN7HJJNh7DhIuAd4@W1BfIvMuek04Pd8ibni5b1kGa7rIQ71UKJ8vbhiqmxJbrix7kpSucQ61b1@4jgEOElHhuc6gF3hlcT3AlNFyXt0Ppt9YlMEULi@tnV11fQYECbRjukK1glM46284Co1z6N8N3NdPAu@PujK8@PlbLfdjHeTerSh@sK3/3n9cLGT9PyAJdeXbq@U7ANI8TwJs18eZHJg9dJdRuoQdDDfZHsTbIqBR@GpX0RymN904U2fq9FpYLQE1K7Qj5tpxrqht@MQXAI4VQNQTRP@YJZHp4Nzxz0BqYOjZ6rjZshrqUjejlDeZ1jgVGzhXOE2Tm7wlqmCn6ncr0riExoQKzrRWsgkh4pE5RLc@HXjIZddwVPfQvKIprwcOoUXECBNoO0fC0nl2DOOCtH/DQOiJZusy2YLVuQiqu0t6ss46z0pVoWhpxbJ/OYlOYO3IPBs0N2rtcuQtrS4df/QmDvWKM1nsOqUa1qVZ3NGMf8qrkHfdzUkxO1ra7F8b2tRv49wwLMMscDvlagF4N0E0e3gvzduazrFkfKvKXqXrYqG00XOdTciQScXbUKDxuRDnm6g6BB1lsba5lBCeKhOhWJVAIb1YEP7/7by8H9OFiK8VJOefr1DiuhW95DNfJuUNJdHbTyclqjucNG7bkxKvwwnrgoP8Mx6cpGFY7WhBmOvd9@x9H8jlaIKp4pQHNtifxq6z8mLKI@6unW33iXX2k3VL7U57EWLMotNButIVmOjMLJ7IKfEYS3ujDiuob5dfuaY9E@gOdbYi/vlXyDupE5yCGL5r4WirYlER3GXkrbuPamCn@s8pGdYkwK3PDEBSm0hRsx@MJDOQLzSlj0Qqv7Ik6RtJ@/rTOO6l9gV2rvI912I@@hpuSueymm6aHM7KcpDqcM0@VjssgW1@5TAMY2qO3gzqThM89szcIeTIvXNUFT1cNKsnknhaRN1omMcBzjNxM2Hx1WtTOcqymppqcZLSNNwsdqm4V/FrCocmqwODAuu9ft3@ohvmd5SCwOS3J1Q6scnzvfDmdCWPfh6LUuA2bPfPPAzMO0L3T3Bxa4mmGORTbYh9xGthopP3/SSpFxNXYWeWHcjCIbvEOQxeF4n6/oikTX28JujrSY/ZEkpj2GNn@D56a8XJ7Sb4k/5Ad15oGL7AhLt/TQSb3VrOenJT3c3hjnKLUrih@R449aZapOcTnqFx5/HabeKqUJxFUmRhgy8tsq3WuHIoUQwGHUbQ2eU8C8BV0twnEHC2wIAduOblD6Hdqm8X2EbDhJHEVPNRf92pi/oynCATQMzBD2u9rralR5KMLu9EzJuB9o6SirW91xAwrjpRp0ezdzMO9ceIfklfNaqWXQmjjTy3iuYuRUGzAZwcm8MBXOKnO5KG1@J0ud07SYcXzPQeXDRGWrQ9NWRNGNKT/7nsAdkXvbRXh@G9rim/dhPqL4hdo9Jdg97bPWvh9em8i6Xpje7Zx9IMyxp89hOr@flKONZSZbinsNXJmbRVma/d7Ns2UI7Zu7hwI/3MsU@SFOb9Wl6s4aA6xgVGldtbt3VNWh4mzgNNajORrQLVgn0DrAQVooZBCMBRhdJ8pfXyFF70eN8@M/nXP1ee/oxnEzhHTR0JNWlOTM/oZy8gIo/N/510amfzpwvl3KL0c7MPS10YiauXxuBbrb70LdVqkjGcPiHPnusN29fg8Gg2p3mia/ikIEJnB7PhOlAkldfn2p@bG/MHDxbyzpHqX83IgySUALpHxfSZV4NrieGHGRiN/cDG0wXA4zSnq@y28JlS/p43h/cGQuWQ8UDih9mcKgbJgd6EXMrkMg3lwJ3GBV136T9wNjsdTO9JYbU7DfZJD5/jaXtX87Ol3aTF@VKGlFuHAc@JMdgIZIijWVIwHE/XpSNbz8DzLxNwKmbfngZVb@1s4@IWp5nCUkdU3S0CzURw7efNITWrTLNj@0sTLVSwfJm0Jzx@QGe/Q2H@qiSWR7U/XfmRe/g0T4VzrYKnHghY4/lY@dZHnEK6XF5y7My2rcqCgubGx2DLIiztsphu17eUVeJCEIOGT0Q6i@4LbswCMi9GTHcmxqfOp7cBbpuzsHacQ8Wm@jOKQDjL@NK0BFg2w7oP12bWaPv@n58vVc6a4qUdX248KufizrPKWc7hs3kK6uG7vEMmhlQW3KT2FMOV8MbaQ@5nULrmDlCAuBwqfQciXOs7W1j7RH6KzBtd9Z/a3JRn/mdSZ1E/j0kG/he4YqbUffJ5JB2JeZsrbdrXJm76xUff0@zYBQNvGJ1XSae7sQtxU3pR4aZGiw8NmuCpmc8fDtjQkczsvh2EHHwvWx9jSU/YJXHP2VzbssxlaPzzPyR1eMKgTVarcz6dSnmGyB4w463GWzC0swsWg59KdpuLh3RcGQn6h0@JCY2ZnM6Eh8Z5kjGjMIpsHgXu8ZMLRdv@x2rdOEIAjQ2oZrefc9olZfjnewJfnKx6WbaYba09hDiVLYfD2fmWxLOcIrOEKKhru2Mw8FIfJnfXOK/ukKRC8TBTk1@Y/eXk@KkeaFIneqq5Hw/WzVSEU@3fVmfZvooacqr5XLa1QY1OAxecvVhGUw0UDWaqS7mBgFaEMRaMyOXOVC47YkrqF@ZqA4Ttb27LxcPqQO3@5eIw3Crg9d0L5qxJm29JZqI2dTsQhA5hJjLDwdICA@n/WKdw42k3Jm2iGwbTjXlz@q4Z0mfcR5cEg8VbtirmWQ@TZDzn/9JXgvQa9LqoXb9h20x/TwlAwrLTPACMqY/Z72X9uWcRy6mEc/B@o44rr4aUeBq6@t/7U@zlHjOYkYHZIEVjozgXRoBTVKoLwH9g6Rh2mNmWJo0uu@Lkop3Ft60tziAFkYf2sA7omjBn2CCCQ9DUdTDe4kj6NNvJy3znXI2daL69Pyyyb6Vl@LC/XpeAWJK4OL0Q6cuPf8kc4F@O5ipKdHQNJjSEIMzNy/kPJHrr2EHB2o3xK2GqNWT9HSel1sobnylWBOUAWMcwuheoMS8@Om5WsFD8GZfDXFb2kka4Z87ECcsgDVboXDbSpVgjzXmoiHuWkdpOc25dbk53N/tNjoB@PaZmojyc@EbU1Zy0k9v8mBp18VsSlZbjVhVoxiaw7UzY1eDEucP6Mcc32HxL8930A94@O@4vm7@O257qDbN4i3rgxz50QeyLcTelWP8mZZGdxRncNWuHWV4VV2UEdON9ynmsDzldsK6v5b0qW0uQniPW6f2oMlcuBsylvKMjzQ6ys3VZtZwrV@dohgIGP5Pbv3lmPQ3uPTn@cxPKAtBl@KGKVnqACsI0VfPC96TAG1M@tgGz2D7vA8l9YqKboiGPMhTtt5dX@E2cVNeGxxy/OVbfJCMvy@/xJ9U961tzqvkdLoNWvpgQ3BWr9DECPOd049ezysXSCWh3kJKxRCNgy/BZRXk5VEzHHm4lhEW/JFHKx2GifuzSPupgjp@6v/09F5pcuKw0B4K9rAfLMGcs6ZN4JJJpkMi5876vt28qFBqvqrwXLdlCeccFvW1KQJIACOKqIF4o9DLfvEpgMxHyBpGmIEe1w7VbAJRvaA/3y9jWf33JzfVmsNcUsZ/xMYxwmKcmvfk6N3rfEJ9WdpUQdG88ma4cPmtzywtArc@wqRvtIon8VqUPoFVSXi2RLwvLn7giJa4Xo@2nL7fFW0cnc3ji/Uar2TmRrJncyao/SfdHCLQNQIw5AUHLkYYcqs4URsDFZwfDfJk7wvB5PvkuAS75d2LAx6lhZBq6y@r8Wbe3T@8UbmQLc5SdlQF0/42YrUZehZrqwK5zE8PdYBk9m77sk31xtTpCaudFMYupSE/XkjPchd/@SknPx6Zln2kSx3rqFZpEol3VHfj6vJLINFegc4Vv/Kvz56GJrp/IsecJsFGCIkbhLEvJUIKzas7jHvG9MerHP5sOrUEZFUaS2x19phOq@XqbO7aEW4X@/AD7pPOdmyrUhh3G@thoYvtOQNT8l658AmYUUkFKpl2KGwb49oje5YKss7dRF3x7Ku9dJRR6r4NnbkdFpIiRpmZs7d/pW186pp6RAg4vPHoB6NaGHA/N2lPbNz@qnu1mIC6F3z/WDEpGA2tLygjX6b6viPB4M@/DaQ6JIT8UYIOBsmD7Pm1KuA8NxP5qx/Jzj0ebhAhLaXjGXPH2DLfbW/mfLsyPHK8G0Xs@stdbk7x@S3JZQh2lxW@eXmrOXytXys9VGu3u78ySqGCZpXXLW/gym7buZLb48HmWFkWYGiy8CEZcmkaFe7z0Qsj6WxUOMDK4ezyrxe9TpIvaxTzPgt4m6TfSF0mpPbhijoj92iG9k5JY@H2bAf0d@BPt@cLxQOO5gf2YDsECo9a01oLFnzNJHhl7Qm4C2ExOs6X0s18BwFltWR2PF@E/or@RS@AMYCFWS72nUF1c5Acbb8EkzoIBR07eFR8WY7rSWuhSe11uNTINarZt/LWlZmT@S9JXM1qYN7EmcYzPDtdbhvziUOss86lRZ0b2YAa0ahp753tCDTo5iP6UaNno6tExyel5HrAh4MFY6BdiBS/a4nxYsgHhR8JXH4QKzmFFIMVu1cfiVXroSirMgPRhixpKYX4BlOrBDylpziEx1Nviu9VAmdMkwPOfd0UEJL7d37GwUibxOX2r3q1PoBY/jb9l2SJUtezSgZUgyHuVyL8e3mrXVUEopq4Ybxu3t1ElCqHtGyrH3JyvRSj5clXGM/5XTQpJ8tlyh9S0UhDSe1cyGwBbiVTM0ZYn@2ydwzHrk@cFrSdOOQYeLlOHm@szvoEvrcxsXJ/MMCEh9jMLltqq2hHnqutE0jdDWVJjdVZw01VEZhvQ06mQ/TthZYRu4r2eE0vKzunQAlG7XxwYsf@U1RmaHHk7jP2WHubqOV31ZemHYyt5r2WV8sutM1rEr7TLQmHX7rx1az3AXn9kh3Oe8Q8u9Q21UL6SkZ3gnc5fjxiBqCuVxyMPW/wDtsjJ1s4EQzOHjnTeWnjBZPm6GMZPEtkO6UuR2NdZkVSPnoDKU53CU@LpLQHvi4NrA5t5kdJUzl5EFTAQaHVkn06z1tsLUhS1PJE8XRzTaxnNjD90/hFoiytzux2Y35gKs0pm8TnzWNskd7b@vhG8iXlO7HxsfkKz6hfC4adadHOE/yj6rlBWccsT7Nrt/1BT3C@N31kYBGEBq8F/vy9FOf@74pl1YDCAGW6jpj4hvN4pWTfjgJp3iH6V13zpPWWBMj/raXF7diOfV@qMRBi8XgW6ilOp2OyHae52Ffe0/p4ieZrImb2TlisxJEvf4gKV5OTc74LCyz3xskd738ZvuDQXv2/hakrxxY/OZIzWRoeIXTA6bIsCE@yyTtLdJqNyVPwQi5yozv7cGdtbwwWT@G4iD7YoucKPbewGYQocKQ9NtXRRu9LKMh7FFUijFvQwNTgcGMs5NzgFuAw/Mzxf5eNIisiRWewzNW3AlBsvASJMnhat0PAV6r9aiaYYfjmMG2L3MuLJbM@GnpZ8dvMObobycNoy@Etgl9N/ztJ46cKsN48MvqYqhZL31cNw4cebqNJCERyoKekdarwVox7ZmgNgwOPmRAw2vTjY5LYBXVbzcTnYDaRmF@UPyIl6ZDCnMdCXjd5vPxIx80DmHqmoUd6k4W3BPj6EBSYMI5SlhnAQVyBv6qH5WGhypX9XWBvJtEEvYAIr3E16lavAatve2w6/NypkNYATbh6x68UsGkntUEExzP6JZjgGYJbpfsKXJi8uhFkxYwaNPG4alQEHdKtNl3NjB1s0eDV4JFbqfNHQfoYVXrQN7AV3XP3NNwCWFT56wqeVOBe3z14oJrtSAAxro2tOIFgqr8jVMOUulDtljB0HQlhtabJtdxVMWEukalewicv3GlualvBpxpJMzWb/vd@jeFUGzlvgKudI8J/MaFcnVFEKssMXvBXm672qLicZl42aWnHOocvGnm07JwosPVaUETog@vfi/G8TEscPs1k092juM3jVwOR@qYhyLDnY/7@VugmRoKSMGdSOM@JzKUv5GraJ2/9otitI3f1oz6CGREkllOyzIe2SL6Jq2Y8TkvkFTIXdo8pRFaHhArfrZixj9fQlqyIILform1X6BYJ4zimIrhvFoHv1iLbLyWU4Mr1LkUbt2fdHvK4gHxHs/MVjrPb8d0UmlJv/42Wx5HP5jmt4G2Q0CDQVb1K7aZFRp5mBp9PcLbPXH7BQwRJSejls6YgoDaWZUJgn/FwOH/pk0XOBnHQ64MtoJxtpuh0KNJHdg7RWCWCCnoYRfc3Xa@dofnxnuYcuZQpzKkh74tiRHAomcmP0ywBhpZQHv6Nor9tjKJ39dKdB9JrHJ7fxdMwta5XZHMJzznd5oWhLwp9JBmrZwh2kHLfb2oFBg/I2bDpwcgigpYFxate0r8qbg7DCrfzuGXQufsYGauZ5n2jXFld40DhJCvFJk5@dmNmbjzPro3EI/GbYgnIn4U3hd@c6cHv86zbYTmJnm7LnDzjfj@Hqo5BCR/u@eGZTPLFCJwVMrAc@JqaFSIdxkvwu8WQNzOCVJdAWfnqzOsS1vjD3Q3eMd2Gj1TAfswjKW2BnNuKyV4fFc1QtPKy7rqhBh5mgq3zvOna7XIPJxK4m1hH2aKhWAIKB2u@sqCKFL/WO/hTfVW@pPsWrNwGHK@0SA19/v8HvO19WWsvqphWnV0p6Lmn1/O85Yv4@EVIPXaAbOXCizrq4d7zVv1jTJgXLtWkt/4G0ivXlptB5m39Q3o7W8QveKQE3g3NTIOljpJOIFrsDjZ9SG0h6SB31gxcfxtYKtzZt/lI3eCl0jKAp2eufuNTIiSepVCqoioaes8@vB7XlNd3NrPxRLiOilkgs1QjRAj72XGdBZgKyr4juxG6QrjV7RX9DmQanV@vqumtObUce440qfmhjt7844LnfojznhL7z4LwcBdQdBuTVV0mswNDsG0zLKguMNq4qQhQPRTaXFuql6AMPKgZ9PuWn93KHd/6/tkynf507IkyomuNBwBxReFEUp7syxiYjGs0b7U0A3E@c5rAPFdzOsJXymu4vFdev03p913fzu6t9kgcehBzXGyDvLrdst7RfmzuVSpueTu4V2PqgO@qyApUWCj1mvcTrtXisZ819YeZkPlFUiSLxrCeTbc6CdByvjKqp2mM0Ob7buhmcbFTCGwpvL2dbqFYGK9ZpAlTerrmLpXS@DnD8z98WkriAlamWAWrIbQmk80m9/TVjPACl/lLttm6EPlXtndi0gA5ay5gxDVfM9Cqgx@oOrTmFix2KcbWfJ4bGmCIar2ZM47OoWlp8vHut5K3r5Q1gRcmituQV20Mrn4cmKBFQZtneQfvCPW30rhYf5vvNHQ5nl3ggAOltY5f1bned@GtogBDGLftE7zZh4oWtzqWqZGNdrBGF7NZGF5IdpCEOtf3EoBO48QveBRpkDuYoO6S43HiQIw@Pog9Or3Bmnn8bkdzoI0@Z3dTyu2wm8uIYj2rolRnvov2HFQJ56cOWRu4rw9N4pi8RnXWEwHmK/2HUdrmiA37Z3xRE0tYzIsQSwy3StOIyU@OrP2VPvmskUEPk8qnijz6sMovX791GqLIBdiT0a5rNIpjqfz2yXSRyOxE54twjbRiRvP5JEiYhTpVbpeFlwo2lanQHWzOM8v@AbY0i/hhUzV2G/dgBa71e1tv4mmhaa3LYR56bfc2Bp@8y7nRpTH1z1r5vmld07rsjmOckNY1kUbGoK4OMt2x6cFkdjMthuGkFCtO0Bv5ilT8F90RiFPSsUc12N0NhKd76h2vcdnsXkKHiWzfdp84UBYpGWpqJUj/Y3zim5fk5vHBT0l@8mUa22QvIi1@PFlHm52lN0K4WnTdUDTZ/Ykbx1it9HIJR4DJ48otEiNbFfGtgEnOeDr@Ul7obniPTmjTgxvs5wNeL0Xlr6GlK3W4HO/6Tbqd8jSLsqgyhA98WBgSENwmu4yDTnQ6lT1YkCT1@Ol@Y4ocGStLwfOMwa1IGsjpb20tjQbhdIknmkRL9jCOmirqKu427r8rb46/W6NKa2CgfGb7jU7eyLA4gOnOsDB103takBvCMDBFleCKvutt@Ze5LIKGzPNKRanhUfRzJhmlvoBnmPAumnibP@3FcU1JGdrKYVGm3snSoVSZPB1Ov@eVnKGdhFK5ebhFYqtNn9DdfVCzhFM43uezW1FfenOVlhdKYXNfwKs7oEdqRPBxj@N5/5m0X9g604/VmDJIOa1R6@ILzZrbosE9TAP5cpUUKSqeYy/iqcge@@pcVf3Am05/7dRc8VQUbD/544HAblnWihXgvqjSL2WEJp4n2v0857QuEdfWEMYE0BryoxQXTyp2lZrm6X6shWvrO4xYrxz1q58Sumtcxn2ly9MHc/eteAyRbdITMV76h3J5V21Wkbd@r4TViuMHFAZmGegeRXZoRID2LXHBI9jsaV60MrGrpmn9xs9vZgpLBBFaMtIUfNSuw5Ipp/U4L1xZmGtRcrtiVdu6BiXqCxI7bd1h@ZUV0FEQRkbfuebGNMUW85AJEUMw@J7HnRaoIlmjc4G9O4MjDJgOWcPglYqMxjycYtDmQyj6aUfr1mZqgq96wdSG7Z6g8fH65q/vyUy/lOjfGyp93HPPlkg@cQoSxBcUruj2u6gawi64CZcIXaCJwuPYUV2vqBm89nqSU6YMq0LC71@5mKg3qeQRZv3shAp222nm5LQJK/IGkF2ur0IBtPJ7OdoV72w80Ge@CrMNAf7ivA0WjmhggZT8GRXF8ylSxbOJ3Fob60z59daWY5h9z7pjB3S63scGFYkorcDqiRN5W1Cf2PIiMqbLfAqorpK6w50s6sge1bnZJI8blyhpp@6xaKnvJxVyS4vnN1TXs9v11FNjczRc2rZXaajCxOUwMR1xwdj8AX1K9I5SMBZBHrrnwSFn7sBaFp4Yet7hdS//gB5EHB@id1WegtHvTTgoNFVxb6KNSMQhObX3BR6NaS6PIQu1wxxtnw1Dc5DH6R85vLjebx0MaPDFArSx9LtSzTJAeEqQZOzOlSTU@309oZoOWBNT2rJnYjELa/T5aJh1ROqBTxV3Qh0JL4/Xf0TfHSUn1lKeC51tV1N4kPxA71/GFNCw1KB6BG4HLfVnA722vjQrr0noWx64gjX@ZItkdkNKsZPWtdjmBwShc9GzgdRW6ZmJLKKH0H7FdgfJWdhyusHqbrs/VZvcMvXTgzMpvm@TWIoE9hp6EAtRY0vqPJQgVBr3Uepq@NLEeozxAqJMJsAP1qaeGA2c@0iPxMw9nAU99kvHUzeb6LbgxiFmsiPqSAHvZc7QS8PAt/1s2wthmdbxx5kh1/RRduMlY2pfr8p@228dMujrf@emesFcwmSdos2wo2QKDJ9x6w8QXqST3klzGjAxbZ4LCVD@kmH7AsJXQbgg63bF2Tc9PPwANPH8nRuxqigl4WXtaHvvK702xBCd5Q4FtfBsMb@NjShqYtOrP3Q05wwGlRFlJitNvbivN12NObbqt21BFe8GRan/Mb8GGpuQRptueLrrflC@ntg8lnXiq3CA2NmORiPNav2BOkBKe4wB96H/XtbadBnLujB1wpZ9PXYrkHmOuBS7e80iq5UHXAjDMaHMcqfjzLWJU5Z5c@OlaWVkUEgrZKt7mAwhPR3p64ugyvJPeQUHwqntFw6c/MDjj9rZu6N97KteUAuucew7IfjKZLXjROhHOaJZZeyi2l2dr/3nrRcFask0/0LnjbvtupsP2vqudOUFvf31OYoTO03jycq54sQHcKQWNnp75KNSdFpOdiYdwkQc8cowlvybz1bSw6sPxa8YmhYMqu24MxyMDv@cbVkYps@8c1wxc/UUqlRjdeqvkNf9s@OX0HXpOsMY9fwOC1WR2Xpgr3h61slUTvIR9DsyMJ6rcl2feVX5xyILiVFDa6lL7te5Mpjj7QEhE@XnRusOUsr2YBvtfVNCxfYdRdciz9Mb4VF8DzFv1zb8Xt9PflDHzPMlMI06mdbx4ZqHY/Ddrfwyxu0HxUEvHqAd@G1DM1TBFG5imnRJECpPIJ0FqBmM0bZ3kINWi2Vz1eIs9PgkqLHaL82zeNkmn35Cq/OwhQteXOkuTwKsz8ocf1pkpEvSxSNyvfcZS@fpeXoR8dvrc6IzUJ2Ul04ta9CnWDpb9uWsR/NboH0hTWb3ruDKYijZCa5Vu@n9xsZlQZv3NiS7j0xZ3cSc57ZCk1FMu@v1dXo@zJrL@ySa6xsaWS9zD3HqR9F02r/nfqmWWYLGpq821RBB2JYdc1YsTKEK10@aGa@GLKWk2tYjBLRvh9qA0uZZGtaYsELoE01Sszdqy2if/N7ZPBIhU2HvP09Cbt/Oqm6Do7r2z8V05Z6XzfoEyGdBsU6TkYMQmU86R5LcDzD8ttoHVmvjeA318wOdP6Fa@y7K1rTBc/8oOnvAs93dE9WbQSI@lSgF9Ywh7sbw2@VJKASo1wT1YXj5SCrREwkq5xhyHBib0D/nWJX6v4uCJjRVsKDY6ZRWWcAeQ/37ivE8xb8PW/2CzlSUKKqLYr3AtwT0/OYZNdvTaKv9cTJ/JmUS1Qugl9qijW5I6agMHXrtplSbTa@rrRoyMmrMcX19LsL4p2J14u9LMCy2WhSSaamhQ79@mUb2JIYtbJ7NK5Au4wpBdfqHdS8sIwMkhks6Rsyojkeg2MobxNY2XSCAAQ789qtIQPBXiLJhPSY25aAYY@Bpn5EpFC3IHL0Vv2ieJvoG/zv5ZyhEbPLN69qbmMq3@V8f6RHZFkNNNdzbcIoiEygNGu6fb24CvjfSETebe7exPwPjyzoDzDeW4aCLzIBJAi1O7Cpg/BbFVTLl0QwvG0bO3Kqpdxdg8LTqnta41PdNYMZoyImqkRq3BfM8fcQL4ZBmcVxyz@wNGCfZQRDiFYm9JipXX2owSp6a2Os2gmsVYPgtL8vdP00aMCT6eltW4Cd06pRXrBqW263gas2E57N5lCp2n0FhEgRlRAybimyVIN3OG6o0o4R9pILwt6pWwmI5U097YRzG6Z2V@QKS/iynyWebncSOy9ZpLS4kOXLYNCdDZyZ/B57iuj5aR2cXgMoNHYSK@MG7W8hJcGobtHlSqxXRm3XK60Q7AA5ogTlt1MTVvCdgK5KPM@BWElmXso04MGjbfobeHXwqhS4oAVuIk3DuoG@fuocC5YD3gzDA19rqI1iQHKsifka244@f44vmht5HvYdWMvveOWs/Q1KWpUIdP89c/g@TDGdKDuvkUF7H8H7O@WxaQUkf5zDGxS1HSbMGDLonnzfbb8cOr62a9FOazi53zsVAvGTnNZxH0YV/xzpu@ytyg3uKOZPwLrRd1bQ3vt1gsZmPBzoo12oBjGQVs9fd0efjPepVGx/W9XcixwFbfXOCtn7ve9Xl4jt3wpXATqoc5TmW7MdOveKxU6awDSX2K9qa9yvwai91uKj6WzU9TIjfzGG/qiy9cnf4nyYGozA4PztDC70zyf7yYX2/OpKLNh@vhZNYjSnu6n@zcVUTRaSy0/n3cugt0QdWm547bPK6WFoNYa7R5WlrwpcI9iu78rW0iHKNGAxrl/t26@4WibEp7EhRbWvBcJLd8QHDXQmiasKSamgiapO8luc6J1n9E1CLkOteRB76sBL5428Ny/kaiqJRLE7mzeGvHs7lD6jvX9i6WZNm4QocX65jMW6fhBNINP6tY39u9E6KPYcAWVKMZZz1m9y2HY/bmT2BqNO2BlBkBHLSY@9i8vf8hZe2M3hjjq3T3TN9qYwS6SNDJhQ4jurmYqJ9ZszWWiCHKaZ1Qyvq84VMiqBNrwX/likSIEi7xAsFXHOOcVg2oH8dvcc0f73ZuSuohHw6axaHJKDXytyA3UV@bCMrquWnIh24@HL2CtfEiEXtMB8FgOKszSqq2/q5a1C@Wmdg7E0pPah5vOZtTJXTUiVV6CU3bbY6tUjODzX/bGc2FnqRbY1vdLs2/Lg1MIenG7DaoR@W4jqYqlAvHhWBWC12uJGyffBk4LzSr8DGXsnj/thpfjdWIvkkb@2LanEUo7ZuFAxjec@smpxbrcg2b/w2MLmuMlmZI6kKL5NjFbhWlRcw9eaS7SqPVdtEorXWexVIBtxKV5uvay/pWxpmEn4Kjanlz2@5qPaoiVZJMIbPlfyPG0slZOW8ByY1GZivuuksZ/o1QXG/@4qKW3aQbEHnZqNhbvCwPrWf7d2hA0/MXiTeRloN9jc/IVi2S46SMwfx8uF7G1LMlh4iYublW2DGoREZsOyE/vYihvNMq2ipPrGRcDElYMxWVvsJr8JYTmFyhLood6NAXYe@QIEZla8MOK1934RJoXWfQcrgezSbBQSRQciovXZccFBvIxVgf3yu5@SvJ3BJ/DMTpdqLlBEsrgpT8XxZh6kBHzX/q0AAbrwsXmp9isJfFbnrjYqDR@76nxF9nt1cq0ojhCFX5@@VZ8VJz@QyrYVCCybhuP3OweTVrs1CE8W7DQe7gIye7I4NCI950ZEgRAFn7s5F94im9QPvrozQBjrIQ0SSRQPOyN2snkm53A9JRM1VK6eB1eVypTjBNcKlrxUvM9LQjVWQvoWG3md42LPu9RlH0XTYZU6vDFVghkUdGBtAo5n@QJef/JghsdhXY/dwjde88w/o4lQr2DEe5Gw1S5FlWBUvTceQvKo5fcUv01v/m5kE35gyTwkCCzo11vTxIld3TFHSOxOYTEj4zyRfYqNmbe/N8L7lGwOmuuYDcndyXhxanPQt0c@Jo4KQn4@4u2SVcV4latVNZP5KN6Re4zHutXxvL9CTicn3U9e8I6jnVX8Jj2jq/I0VR5hKdeyg13MIP6Y4cI4b95XO098jEvM9e1u8/tQKFHwOoLJti8zfY/4ht1raycXo4PBtNxGJxKcqmn8R8sySFvE8GhQvBvmfemMRPvtTXbusV3wBljDSzUncNQChORUVf0AsvA6sAC2aj21GLxtfhUwuPn6TXb6qr6OoVbRQ4Oh8QNgRMje4HiTrbzcrT@pFgwfycp9y95hl2cu3Yxmk8s8yIvKD8XZsu9gpFqzxNWV5Yllb8KscmLhPiHP2iKgOZ@asEhwLk3EoF@@zYYb4kYb6uNtYQD7kutesF@wuPc3tQZ9RV@cFIrB5ziIWP7x3QfObTkst2mSBCoG8kmuXErPragaPn2N5uOG5olCR5@XdNcaSHn9EdjT7p5H3Ww8c82oy3XaydKYNaW7a6gecTEVO6OpLZeZdEh9h6@Hj2fovrBdwdO9d3ZDIEzWrjQZeKa0n5sae@DvBAuYRJUPEWei5UfcAsR391QnwBmdHAg8RO/HjrgA0Q/uvDMB/wLWoPFsLsjfK8a396K@DJmSiqeV1O1IyRbNY0qqLAznariClTOp6k9Ij/ORidrXnFKN6Q5VUNe9cxaaFqFHzxtxeE3q85po@VOJDWWtijF1F6b1qdFRwIYfJImGqpabeEA6Tvxpnbp@w@fvWqsiKhFzPSQff8R6TE3cOzlN9vmS5GrWw0S16dcJNJaWMowdOx5MfymW8UwakcPc5Cx6nCbYpb87vo/9RU1QSflhhS11y/mj7MjFeuM47XxWgcls7dP0Vr/FivrKFoNQzaLFFrupH2iige9ZX@V8KATOao@Tq//msHOkH8BJH6MIEqfnoedlNDn3DlbooSm4p50Qbp6Uu@E5TETnawTTxi/m0aZZc05KsMHchHVL@wlD7wIo20HYcL@9x9gJqDkehJmPZobGuOIPaxgBd6dILm9UNSHhlLWTZi6e1KRIupCZtmZln6iwzbbsWBHBJby1uAboF6g7Kpjpajt4npbejVWgNezQlYn42zVh1XW4WpQpNI9LvJ21PROYLGNxEYaMdILH600DgihrtgjaVRK6xJBB8wP5N5nmGOEezIPbawoR7Kvl9RqE8Fv89NApJcYaTTLtN6rQvPJ4w3sInevpsY8kqJf2yn0WNPFdo/1SFrhmiU3yhkqBmcSLZXVEhdK0ASnA8VzQh71Gp@IgqA3kHHWo7QBuEV7gjhMB5oGoq0bQaDfYdANrja4Omt2wN20FUYsN/KvHoxTzPqsQH/IdpXW@8YmpuIMU1TWa6OR7txB4b7zkH6KkV86jl4sPK/gNxnEoIYw8ZnxQXsmmTWOAbWU6sDGlvUzC9IoUBGkkVKwWmzzuTirpUusj@SZdgof9VjNMIhhmCG7fAIuBBqjxfinfaq@FiJy2uImDuXqQyt74EQ6qxwGTWvZueMYCa4vpfIabP/L97SQ6RkvH1YmhHF0zEDulj6k419DZTn0qHsZ1EzTOgpXKYFucAS5j1sk2Lb7vyp1QC7lWcgT7yczTMO9@qqqMkPp3E4ZJXbLacur0NaZDyq@rOGPe5m4z5MAdtytHD4z26xeuFfNCGq@P4zofLH8BCiReO@gNjE@vw/TSgomJE0K0KqMlVHoJH6SCUXWb2oFrYrAZNff3DDafiYHuA0ZTMAJH9uBkIhEe98mmLuWUUPQK8dPo2@bB@30EkTRZF/SsYVMOz0i8ztVfEpEhSNjBlcTEYHkOHWhlnMPg6/laDyccEemvs170pqRqdchuPq60EjBBuq6S0ZE765VFvq@wJMktrmRjyWZawCJXJLF/S5Y30RZa55f7wU3brNcmwYMtFRp/SrHPowF8ICe97nHIVpDO30ZMpYgdcknq0AvYQFdWJsAsMKzFuPYctAvMqlSxTq8XL9o2ZN2SnQjYkOowUsXfIceLAy9B75TuBppGb6sOqnafLG@RYcijp@7SFl4259V7YosyTcCWrSkxMcm8EOV3O4U@qMaiJY4TPMBp1Ct2c6tMWEsWB@58exwGxmmxAl1MWjJGciB166ddnCOKg75oi7EnKbswYTiuaED30MGXjC24z8ycVr1qP8lVtDqwa/9LSBRZa1jvZ3UQubR0fz2PJYmokUSeFIEMRz8u/gpPmDojnJ0AanUSKGynwLqQZsUudzgqiiWrfTDl7xVNg2eboErbDfTbFOPlZlSjRhut4EaJs7T8ND0REskPXRm@F6rO4u9IBJGDPagAMeUa33FnGzSvtMQ2ccLfxAJp67uxA/auIwbbC64uvSoNlkqJXJNnHv7m4slF@A0IZ78RCZJtCsK5gs6NUSXaHv/KtjcfF0VHeVy5DNbD/BZHSDMj7rk3My5ySZP0ip49u0UgtOX2Cd83uJH0rUczs9VWv6CeD/724bNDuJfIzF7EkH16wIsO4mYt0lMFKFl4XhHmJ0MQpKIJYA0xfYnQZ438rAd0PvOT@XAjCAVrsKQWCHs5v4OvS38PLJhmWPpTUEMH9rwyEJ0m76ETuQMQQzbVFfxkgqZL4q0zolOErDLCKPpFsEgkfAPtHgEGGm@R7BsEbOdkxFQi7RSCtiyX343L6Rw2S1og7rSzcsL6mbG6BfnWl7oWmXK3gmrU@4z5mzzROB/j0XosM@6pf3b34Dh1UXexz9CUWDi@MLhNqe2pvFxQr3TJq1TJ0Ru8yobv0k1qew8mIX0JvHTAgB3T/bRFKK3PyqJwSCoETJfyc/3bry9ZN@vbgCeXAnkK5QC7Pyt40qEWYb6dIgK0OiVzOUVMM0X489@yHv0y73/@2cq@rUnVT8X471Qc3f8 "Ruby – Try It Online")
Takes an array of words and a string of \$\pi\$ digits as input, returns:
Incorrect = `nil`, Standard = `false`, Basic = `true`
[Answer]
# [Kotlin](https://kotlinlang.org), 101 bytes
```
{p,s->s.split(" ").map {it.length}.let{if(!p.startsWith(it.joinToString(""))null else it.max()!!>10}}
```
Returns `null` if it's Incorrect pilish, `false` if it's Basic, and `true` if Standard.
I really wish Kotlin had ternary operators or *shortened* function names
[Try it online!](https://tio.run/##Nd3Jzm3rcaXnvq5iiy0SUAqzLhKQDPfds2@ASFPp46SOCJFKOCHo2uV43rlJiTzF/v@15vyKKEaMGPE//uUvf/zl1//8n7//449/@rdf/9t//fHb//Mv//rLr//97358f/3dj//yjz/@91//1//24x/@89//9Hd//i//@Oe///Of/vjLX377mx@/@d3f//Pv//Tj33/5y9//8Q@//ve//D//MX/9y7//8k@/nX/z//7LL7/@X//yfchvf/Ob3/3tL7/@@NPvfv23P/7xxx/@@Oc//Jgf@eff/3@//d3f/u0/rst//Md/zrf/@Off//Lrb3/349//5sf8xyP96Zcf//DjN/t6rOe7Xed@Pu/97tv@HNd2Hfv@7Nv9nsv2PMf63uv17u@73@e6nM@2vPfxHsf84r7cz3ody7U917Y87zt/eZb9eLZzP7Z1vZfrfp9tPZ7luc513575les67uWdbzqu5T1Pn7jt6z2/cr7H8qzbczzr/O7h64912e5lnR8/5/OW8zzfa35x297jec/j3Zf9Wf2redJ1Huy8rvPd9/kRnzP/OM@y7/dz3c@@Xud2r9t82vKuhz@an56XmOeYR77W5TiPfbv8yrrv734t93Yt2zE/vG73fm/H@dzLPP9y7et5zhfex/zPOQsy/z9vvr3becxn3@u5zyLOd86/eJf5oGWdT1zO@f/5jW055innO@btjus913d2YV1nNQ4/dM8L79d5n@/5ru/8zrut83Tr7U3n@ebv3n2WYl2f@bTlthz7/c4DzLac172f6/PMr2/zwM@7brOR85vPPs/wzrts77PPo81/t2N2bpbg2Gd3lnme@ePj2t9z24553Vmme/7tbGBPNn9/3/MK8zT3el/bPMN9zbc4MrMOq7/Mch6LfV6W5bxmK@9Z5@3az2t55rfnqe51DsY9f33ey0rt13zR/dxzRq45Ecu7zAPPa@zzUPOvZofP55wfWc7lfr3KZU3nv/t52Ml54XXd5qXmSecTnzmMs/nr7Mr7rPOK730fvnSZ9Zknm/2br5pnePvPM5v63s8y/@hov/e80xxSWzFb/JxugIN@nPNA17vMIs7t2GaBZsnmwDpnz7ns846zNbMhcyTWZZ2339c5dPsz6/PMyZ@/7rMo8y/WeerLAlqrdZZ5fvnturzLnOH7POcT5zHm@U@3ap/jss8CzJ90/15Lt1rIZ/bCVmzb9cyZnFec5djmB@fvZ6fn3M1OXS3SMwdgrto2R2sebhb1OeeT52cfl@Wa0@qAtLjzYrPw87PzXPM3c@usuG@dxZzDPEd1d6iOd9bx9nr7cb/r3Ie5EXMM5iuOuSdzoJc52bN@cynm4@d0zxGek/24N3OwzuW1Gve87n4f11zkWb/Z2fm15Vjm0eesrdc9W/XOPz1uzTFHYx58nnfu6zm/tsyrzvsclnyuxjHfxDx4X2dx1n/uxhiqWd5ZwU7CrJUfP@aX7OjBarmNz@GiXt/9mMedCzLn/ZlPmuvtK@Z/52fP671YhLFZ7M7JMM09dBLm@WYH9nm9e87gXKBjrNIcprlPYz7eeaGxJcd2vd8pvm3rwXqyDu9@zOLMbs1Rnh84bM98@py2WbVZwbGFs7pjTA@rNiZzXmvWcX7s9YnzWFZsHnTeclZ2fm@WYk7HWLw5ou9cr7m81mbZxjA5LvMJ75ySh2E4rM1Y32ue5WVQxiE45GM1Z@VWV3s2anbpnhUZGzv/yabMMWf957nm6F1u@iwf8@BczoWeH9tnicbI8SHz@ezV/ODs4HrOP8@HM7SHz57veFkAdn6uyuz6PeZoHYO4z2ma27IdjtA2jzNLMC88R20uyFzrWbFtGws5ZsXx2Tz69cwuzCWbOzWfurQMs8nzT3Pk5@c4t7E6Yy/O23fuHf5Zhvmh1emdLTnn6nEcOy@1zC8vc5nm@2dh2N55vM25ZHSOfNZ88jzWaZfnfcfAz0Z5MpdzDPhu@44WdS7XyxaPh5vTOMabsbgYxDnWY47H9M4CPlZ8DhNXMN9mBebqcaTjnK@xSmMa@an5jMf2uiivn57zN@Z1nvSypLv1mtM954ehGWfrIG98w/zcnMr5tvkEN2P@Z7brnhM1dni@Ypmtml2YB2IAF6swjz4He9bgOMf7iQrGrx8TR8xijD2fOzRhgSN4z5vPK40fHsvgq0/m8MjKPizrnKM52HMOxzo5PjfXMk5k3snDzIPPf@dSz7Ud0zKndTb87Ytna@bX50vZ7du/mt155t/POR8zdfCp8zKz6Q9HN@s9rzyLy2zNbs3uzV2dwMbS@ftZV/dhztgspLuwnmzzGOb5@znaYwLH5MyzzBGcczfH@PT54zx3Yc42LmWzsJ2BOeHzh3MKbL@j52DOIs6KX/dnlh6mmPuff@cejg28LrZxjv18wHkxYmMYzs6UiOAWrcwCj3kZez034hJ77HMi5jiOobgvtuueb5kYyK@Pw164qbkHE73Ns@8CnnmrfVZ2Hnd2wvaf7CdDIwKY6zLm5hHMzB/fueexakKvx9kaXz7nYlz@7OXmFp8WbazDfDgvKmyaA/Iyv7MTY0SeuXEiESdpVmEO6hgh4cFY47F187Rz2W/hywRLc@2Y9@OY9zj9MhtZmDP7MyZgdwnm59ciiHUulZBl3nWOw3zCGJkxenOq54Hv8fMTLM4X3LOxPOzcj4lfJ76Yr5vg5BY/jS@aE3CN/ehkukXjHLrSEyGN/ZpfXx1CbndOwyJQYmjO8VRz9oSpE@aMH7oEL1nnPPDKst7uxsnZMwazZ5z7IeLqOnXrn6xlcchrH4R7Y@/n0@Yr@Yr5qffbqbGHY0PGZMybzumYMM@RWrh1YRJLY23GMz6iROvtEs7b7Xzuy7jPRk3YcItivPg84hzde2fX57XGavLvs65s9pb7ubi5WZmbEZ6fnlt0ilm75BNLzP6LvOcA7izzHOPFpsz1mkD@EUBap2sXVnHybIVFP2f/547Py84CTozARo7jnL18ecTxBwLDuWFilvmVWZ1xPbPQ8@UTxjqLm6RjcYdnieb9LMlcXBd2Xr2Q/xXCz@WcG8Qri1elGPOus//zvGyvIGqO/WzZGB1h9ubgze7PI87BmO8r9njHz@Xo3gJrsc0smhtyClKs4Dyjh5dbjOlf5o3nxMw3CIrGYLtzK0s82zJLMGaaL5mrufumuRTjeqVWc@zmCcfZSLZ2mzPvK09jqFc/9rmAc9Zpzk0xiFDpLIWYfz3rNfs@J9@3jeW8Zn0fN3fu5djd8QFz2mc/hW67xWY@xHBPWeA86VViMRGwrXzZhvlFiy9xufmSSQzmmef8j0VkwWdVx0Q60bK1WYZxRELusa2s3fiv8ZCCBzkj/z4LOda/bZzztbvbgg6B6hz5VZ4zDmJiwzGMs31jx5fZio1vcHpng1mmuc2nZ9tcqYlRJuyZJ56Xnzdw@uc1Xfl52vmouWrlfhMoOx/zCVbuklXO/y8TJs27zr4z9ePB58nHtuzC9DEPcqJH7DgrPkFN9mlWZzZr3u4S9Y573ss8pKRjQWa1/KtxePMYs6bSjDkWc/LElPOD8gTpwyyItPQSmvvcTSA3W3n5mLkWszSLvPIu/WW05hiLZuYGjCWa1RZrjK14ClC5b6d7UrVH4uVzBd2rm@BCXPzkdZRRMmOymEcSM1vIqN88xNyKI3/HArirc0jHdNw@yvqc8oLToWRg55nYOasta5rfn9c98zhzX4VOcys3SczszWzAbMrazRif5baO5XFJZ5nFT5Z1DMf8@QSYQhnGfxfnzmUvPJuU9RL/ctbzU3Nzx2KPNx6PON8@v2DPZjHnPHN980eO4AGMOBn12VbHeL55Vnp20GWZFZq8Y0KXeafZ61OiswjJx6hMPHPL5Ddner708kQ3WzHXbU7bvOuc4JO7tGUFrG8AxrzFmNQxInNWF7n1vLFLdYnVx0gecjo3hCObV5ufg3XMxdhBIHLCWfd5nHmOs3M/RuliL8a/M@WLKz02dg7PK3s42PKxdPM98yvCu4n05ubI@Q6@MNO2/twxAcLqEk0gagEF7mcJx3yLTbkF8rNl15ziFVgyrzbOfZ7wKYcohl1L1NnjuQLjZ@bmTbwwZll2Mqsjt9/7xlswfbEGYz9m@65wpvngOWkM5fxnzoqsRgA1XhuGI/9aAESi6AV6Mo6FlbfYc45W13T2Z2Lh2y7Y0YnYxyGM0SiPv7ZX6mfXyt7Hok3uuuw2TtrHVEtVJuaeSGOO4@0b5xiP11@LHzcgwunmLkeQjDjF0dohBXMDRI5XVmtOqdx8HnKX@cxBYZvGpFzCJG/AFD/iijlikkJLDAaaKOYV9xyu/By9PRBDXjx/Ns84GadUcP7@9kICOYuwWf3dTZ3HWtw9MNscmkXmPrHXHI@xRDb/lo3N5/LEAL@JK@ZP3MxxvQu3Ngs5nznvLHMXz3U4JxF6C0UFKbuk5OZxZnvGmcmjVmiYGP50B@R2YSMgjVUiMjZtvn2XKDBa5ZCHaGU8Bd8/y8VDu2ahdxCIsZJjKlZG4RE5cVqXZ5mFOkRzbLlo6QkumA2yZ@Pc@p5Zo2UCrnF/Y@HE6LPhc0ZC/07W9S1@kDhL8VZBxDjg8tNdJCUbPuXfMLdLEDO2c5PGzoNOTHmUlYrJx4b6eH4BuHDKbuaSiDnZq/kN2IWEac78/D1ocCuAGxMypnbeYWfnOCUrf8hPH4nXPFTAwrzL@MD5SUn1CiKAQcr@ShGLnMZfLg7mZIRjuazG2PmFcX7djEPsNNsx7mWuwvzemfG9YZpzyUBw4Ud30csduDdHYlzn2IuNzQZWTfx3C58nCZzH4mnGI1uBVyghDZ4tF9e4wSfsUGIyP1RINLs/J3Bfwj3mrcbthDDNHrBO8wCr5LatHcPhW@VhxweGncIe/nDhf6X2l2jqgcUARcbyzSWbs@4GlkqE@ZY/jb2fFXvAAuBSF4LXto6TVMzTOTQPG/2wO4t4cY7PBMXAH3i1B35lPbNzV9HCyWRt/NcD2@Ps5L8bOzsLzgyDtGWD89Wz6kc2bQ4YjE6SMzZzlRnIA2fh59QINMdjiOAvOfdcx1mBrs7Cu43bmjP3CM6k/8z87A5fI94QOJ8c2/ioIG5u6QsaJw4prGKiZC/zDhsIU0w/zzOrOMfwAfA@XM7G5kMasxWv9M/pmP0Z1wQKd2bEQzL1RXgp5J4jP5GTdzjBkefipj0Cvkv@JIwqSBur8W4sxPzjXM2VYXNQLr7kBgM/UqRJY0G7nLGcTpK3CxyEyM@88DwTQOQShAn0livn6NoLj@fN5h6dEwfMpZiDNJ/Jt8AKoF5zZFYOxmMsHGDOZZ4SfMYGqHuAv/KMs6nzOvAhML@6wxgn4cwJChPtgDJXh@kFYlQ/mKvh9DgX46pOifQciaeI54EZXpB9CMY8xPjz8UviHmUSpYOJL9zjjfuaV9mgQ4J46yf8nB06HMJFJgwUUxdZXJpJFRQBFDruKiSzMOMGXsfo5mXGVELj1GJ2p6IIh2mcvVYBALPYwUN5ZoF4AIXF4hwOw/uyM3PolXtE4pNXTHQ/6zVBlJM4/zfbkbN@j/Cj2cZ5kkWyPz9n08YNPI642HCSngBiYQ@Qcuex9pCpDQTJFG@smTBNoiltGJvwFO2Nx56fHo9xd4zu7NoJ2CjfOAq3xkvB8h3KAOF5r4tF31VPZFQrKwMQnJccX@Cci7fGjspCWaFbZWpW6GSsl@pVrOKcX@eNdeFWAH38esD2CqiD2N5e8gQSivwlL6ACQFcLA7kTUHNKm@KUS3kKCj1G7n4vcZ/TNRkJyIQV9yIH2IjxnnM1/q/SDAjmqznMVXeoFnYFsP06dzc8a35WjjxnZo7Ymb@de3aABh3G7maPezjcrrtK4QS@QkvfKxt0rhYLdLoLinHwGCDPC0IEnYERHX2JI7zM/425md2eZ2N7NxFdLwuId@nE2/O2BWCCrY0T5wnG5445WWWjY1YtB8hbSjwvtYJtwShH8c0JOlqrR26iM85XTDePs4H4LuXLUPjZ1lP4ml0G6KwAMYWLMQzjmSQrEN/DuYVU7QzBWIyL6w4mEITOMZy4YoIM96/CobgaMD1rLs2ewOzag7WhXkL/WTkZQ@D/zufOejO6LtwKnz57fYCxOFZFx4V9Lbo4rSrGI5@EMi7S6LmXh@shDJ0dHRt5wFF8yFeQ8SPM6hKSKSFg9@aKlDeuXzo1l22uelAlx/xAime/mZjZBjaMJxNOHhVa5x8hWatKQDUwmY@o5qk6YbX36snzJ5fEU5b3WkRY0y3nFuaOUVdkZYjGDIJ5pP5P2ILTd2YvTxsoS4XY@LA5szfIAw47iQfM@bVyt1JRAPCrxjtuah4eOvmqnx0lz0t/3JUBwcy9B54V9c8JmFuoJP7V616ndHNIQfgVMkFTR/iiusoOGADcOvyTzYgGQJVj1MYqL6rLC69RZreU76ojyeAh7F5zk8jdQsG3KuJZpeKVCs@hhAKJfE4WYP7Pud6VMTjGXfIwr6f07MrLKIWHttQ1YLcVGTalAh4KtAQ1mVvqAsBXDpZRTqkoL/NWAhij5CQ6mLLz0xp/hRu@RUwsvFi4RD59dn/8Qhd@Nka@tEgeFwdcuYZd9vrdA/iJVHQ9PquyV@i8@ZW5j@M@yv/8O2dciF0tYOwgxyN6H4MhcJfNbsI7jzrnMnO5MmMqATwMKsJ4/4lFxl7MfVmFu8vbXb4rgpzKaeqdPlt6aZ3dTDXfibBhw/MRcN/T@YIAHpXm52Pn/Cs@zKLMS20ey2mY7X6O@c4n5FhB4xSxuyDLFxCBBZEs5ptEvZuk7djDusdAyo9maSeNn22bqztJ1izYfOycC0WV7fOy863shPxyLrIAJQwQqWMcyvzQXXzFmbnMq4Lkrar@wDGEuNCHOT7CSMHHBn@ENKF7KLhPKK1eUblpVgcwL00r11xt8tqVHk@LTgDcFyBXppqMYpMzFleKPDJM4G1HSyZyC0/nU@ah1P43OynfB15cziCuA5juYT9u0b8wfqlq8X7302atIQrW@Ys1I3gImDfBGzhwC36cuzsvoZKMOnEEOZTHXIJD981PSi3HcIjiw5/VGpiN8WuLkG2FggBxKpHM7u3O4MbfK29ewISjbAM@qwIQXqGKcJTsKx3Pv90LY5ZSJRdHtV5Bhg1fSvo3wSfMeu5HxWphtKzvcGLPAF/R5DjRV6SgziiZhFLBEiYSEJlUK503uzNRfv6oIgxMgWEsZ/DpfJGQc7EuBUos8V1F9MZh2FnVp9P29tl@ZKsQh7/xxFIBM/ljyNpcWVA9BEi1bC7hE9hq6VhlFWUp78K5zAsvoikxyMW0SD7V1Fa49aVWfiKkfEUM4exWnWD7Kv/jnaASiBTjXWQLJ2uojiAfcmtVSzABJvwQbs3bjQcJHQGhjWsIIcc6WcDEi2LCBTXesnuQt3WJviBlmcsmPpTS@FEImARg3uMQT87GhrHvYH3psorToRwjpoR3zoXYi7GAkaBiUMYcPIUOBeAJGB7mH5IdFK58pD451lplkSv2HUsh4IaPIncScByyCj5njQIEFkX0mgO6qbw9FcguO3PkTr30HPRThdBJnuCaL43M1B0TwJ3SqkzhYWnCzyze/O8FB1H5hjf3bJeYBJKzKOAelnMr3Fes20tvvYnITZ3ULfCuh/KXLBZXrDKs0iimQdkC37q6xuAyfCgQtRzJtX7ElmN1OV5@eC80eXsdz40eJAlblD/lcOgk48Qk8Xf8DKkkrzp/XwXo87dvtnPOk8MhjmKyAw7mN4REJ7obG5L93qJMvTJqmM7p/MyBEAG6arKbC6NmbLo0oZSLFUOYg4MBxkQPngx0yesoCVyVXaJZfBWws0qNY8@X402ECitlCJKWVZbBmiwZwwrrVZ2WwPAwmM1JUrFRsIAOSTcX@ZzNkpkeqr5KfuAYd/dBLXGF74@EM08JLVw/bJb/FPIokjwfy2d@cRL9J@hIefVBApBJHVKnsTw4DrgftkcRcQ1dVRHyuvOMY5HvzzxucZmULdWDjy7KoghzggJ4H1HPq5ARnjTufjbjw5JmMfhvOKCU9kYyulGaXnXHE3UHYctKib7lA6/UDkqtqPQCyedHX2wm4CIAXy2AmVeROqXe6qFzpH2eUjFSyrzDFWJ/B9LMmguzd4Qn/I1b2RDuEdkq@uKt@gv9n1Os8CFlOiDue9bm7GopcTweC4KqOCfUxmucG8CzX6gYtv1R211QfiamGntjb180ohfr4gVvYGDMyRcZYg8ITR9YuTqiyq5IA3/qqwXdrBjW2BMhQyTFCk0oBnpwxZdIImqmSwQsUMAruxMsOQ3j8iwl0qncFa3C0lx2KnKEQhomH4B6lulQfpIl5UuVEYOC5gHmVp1RB0O5yo6qLnPY3DP032FX1geur5hC7AIOpj8DsEmjhPplbSJQF3QWW61aLg4jlLfbb@EYlwHwFnc@Ab/oLOI2IEKVcqiTGo6U0J3G6LPcOAEPvhJ0j53e1SqxlSygQOxUTD55HDREkQlDiu6I@8iGoTmyNFGSZB9n9B9WD1sA3mmB80licMaKK5h/f6o5K2ogJkhxdoUJNZcvQJkvmaRKLU/xHB8Yq0Mh5YwrIALgRiD6j9oAdGn5kD2FxFvOB9l7K0iB7p6zGrSU5YjD@Z6Ztfk1dwmZU1KGu3JUGWA89/2rpivncTjVuUuYMIwF66jHaDYOH3qoTA5viUng4TFgNtZgTBQyFBoolD4yrMoxkiJyZZj0rPcZWIMfJtDi6a8Ijiw92OcK@Jm8DVon2JFR7UxflJfjifVqF9n7WFNfrDFry4ZUM5iNwMUqYJc9wn1kS0cW3LKPgRrrpaReaHq0iyo246OQfHkO9zgrq8AefKYYVnnSyVPrd1cBM7ZrLtKzxq@aoOgWNBzLT@ac@t8L2saEagFdISij0Pyjtwlal@BF@6vU@1GspZOSFYuGZ8Fl44y8/mm1E@sXTY7hjLk5l2j2gmHGtxGdoFSvJa@LbP3BZVkrFK@wPPkKXGJR3HJhroqiOEZgjkegpkjDioguIFnINmcxFQ@IcwT3kATeOeMrvBJfb0F46HA8TLq8dQ@M8JweDiWucuce1Whl6C5kHRn0Ul4KgxQtzfsg1s2JAP4K8A4JBayiSylv6zLMT72hh3PO0Iv9hhrwK0abp9pdboXNE4MF/ZCZCsxWVNvfbpcaqkBmzgu20sLWdAReX7EefT8aM@OLxxUOWRlnjNPqGMbXfd7AwUidb/CI@sp2x6G58VmBquCbh2EHn1wCd@GMCl5JCbDxgQjFHoJIcBOx/l6xqSdAUe1yuWx4XRzeXN4DXjfxOzR3QqixG/Pf64uBXeqP57OrFOxWikmBWkJqMLS2uB1wsLWMP@vZ9gQFbAEI1m725CvP46dzPLGXH4C4woSOhvdj9GRq8T0cz7uUZ5Njctw88hbX2i7YX8DUJbxF5OAFvsBF6uvUPEEOSoWia2b/EZbfkN8nGpF7r7oqZpoPtsfqfn4QaxZRRfY6QSYQQbyNQCKnLcpV47t/sniv4rr7yvttPNfEnoznGwtbBVfCdak5AEHnI5BOAIM@ZpYORx11RU4urHJLj6uUUfR1ZUaeKNWHM3@4R/OQXFoeMLK7aotGjiXm2B6744o@P0/Pe94i7y3uR4GUEhvDdzPCyDLgyyuMRJwpQJT8naDRHUlO9HLICOfUrPoZ5s68vOMsjR07cESgq1XyV5UVMTNrxfkKXG7lGkbiqXY1@TsGECI65k8rJQLH7lQg884FJkf0/EgczrIcaNI@PifiWw0XDw82rgxUjDa2A9aCwgGCWDdfkfOQrJbcLR0wpDrYpLYJ0c1dNjJOTg7HLL2KQYA84DD36A6F6b6ALLaZ2xO1K8ohP9RJo6orBBJO4ZJwmUpHJ/B9buGCsXaK@JhUT3R53RWqPE5OLXzx9r6M3zmlDzsXxYAFfevpqVKKUnUVNdlvXNKbY7@QeeAYqrCc3HeTIOOg9zFiWzWUy85YXpHF5SUgqDEMHkwpXDoB04YsqJ9nAyXCGXyxEEnlTVm/4rvqXCTYDjBQgbvG64nWD0I9uYTTKXKz683YOY0TveVV27dbymVjD0SyC0/xVurNR6g02XccjqUDwgMiVaoyA2FgY@KMFVk/7vVyBZ3Oz8C33vdDUMtwdgx6gfVnTRhqjIyx@rcLqmAvx0bOcpQRx@en0Lu9cM0zE/yLiw8gEocL0o769Hy0YsWmo3qEqFwQNO8N@2O7gL@QuTd2zFkxtB4MLEbZ1RtQ74KAx3184FiNIHOerf4uWHciryJwdB8O6IL5yRtd4Ef1Dmwl93oCRCvZbKVXH4GH4591noAFp0oO/iqSzds/yJfISgIqrhlSWRsZwwKhAU8BiICiE7M80WlPvgSvV86C96HuNXb/lQqqpSNkbOh/QCxgBYia1z6iJjkeYhh9H/oyDt8mFNgyAwe289jFslXoLJrL7rT5Fcc2ztBc@udj@lferoKGQlX5@XZDDgUtNL351x9mAhJ07RGuUMKX7yGyRXfwzRgTUF1NXU8VOwh3AK2mFDw5dUBpNXTUSfA6apYILg82uZyPOZibIM8@WUFskRqIkNou1PitvAFX56jJpaqYe35yFKI5e6uHC6cPRPhGQz4q4Qvhvp7BSIO44zbdWX3Vny62BOt@jvYbGNixxklV3kSh3avR7/UHSc0tbMx80c/xIeV1DrmPDo1GnYgbQg70/afuw5PBFuGwyPOUMGEw3lK/2qEoxVefSCPwUdUq9TQB/g3V9KXI38sXEznRc8CPsgQMA2fSkVETD5Hri11O@8TDojwcyEfOsDga7M6sY7dWl3qkeeiSRfK3y6cAW10cqFPkdGOXPdEUBJY4M8q5YhN2eguNnLhgVyxdwCaATMWj/YrTpSylJowWYvPUpQSXCiRrLSxf554tw@SytpoXKlCsdfmoYQjSPlIHLrH2FaX5RdfVg0ioHamToeHNlh7qaNuXj853z7LOQUcyQnNHb0EYiaulci3qqD75uKyz6GjljyOJIgmI/HiMwbkq4S6/c4@NB5vX6PKKrmtl@pB4a4EnrjjylVRAxS6P02RplD1u2b6mhAza@n4Urv27rco27N5asNS1dbiR8FXHwIuFcRYKdwm1aI0JCk@4Ps8B2RU0aRCZC@a@a1xSzIMn7dHRYVN7ODZ3jAR7vNE3xdyq4bYGDLLo6wthHAO1V9QSU0Eg9/oyLkg2uLvj7uxEx3Yu35yS19SxdaJtOKUySH0RTMn919X3pxII5kyH2AqpF8bsIeRSvitwp95NoYO6UEyDKHTo@2udGBr69jpJzjjEqOwfUiwFP@KkQxAiwRRieZJTTUbrqic/o86wQ9Z3bhX05IRV1fiBza77S4QFD/eqE7kfQiykiC18lpvMUbNfB0bI6YpsWJhnJBgNEeglokXxmmvMeWpIXgQpAeFLRcm72kZfyAfxQrJckOOt/ZRbqLygf1JAHJ4CggAYC5O8gY/bce2FYtWk3@CXtfrxDt/U7mQTBVevFO78IAR9BMBWgD8zL1vhpo/Y8Gpz4qEdb1LAoYVKfcIizyGXNeAu68tmISdiPvSE2BpsrBplNdXW9Rc2ieWtvP90l3A9sG6ZH3Y0iCdTpxvh65MuIlg@nsMSpKKlAbn4qGIUaVV3qi7Nyw8cAmAlbDkyzEhhk0@orFoSjusEMRKE7egDdVZsggEZz6xhUU4QW7z/UArdORzPVp1Q77ttnLc9P4DVKZg/OGJ76TLY9YguPfMa/rbWTGglBZ6PcrS2PdS6rhnei@hK2iyHXuu23MTdp1bws3rdiRek5AN92xQ6Spz8kLq4Vt57C6X4cDtGGq8OIoTEKaqxvFs9jupgNSdr5xSpPLz5@THmCmd9zVXmdMvNn4isKPd1E9VyIv6BX4ACbsQ5K3v40HpC2VF8ZellfVvIFB/TGDB6xCbf6jM5RDo62PjfapLAQR248nH4khdc60XX4LGiDusKUVHKoaprMdYn8iSoDm8QbHvVa8WOXhKqpQ@ieBDNaY0YBl6UNWKXcIV3RYanInS1Ia59UhDdhs7qfMopXAkqWcTzBQsFp3W3Cnf38ve9GFNT3gpcqS54blWUK4CC3WbncD0hUnI0PWNQNs0NiwwOonPIOGS6mCV6CjXwuWjoL7w24KyA547Y/4VoKGbUF240E3nQWuMJV2JlVKDfj2YPBUPhlmDaPZ4HaqleoouslsZaVYE7AUIyrD35huC/U@J@b4W7QaLaY5AW7q9TbasMvmjk4jPv5AmgADV/JVnwwrqR10XzTx3P60dcEUNUfauM76xh0eqYEx8BVsXMcWrWgGu4IwQTQq43LUOuIabG@bjO3OQCOn8/xGBukJ7RRWpXYzBYeXxSpP3xPXGy1qvmvLFWyItsb71ae71WeNbwcmDxHPCzqyDKzdF@WBY63FbfsJKMMkCZrM4Y0TdmW3kItELq9ngj7y2N@drxEdeq1fNrQN/YJfcSFq7ZQii7d7sxq@SvS0bVwwksNVKwI3kHWWhUuSOJjy162ZdCRisSqcByxGTqfByukiWKoAojjYBxIwpknKz4CwCLjXnh@LMnAuTFxdVmK3aRhft3/rPGfcISwi@HWuh6eKM9i3lrvwK1qUbVmdhaAEmXiCQ4ArW@QfngVarNdECqy20aK@SZRyV/oQko4OI5rtrYvdITjLg4uhprsRoC@oAjOMTSVfEx5haG8hllljWVM1ZL/pYWiHxXWomDh7l2QsOWiIxHnWS7JgSO/JYZA7aURFF26i7TVnNBJ98AU3dR8K1y6BYoCB/HR7otXL8rY8OspEFM2LiFlcmqiFsngR5VNaRK6KHz@EoL1h7WSHmHMsmV3oLgaJeJTBA03qdjGIFc@yfMEiR@1BPycl54pTrxVWCP6k0fM3irGRPxMKZakdlWRQpdhtkFbq2u5YVnmP7Cq2gD9keRDvbQALrH7q3XQ7B0ol4KWYEjuqLu2makpcBQzMV5RCoz6o9rpD106ZW6xlG7w1Iyj2yh8qI5R1@Orz0qXj5ltTEeuK2QO5b/@cl1sfqC4g1H7RL4KYipDupz0g5Ru0Zlr6t2MeDXXpq2ZzB2ETWbvemjnU3R465ZH@EAJoq4jqVUw@aidzqBCxIhDJ4XWFDaIAw8Kt4uyJOnue@1vt6rFgN86lhll1bLTRSyCBny1fPEuf9FMLdKP/Xn8wWK9KEne6Q0h5STyDipBQGfuRmhFVLcVeeeiOiuAVFItMXpef1F/r3RYFAvQGB4gyRtW5U93R2UKnBs5Ns1OSJnw/WQe@Nmy/52@TCKrPhSKqp/whNoGZGOX@pr8kLcFYXL1yYc6Ahby4XBoG0JE/X5Itdn8ztlJ7qEaQ0JP55oJTHQwb@hphpsY6VeaVDwVVZj7ZKvAdUx9aoU4/VBElXLPxqBOsMW/7kuBa56jxEejPdExLsAKxoAXjY@LCyKjPBZVU6e9qZvI/UvEEd8K1vYKpxVZEDg3/Tq4bKF5ct4yjZn3bz1S8GHdVTCioX6BoQqOUvX8iE6kiQKL1pWlHpcFA5G@okqs6ia@4TZ7fvr098klA6eeAASf9tZsjHvEg8YTrFGPsMwr2tZTPcUXuoiALMSNVo@vuIRKqV5SClaw@RWxRsgui3J8wBHMoJqUBWmETy0dAh7S3LDMth00THGzo2h8rXR6SDjEhXdMBsUzAGnrxe89y/if13dpdYXheSrILCaA1zUyXDCTsBAmhLYb2iUKH54auUmq4bUVFTOqPKnZNcd1y0YhTtmdoonouIcMg8PnleojdaJ3G77t1QFVM5TwBHT3rlp3AGInRzozV5Vf38jZSiGRvzVZHjUHfUCrDWr60xHMniST2H/icJ8RJK0GWgnKQQ8qVN83GuFQlbxrZqIjtExt7Zr7rOupTexmCfpL61auqioh4i81koGenBWrYxXoBNPKppeEtapcJlyi7N4oP3vCVddNTGx8chHVpxj2Wta3VLZEuHYi8@onhr4tPWAokRWRzUrTcJXXDv@ljzDh6ZeDM71SR9t2lBhKu9XCbEcyxcU4hthR@nKAX2cLi3ZsxcOCJN7YgCBu49ULHYiTqkBcaQ9rqrx/XEXIGBAvqtLUD@2HBfKCDEBpWzC@miMZ4YJ5wUTT6tWzbZbnfkHG74CPupcagulYTxk5Jk5QYqBx9fRUT/zXIgTiWmJhj3n06GSg0HKokahwi81/uusdvzdRWwaVzCBMzViAbb2l2WJBq0G/@WhauyEwphIxuPrxKzvlou4PmwLQZvXXHNulbOtiOsJbQOQJRiwlmJ14FHqFJEFekeSc4zygS52RI7yd7tWoatSl6ZRdMFZ9S2qIimRGLZrehZEPs6SgaVUTSVRfCP2t1ra4e30iSGi449lJyB01mwOGMYow3GvSosmrmDeg8REVn/H5cBZ3kAXaHtb2/jGQCqdcd8wVuXnIENpg1DekXvTHXhD6aFLb8REndiaBzCB4Yjclpbc3vEICVM4jyi0JlDF2YkpfJSSB5Ov/BJc4Uyrd8rt5U7X19MZ07FUgFnkAZYvbUL7hsDbt1t3VAnk0V3X9XsHLQlNjmzjhaKPRitgeeOq6YAFqSrOigy1/IuaCBCKGnhyEUwyCK4zGPaSxyhNs0sJsOjVet8E5XQOwVmBQrpUlD6URWJ9i6rOGP6CPyk1JvpnkxSunk@ICeAhmnkSNMJMmEuy65z4XNIRas07iqKSRnA2FwcyrHNLVAca6KZA27NrOJBrnX33J3WmWhA6MOHZmSZeLlU1CxWfYavVVUsciOUu2iAOcD2J4NWAdKeOgUuSvNdBrgZ@@9a3y24wLLWZr2m6/WwhrVlkzgK61S2efWtv2gKDyGslyCYuhZgccHVPdbHAiW@UfJML0f@j/ODJnvy/VFT3RJJXB8oBrhc/LnFSqNNzXFVkL51kOb9T5KVcWk26yhDQ1bd6ZMEZcqP@RgYwtAWj6iU8BAqThQN3gCniUJJ9Gihrm5infkoklCiQp1bNbXr9UVJmybmuLc/vN9gSoJWQ/62OVe9qXLUjmQ7s07v9synoFck8QRHTJKtcQhanooFYUlC8ROOGixGeEDEw28jyT/zosB9VAEV4@3p/XDH3GUrCsx@ffE4aIdH1MwiwPdJKlQmyWbpCgU9M1FpWoKZ8xoP8Cjq8/5j8bPQnkQjSVG7EVtxSMdpT46jFDLovDdnid4gPULjkl7SyxCloyZYT1E6WIIqI8gzugkyluobW5608HGOiijIEDY8klZ1HQKaCIPdJ4AQ0iSOEvKjDc94kiZXjyyrOhCkmvno@LQnCkQdcO7GnlCckKEqDapCCu@/yKvyIBjW6YuJg4Vxh@O4aEtVnjNIVS9pH761kNKJytUHXftGrAnwQ2jLfYAxXXc9W4mTSovFsFIj0gmDrKDyfpUJVhmuGTD@ArX7K7p7owTXWaG7iRGrqn5RcpyBGmcrCUvOaLktFnUveoBUXnW2@ukKB7BPHEdZeBHpAGCwzxaCr9sa9NgvHM@o2qs7Vr65HiG@Q8UcvVnhSZaTVdZTH9zIKIW/mMY7BcWRqVSB2eqq06@4idiZaG57CHYeK01xhZ08Oqhs070L9aqmee9VAASRIR2fTBiSLjY6QqoDmfiGlctkeH4q6grCUYNvpCmubW@rSAimXX@tkqJaFUUkN0TpjWam/3snS4NbQxHQaWOu6WXiI70oeUb5wCD73E/Ksffmu8VTbUewYx/gE36CdVmvFLFyjMDJ6BDWRNMNk95Rol@4KWTi4EbEbtZNX06bOYhDLTusB62hJa1NpVHSD5H8qCuoyuWDg/A96UjC8PFA1RMX2pVJRUKuBTQK5pmK6fsKK66c0eHxZC5dZYhlHm5gpVs9bQO@G2xb4pjqUglQMx0Nk8IgWbG@EL4HyI17w3Uu26aqPQ0BQXH4lFKHLKYwrXbJT85pMp74x3hKa8tT7EbmKo2UCnR3ZLONHygj3RcgaLR3SRieGMYolKtqpU0fEnzyRiwKmk@6lmgus/BYePuF6HVI4imcru4H5Llm60rh8exbUNQ347hGlY30s5JtUdY@9@PshjFsT/Le1SmbQbsXHjbahGnXHTtkqlBauHex7ps3MpbKka0GdnOaE4m5spkQd2u53QxFSKtM4jaYZF1OEBuu7sAjd1URJYX6Wf00Eg6sRtKewGVbDscHKFSgdA0oiYisuPdUKoVUaDtFR6oIr5tMC4@5AUX9KDOHO8OTq8Gu6JmzrbRkjqURWsTBuCwqk02TXZJRaMVU556v2KvFy0sKardYfWAq0LxnSJX0kbpLCSww3HQPawgiQPXF5UO5U2eX5oscb1L2lS0jnJM0llRtIhoNRFwvPIzuZS@aOkKnx87BkCJEOGZUZpTFVMVDNlij28rOjVRnwgqQtbhg4GGggfHxYO@dQPmPjNVfeemLeNJKZZ8@pb06RKhBw0xBBZ4Yygkqoxin7BKFQtHSKkbh1IeA70gulxYpoTBomKYlSQv5Hzf/4hKFXD5s8EIAZnfWs4OQiRxjEuypZUgQBnr1fsELwSGzMMkNEmPh7a/2eauYxm5e41WjyusMcN/WHNSIaiF/4vEQWincOg77cSsyyJAVf0GQJaZKy0tME4ohs3oklcfNsCX5o5MWkS3Wa3HpudqUApcDidMQU3AtxmKIsl8a0KhJxRgLFqCWAG/Z8ixsH3RA4sY2rGDo1VJIRgCUEjiVOHQMAggNeuhTB9ktNQ@mVJ3T4oJaoGOEmcpwv5n@IvMqXckGvr1T@s8tHHCJMxAzaQtTimBemLqWIeIJgEEEHNM4@eVmER8k0lpfCo9AjsRDFS21YV7raaT@tYQskbhIGS44jF0BcBpfmU6TxcBo1sXqW1FhtpgY6nZMuxs2op9KrA2vv@ui4pFe0JFTALKsZ49Or8S71e/NsD2@8xrBEClvwEyz6Lg2CPX/lj@hEeB/ZoqIg6GI96U5gmplrfVEqeX/t5gGHpW0sDz5R/XExnrCY8@MsFoaeCdA4Flont3g1NAyfCrNnbWnyPSFG5VVYkEMR4WJ/Pj2XuNSySyDghWpTf5bygrBUcULSoLBmG1NmPZQE3FsfsxLwLTk6k@EVHSBxySTl/br0q0UulG3fr8n/hHQ4LVtNnII4Fu9IAOop2CyxW7IGJ/JfIjmxAEAsSoYaxRzMBQbjpzVYkya5ak1z3uqwR1i90@OEgkkbpKTbXUSAEWMRdEQ9MYCABwRZkEH2j8CnGK02@BOcxSizwir8oixcUu4Pho@QtVb6SObtqdmtGnQNZ3sVmQDrrXx@KaTNhyMFaqvbKk4fCUhciSQ/aeVL0NVhXYK4xs9P9gom3RmghSS5VZXEDREhKMlz21QZ7hwLkPl64tpdX1OyBdTN/AS@359aZpqPRIrWlHZpskiH3P8qlGvN7GjQtpvV51bqExNE6FRSgwEnfOXyeuQrBoG4mEBos4ICB79E7n9YWjkox53Q3XzoiXA3R3svCROjL7wnZ35@Tnt@LJOreUMCttbqga5W33zqh/rzFk99cKJR2Au23@oXn8oz0y4HhgLTKndYEimUaUKFnjRsAM3np0iwxImPQiITh3avUSrRjAlQPFVDr09pxP1BaH4jhpSdCHMikYE@MNwo0t0VSwTttP2wD49g00/PExz15FOftDPlcFIFG0ygwf2cVftOxYP3uX6MuieZrmppY@WOmJyFlzz/LoeRbhLAvTkFuCt7mGjjncAOY6aQ935EHlh6FdOa9KjsFvMgTB/OMRT143GEm769uT0lFlsq/NQWs5cSMq6HkrWc@PzgPjK02iWw@KVhIjtr/yTv8HVWXVdN@uz2nUKAqtUBX18/jRPlABqHdyDgndyC5iy6wcywAmgkTdWsdGSJ5gppACNSeq0o7tFEoImIYL1bUimkKg7SoQ6cukqWYI2QH5tA0B5sq3aKPHnW21RirH5Ft@XQcJBOXSw2hIykv2s5IzehiWJ7P2e58arRbem6NZch3S6VAsAJ3uOerOYBckqaTtQoRdfznhjQqv4cga2ea@C8ovlR8i5H4lhS1em0VQhJN0zKfHzStgHvC/eT8s5PwaGnAt@dM6vHjNVGTpfwqEjfHl0i0BiDLSHTiOy1Q6Lo0RFAHIOJC0yBGNbhkwVbVWTfelzdi6sKlTrzQVkj1S8lrMgLOnW4vU9Aca0v7ErhNM2EvRfQjLEU9y2ADpgo80eSF8RYPaK@D0wIYb8C3I6GCxnJz5prIClP61yldKG1JrY@usx7KpEJEdOK3VN0SA91UeQtErdVKvR1aSy8B0oLaFbNRdIcrxivLzoAnfTak9IuqGlaBb2u3KfGTTjFR0jAM0c4IhwagKYhJS3JBuOc4S8vHX2tYApkaxwDnSBgDDgCPvdG6WnO3Voj2goVTfnC5Jw9FqBGsCMd9HQTRdbAMhtZY214aMRTNgHanjLFnRbYWn3irmbESDV8IAkwmBxA4Q3RFBhX5l8/3ck7RInq0K3@liNbq1FgUixx5RSUFk3K@itr@NfEXElaFUoFFReFLnCykrKpt57bV0NrYVG6yLrgnnJU@KjeVJCSCteT9ig@wJsqoyQ21awTeBL/FzDvHOc6XCD9xwqAl0qECEo6pE9IopY@RV1YCmnisxvCdNWTtqrUgHaIaYgGlScpDWDaUkZrOEh8HmWXu9EG1Pkgw5rPlF1UKIjSPphE857LpxCzURyKs4aFvRaXNwvHTwNPn6qICSE@we8q4gDX7fwCkje9bAy4PK2WjKehIA0KcpPP@2NWpkyL@Z5qzJn0Lzob6RJ3h6KLEhoWhUwUI0EUjVvRWAKhOcBO813ZEyQ9bVdxwFs4p46D5ZLxQT5b0p1j6pPpJKF0Jw0sHEpD77uzGhWV6OISUdA4gmQa@LKx5RrUfXsqI7Dl40iiGcT9pnUqUsLcisUtgWyyAHOqYrecqSuh7Da0SYCdiN@TaPqXTOdU1JzR51gpbFbE52@MRnMeNAVB@IVEa5lg6tWl95CJxGNXVBZwteE5i5MgDEVUkF/QtBGBO2FvsXWZ0BrXP@mUVYzxSNUdhJjOdy51Set7Xkh2gu9vBMtbhajj5RGL00jFM80e3JFXedYAAdTRhA7WBTLVLmvmj7L/2YCoHDtKPeSUG6oelAZsXdcRPZCnZAoBFmIH4d7WXBhJ35M4ikwnAln1yyYOVLRVs2puByilOnBdT9olKhAXKv3s@HsjfDQcw8e8tXoSS8MuKVcT430tJWpq8mHJme6wJSlf6WKOu1gDx2yjhwsFTm7@ToZYzCitQZmJR/Qkjb987ZdwFIl1LFRRJx6Zs4ESVtjGWuMKRXDE9dObcqUBI9oVBD5fm9KbCBx/Tvsh1eqCAKrF2/6lv4owlCaFQnrxKLfxSjxSCuhpgANfcTK35E3hIvgbqG2qdCB/tUcrSACbBGFoCyUr6kpyOa3dZcxPNo8LQAtQUt9TnyAt1iSj9MK2oDeMCJGhS7OFWys3PJ1m4gVqNJHoO69V6vH2cCc0wC3VRZSUZDRg/QYnyOUgBxV8AyZRTYMg@ZC9wDY@gJgT9A0lCEpNYu6qBeqt6JjKjuY9/7mSkdxC0IKJ8p0Csy3xmmhTpUS600V1iZsSPYQUqZgGdDXE6y3uURHWkPQkRU7LAdx96YHb4rXuH5RtOlDdMQk4K2QihetWfJafuDJCZvqkckIhD@IjnQWiHx2UauRHwgLLJyx1VXQfP1Ov0IuTVKWXY0D7xQJ6Gz4BCGa7qS@x8OmyVN@vdPShQ/p7BZO6k/HufYd02ilzPe6Gbd2VMEkxPmlYNXirsSmRmYUez4ee7uV0h3ODipteFMNKPxZ9J41OL8ifG5giWEK@9kbIcQASK3LX0wEzqEvcsVTh@yZoNOyNJ5atOCKXOAp5KVZ1ERcbrctCpktoD3K0NoBGI2wtcU2GUWETR4I095q6VUf0QIDoEGylbLhzGi58fqpmmMGi8VIiDU1sTrL8WrK@wrAT3SyB/dNeQjqQOdZsclbbHsOnwrolaaSkj9yJ0PuEtmLPAbCvZsDdNY3p4ruSF1Uk4lyO5KHoIL4xeqXDxh2iYysnNr0vqqJZWeZO0UyoEUH/QDRkyAkGiJhoTcY6TpLGvso2a@AnIFR4RY/1@FQvVZc0rsE/FfLX8Aq9kE@tOsKIqyFFX4PM@4QJMPaICT5li/pab40OBRQ/0eCRfAA63pLY65E@KNbxGx/dpUB7DbDV1031gk70nWb52tg0Mol86p1Q7Z10eRZn/3ruUm3dm0JB9dKEmSMVtgpu9VaArnFiY6mmGShwu/CUHDzN@ElTbD@bJ2Nq1yzrpinWJHicKvvXWoVESZjtbNjMXSrf3B/kPkhUqO5eZ/vzfg1midR/SZY@v1iD7PxSa0wD6VT@QtYQzcTypUEiepC4kYumd2Cu6Xw3hHNVyJUZfqgO6Qfh@BX4c1anu@u400UUoQ9fjZA7@@wBMCKQaKokafKQR0JjYu0bCvAV1FHQNbylcwej7o76A@lJEza3OrbxNlKG2d5vjuU3GnP92tRJtT2teQPeNFNhFizFYW9ztQhJPN2cpRYMZwBREBVdSOrGxeQz0kTrNOeKmUFXAGtT4ncUHGMBof7EcsSkehptoIxYxzZxCVhaLgoaq6FwiSIubE2ECSnKTlR6TI/maEQgYo@xKLMCiZ0TaBLGCxVdhptH1eYGvCJYIoYD9lpGCIJLuDeAZUm5TeH6TjsJ9cb5eSJafBNbdAR9NKmnETf0Jc@6avRL3lXo71wOiCL2WKR13ZamBLj0YnKNRd9sF/2dSPXo1OmdrzV5ow0vESzv@p3tDFL2UY@S2jsDuyKiYD7IWjI9@6c@/Q1Egvl77Y7fWWGGxWbZdYZhDVbOfAv31gJEKomyoTe10Y9ddtuALSHL5gFgGu/N9aBYV1knb7yW/wFeVXPBfmqKKtMwUtxsFWYUTpo0ehC/dYAUE8RAzFbCIpd51peY2Dno4D1T04TnJIsvkU7UiId5VEI8RyNqtbm9H2D1nM0PVdTe@vmvLwQJAjG0uG5L8z4ZrOqZ2upl/ncmy4OABfb0SSkqRYAQPiiti4AuOI@ggPbmfTUnSy53J1XYXhHf3pqD1bw5KgWhfaEnpE3QEOluoAqaCxiN8D0@unKvzT1c39hBj8dL1jbtv6K2jx6jNgsBoxp1lvsk@wv4UOAyQYPVAQ7rScM8F/BFrN2q3F@x2DHoVZ3iCSZ9LTyPViBG8x1bk0lSJkazfmsV47hIRr3ROiOycyIfC6jxsKUHjVJavzoWS0M1blXWTFgUXU5cfkXqwdm4mmOiVQL2ruajK7vuyTIxwz8TLL/g18nN@A51LPJu3/y2mqyg9PJFTM2zdITr0msT6UMAUrDWnKk3yoz6k9D17ZfXhniWDZprcjYUC0evMUhbjTM0nY@Pme22NcAlRi85gLXZrmjx6ZMvlanokBBCaPJzemrp36IASbjf8Bpa9DVkZ1jOn2pUOHjK6k8VRFi6mmFZHrYhfs2duA4bF5jo7jRsucFEtaTeaxVU8csq3OcA/Vk3sOqY1uHmSH3@4WrMhxWg0AaQ0IanmNW4i9B8i4buSyPpSaay6Xc6tUQCZx0bTyGPawr0QvmlFZPkbg2lV6oYTTctzXmi01Yiez8BO81/JBsVXIOY2Yi7gdxbsygRGGtiROTg5FzBBuziaENzqixBYVPb1S6h7/hKOWALQr6aertGb8o6oFM64YgtstwS5OpkRYEArECB9ExVyVWT62CApAJmK5bXxJE8qeSvntvSkfrQCEpzJFelyetTVbgrldQ1rK7wafgbjptaSZNj3hrTantp8naUfh5rLzLer6/JqYLXUxKDg3A2y7UeDMkR5lfC5cmGNFvxbJY3ETi10W46kXpORtFhbdx3VLGjWS7CyDWdS9cAmvbWl9qcBqQKret@tbNJ42Gt14fKoDBVNfRTD0lMTo6d5ElMuVQvgddP07MZd6GXavYn7plk8ssSsKTPp5ZEV15FZTmqajfQJzz7645J16qRtuhTRyxjIajurLpYn4aLGzct3UHPMYaVqg5IZ/lmdMMtdTYu8awaQ9SclaYj@sRMlkbfCtoJGur8g3d/5Xi6t7ITc/MUxT6ssbr6x0RoZCbpmAb5fEIjmXTRDOU8aRICNZ5Jb@AQ7cmgVUY5S4pAQ3ctZGcrh/RENqE2W01N0OBu7v5T4xbXIjVRrRJPlJf0eOtR1KMF6yMCcWaQt9S5of5HZsHoajcBxadMI2EyFSpVapUzuMgdAqsh0vFQqdt01Jm1ETtKTfgCDHzzB42veCLF4hCQK3l/cti4b8XGPVHYVWnrWL5ZUmQQlD395@yl5J/WC5BxNWe4ZlA7rsEQFq1fBtr0pKLiJ9Co1jpcnlitfOpR/fdOBBkzmN6@vOn8@sv9ixoVa992DZsJwPMhdUaulXH@nOW8NRF3@SyPEEoMTfAj2h6SYYk1ZRWaQJS4gDp7Pa2JBUTF3JqYUkl1b@Syg4s2hYuBfRBmLgxJbEWvQ4YX4@TuTc7kd6t1S9yAa@c3HZsEFKGWpM1mZ8VkWwM71ojaPByA3UUwH5OI/KeozewQ30kS86nAKpGn6@BAJuH4NIQaJeCsRIGU84oKw1NwwtSf1G9goHjAW3MdTa2pp8Pc5KJ6UlEhNtzRldoxXIZNYQ7qH7XMCtHlF0FpW7oQWD91AB/NQddUtMc9O4onUhVsVN2moyapjSh/e5WZO4hNgUMREjjXs@@VEauhrKmJ@dgjMUi9W@ZonY0GKC3JMJYWNqXc4GOAQ@3CT@KLdFWMWNtqjCEOq/6yp2wYDaIe2aaWCffUlQvUfB82tb@LV6CDScK5yF@0/GvH6RdTSlPsR4zVW9R4uPgIjc1CGn/Shqnz4dOX58IoYsUDSIKr2oEhE3v0iOsjO2Ba1Ep91P5QUZwuBFgLl4AG0dJA0KanIKmsjYHzUhJylfZo/Uswe7S65xtqA4QW3qHkQqAwJu9vpntH5W0AWfN0ki5cPnDprwnJHVodDb5Jg9h5dd2RW4yKc6exk4ahpLo@HCWgPQjJEuGTO84aRZaqs8KfqjZvkTWtPKR63Dl2ZU9aiZC1JFHfMrGXLQjLMQkoJvWdXvT9jYKu2VQX10bG2MAQVAeh3TcG521r9Kk7IBpKRcfSMoSBkKzAchJQZwfl6@tqJpyBRGeDKmBS@qRrt2Kf0jX0W7rnqtkkj4sfVDduw0nXgJErgX3sglL1o6LNEhvmLhSTwHxjxwzCOTh04jyy96PjkKq24UhPlX9zuKU4Z4cAsp78vdfE@FDP/FTZfBBdiwsTkEvCR1kqq9UKkmoGRl1UgZcORxwzWgNC/tQX40KqR8qOL0i7EtT7zfeg7BMrvWv9jSMIV0e/QcT6BEHyGXC1OzUAN5t4IVlRE0eIhSBQCys7liE6b0P09qz/N5UKafNK5BeBF1Hm1T@q8qiGzsZcy2cItGMQHlHwFRzgx69NJifAauQWtPVNE7ixZSrffHoU4KeTGXGosRLCPkc99UdcuuaAU2Wspe6Th0t6WmEBWKkTQKE/0enExZZPWDiVSyyXq34f0PP5TQTVTkRRYGlyuCPfyJJLqoS3BBio51kXmEJMKZrkqhkHaApnI@7xEtPJDvF2I7y@RCEJLkV9f3mRVbMzUCNiQrGgZZRHpZ6jmVG1HYHOhCBYrNCyaKtqCm3bEzK7/eRInctXA3f4HV3WpmkrorksTvDLqTxkRnsTaNYayMGH6hslpHsqFgmCU6w9O/aavLeGb8dd8h6qUyai1BGqWnhod0OjfApqSZ4zzWDBpj5KRb6qV4MMfAidFCq8R/JZgtmEnoE3Wvtdt4AK1M2ctwijWiV4A@/K1wE2Q5g1TeMIqLgrWqWZocWp@jNNa4FIjVYa37Qf4rpdhVVbopsvaia4RR0MLSSVTRmnboymicWSTOVC1FOzjqzt7fGwsGTwV3OKv9wIKMOmgJ7Iw6Lwk75AyKz4@lJh0FmlZUizPAKPsCFURnP1@W3SXlauX@Uno@NIIcTojPv5ibeJlqoS67wPmJccaF5LL640ztC19FOyX/GKEY/MRb9Tw@CWz2ThKQtr89dHcIYxh7igDH4O7q5HUmXjbJxZUChtszdV6cb2mVukIHRzSZULvilCS8A0mcLajfSbaGHHiAjLkHWRClKS/@bPijb3pmwvAZvNjf/6vZAJGL6gwLJYrd2Okcv71rcuFAbkIKAuKYyD/K8aECnPCjc0ZUrfqXHnOxQ8r8iwsiHr94bqVJa1/wmuP5rbQYZBSAL8J8m5ii7B1M5gFDORGQKeVhZ1zruBRxX2kC1/juFu6gtp3XS/gED1xt6NtBD3iitJzBFA2L8ZwDg4EfXhrAoQ39AXJx7NR6v909AgHIly/aR9q/Q@4RF3mrEXfTRLlj4jX68octeU1ETt2vrV1a@0JzBvrEFVFzzXN25YU5drXNg//382X167JjrjHf1HZqyRLq6DTsrq@0@qcfFCKXkYXvoUru3fXGUYz1YbVppQQtMtxjFcWdn3o/5TEiD324xPmBCR0AQiisMNlnSgOHghrImVvg98gMDH4y6VTA2R@XihzTn8KnIgF5GbxnSNjiGB7FljSrYom0WosPVvQt5PlSKEP2Z/r9a71yH@JnnshkhTYIJGrdzBxHtT5USZdcfeSTolLsB6fRhiJcrlqj4stUp0bFYl2lcaBeA23DHkP36Y8KOKhS9Eo1MtkV4Ke/lcdvyjuqoByTrIUBlzrXFTdMFao9Fo1jdZzou@TSgsIWyorFkIwQq3VirgFFt2Na7FpX8aJ3rcn25B0zv25O3y@Hu245sucwRE@XWptIbDes/2anNt6ZqcFHLMiql9JvILVNqrFEiA79RzguQqMxqthcTnNkkwNHHpQpF9LD@VWTX6rB/bLoFZHJilefd5K2XCpCgaTrt8FM6lGbp11W3JASJgNWD3/bSSHQdJD523xoiphBEtfj/eX5TWpYkj@jzfTi7wXzSd8k8lHEfp@ph7ZycRQ@RtPme4HsRK1UmlAsOh6oz3@JSeGuhVH6bFL@f45Kyq4JkCjKcevmWCDETn/kjcjb77CsWK0WiDtj06mrGpGiE@JvlREoFfCH7SoVHWcgUA71USKG5gYayJ5jZJhb2T@0TyXIL8QYyNKIeTCYBqUSs3vuq4BTIoUqb02jwcUBx9FY7o@alNSMYRIbqGkb2uW2VjMWsiTApQpNS@ue3VkaPgNzmnEGutJ8QbnM33BfSJM3C39yQ9FVvDp/aa3nRkmO@RMIoG4tS@hO2GUipkRckXYlRyPjVcSHJg6Unyvul1YGUx5j4HG4I9Pht8pxDk7u7NWIXFikJ4sobv1hlee4XomSRLIZVoaSu4XeuAhAM3kU157o2ovSWMolXROYD/f/MQAy3XbuPRzGgguRJYg7/C603RaoOw/XVqOqTfvGeEAmGoPMysiL0ZzmAg9U/dt/UTqswhve9mXBTO8iliOJFeA97fyiAEa9y3hgqtH8@FaE5yb80iueodd8WIgl1nk5HOfD1allAPk4CzJZOla5PS0PIpHqgZg8qXTyP/rv8Z5eVpZsQa1WppBNnTlAKkFJIin4gtSEbuBOkTdOoWOr@0q1GB6tkVIQ3JaEHrLs3ZEcZfC0FepwDr7msarIdy@ebjbA1RS4b9SfyscYtZd/lBc00EkzSuTByp5TuxByZuzYyhNaNapTigM1OL1NqV02mGVHq0jUfUXCobaKRXswn5JUCt8CgTARKrQaq@OOxE8go6ERBr7ppSP@Ue1CPKDgQ4sN9059YQztmnypMOMe2BulZx9BW38lhHLcBgIZ53SSj/bu6nnovtU1pi@bRLGD2D/RAnXdoOrKAtlWYcaTIQRl2PZkSASQnALemmqVwYy0lERnpgF7VUugrrm64iUcO7nivstaMWO/3eH2KCsk5R36GsdoCG9n4ti4yXsDU6bWJm1a6SZBIjkn345Bn4qAX7sagbHzikHg2TWYPVHOWuNHbX@P4kelMdkBq5TlcTetWZ/KHzrW3zaga0pvA1UUL4Ehv3pqtWDyEmBZmsxMUID/sHUZkOC4GaSPQbo0pXWVB5Nv2huxYn2vMGw6Vf@XNKzicW9M1d0KSS4HSsqMwLfLtia0RUiMGdcnFw3FtNmLNoGE66WLD7n4PwtOjtUPW68u/K9HensIG8UPE1ybEgzdoiUTmI/2xBxfsnbXzFhUXxJ1aNKSKL@3rv4nQ6kXgREd2QkYDw6tRnxlNLwfIJQFfo3Jqo9XxP7UZiESAvLJ2SmuiX5P3v5k4elSASpabtuAO4MJyBVZ0l4o/o8N1HZdqjkcPNskmqQ0jgmDXp3WTvo6kJBY1ryvYKNZE/l2pzVeop5KKgpYK7JcLxqZ4bJPN@E7TVE1NhZFJo9NjtpyBvad4DS6oDrChWffSo6XhrGBFY7k0Jf6@bkcjBNzDe3dwa13w0pUfYWQccU6fwZ4WjXq8xfdY0MUljns0vl7sQtkPAaQTlBJVX00OeDwCK2KmMoND0JkC61jtouJ1GUynSEiaXd4nUthUcf@WqJOC2b8rZm1LHuX/9EeQXdJA33G0zza@a9Rb2/ALfFLjD1oBaaHK2Du3/re1RDLjEuyyeqFoJCDtr747NuJUfRTjw@yTE8HkCftJP@CbJq0mZmTBmUEYECrvLgZtZWRP9Xg0ODeVsUrSePJtDGRwzQf0Hs88Vb2osHn6ATdM@YrSbLHkfX9MSv2Omc5b5SXWaod/T4hGgE0/TkYQjUXXkvT5cCnHsThEeFZBGIr@yp1TDXAVg7wl5u4xuH4t6J7GJWhyASqdKRxomKyiW3FCQ/xvS8@Ebd/XIWoQNY2tEXdpt3IRZPEICDU@NSFiaM2soJ1kvbWc1oigwyfbDWisCR1FYEk3XJh4Byk1OzjBSz/1T/OyK6pFEfhqYArak7IQ@bgj8QZhXE7yCG5@iwtDKi0JfWHOSdoln0mtfIpav8cNcRRFI2uLsohK1OWvv@uF41pg4BNJi6lkKeo2jb6jIEoQlArdsd3pSOs4AOXdzh2K@JoGGaQcy1oeuBfzCGdMLlO/NPyrWaCN@YveJpyJRfmP2LjjaFQjkNupS3OMUvJ9m85OCjGlCVDfeOiW1cV7NBNE0kjFf3i@BflJE@OhBtFbsTHgfeqH8gZrKVSiDUU3cp978tSAuJmG9T8QbG9mT3jJSmenZWlXKNkAYJjRLDJYvYon5jfT0qTJ@c5/W2ndUocxUP5PYw4FzCPcmiZ/f2HYQXxQtZiD1/a0GiD1Brqa1JlYXGyJhWPY0yRH0iCNZzMCCJ3UUjCYaXkctCldD6/fAYSFYsz/vUjJyCzejEzcoIbot9VSHFUWYhT/ibtd@rs0hQcTi3T1CflobMKJv2ETzOeNeoYjjzJIokG@u34xhc1ArW1d3q@dorTOh9i31F93cYM36Ez8EIeihmSHxmj4a7hNNlMkkIpy8KjlwWwxj0QhbZOu@JEeiANkc4Gia5mhLnffoiJxgQmDYpazE1hwzpb4r5NQb1rPbadu@hst6G7RuRSbXYxYJQpykRHI3ZMlESNEt1cl0uZhgSm7i/mrvaShuiY0RTl@jRBGxOKubrGmevtFABSFK0Z8A/x6nYAsl2dJVXJDC@dunEog@4z1AAbQp0ARQHvWda33f7k/S2AwIwWjIsHZc5J@j4isgteGuWmje5M3Y/VTXCM8LwR@OxmyHsnpiyZiaWosSKvNWb8N5VPZVzRRPms7BZDe92VA9qDhmiiw/DA/o0mBhRTZ7XgB6hw/QePipI/Me9XsL@aFg9Yxe1zeyXEXAcLiSS0SDT/s81MD36If45uIVrhI22X/2vr/ICU9NsN6PiNuWGpbM@b2/6a1ruvnu/JHgmGa7K5Yw@kS82eP5wMKlkRow@JTM1B4uCVokz3Cv1CHhDixLytedLZ9iekATKFJPEugmFpBIypN6tWToo3noJX@/WYJCLb96ZWRuw0rBW6LOyKmMmfGI32zu8yffapFbnKlurB3m/K2NF7cxp/veBD/gprmHahCEzL4QFPpKrfSIkrOhyB7fPOPzUyppaAlz8E0hQpJg9ZF@gDdaSwicfioo8qFveQxbSSph6eKbvNOUDy2QW53f@o2qBgbK3IGnVZ0FmIx4jRSQAuirRtn6NWUcndilcZSNHnmSR9PNAwyA9z7p4gGARDPG0KcDZSaE9NUBNkFYgV2uzITEEiH62NRZh/v8xs41IIJdSEsZGIVMal0KU89kMpUAjrxGHWx7lL6zQI4ibfI00icRmCySrb6aFsfFVA0AumKavDFOYGyIf1@/QWNylsTQK6276VARYrKod/JAd2z5hnwr6IIMY6Ni6qBi18cDDZTokd24Kzyk9bc2kW2P/ppa7E8BGR@7NmH7p1jlW9EbgVsPHrAoj6@VraIwTPkOjXYtzjJFCFnOum6mL7itab@Gkiqi38xh4mICHfM1FQT3K0Bb3V@hy9nbRRz8/HZ9PKozyV0daHuy007wXp96TETtouznWfCkb6t8NbGNq3heQ9oaCyqEFO6lQMsY4KisVQfA7uZSoTKt3x1AWFEDqgyGDNGcDrQcaQi2rFxQjb9eThYnIvmWOfYQMHY1uqMCY7yUJtkSL2p4atQ5MMd5xULDcmsm69mUJGsHu9cRTVeVaEf96TVTaOH8a30uncdzy@EHYEanOxvgRVQzxUPozPv1ij2f/sxW/o8B5JiQ9UkG0EigJpKx@kQD8fQPlrCpe5HlliaWYINxgFQNULe2WsRAiEf1gUUfIXbgkZYrrPGNrbE015A4NIXDOtX3JsoCe/EYGgaE8KS40qR2FDW2l1u2utu3D5R1XQYFJvi5VkCcNnNInE@VkOeDkI8@Xm6w@y@@@NIQQ6iyQM2X6vNLarKKteHK5mF8WsJnbBvVkudrMv/oCmn@scJLYyuJmaQAFfmQa3marsmJ0Dy@ahG4oQj1791fmXophnczz@SvU3MqjmEGVV043qU2SHdAM8EeaqZx5w2bZz8ILSRRilyGICrCysVsVfCj3ZRpSz7sKaxGd3s96/cXZktyMQYabKVuTa3drhTXqazibfCGdXMsf50g89F4UMoj9BbGMCLq0vKoT3/mrmnXl6JMF6BCDWPC@Lm6RmvIOxM1kN7ajUQx7qaHpvEqPXoLdIgl4uslboGZTQqnVY5qdXz@0HFQ06rLT38/OEw4uDbXRcIYA/r92h0Nm9qbY1ufmeoPQYX0onVH7827gA@It6P0YVGh7Op4QbCnZXd/A1WPmLcp5J2NblsDOdNiqhlzfz4dNQX@PTkbucSdtEY@s9Z/vDhlEikw1x5ARYetJ00WiXnGAtmepr4qnLPETmBQPYIX0rpoeEnj6KzVXJfCRzO7G4LW/G/yMyShECyuK4KNSqUeVMrV5ts0KeAMGcWzwFjjcWp@fZPGYXw@IxQusEQVdkSF4SKSI@4We79@09cRLtJ0XhvoWplzickj6TrTkVxi@p9pOTfWsSl8VVKWCIEmwVzNaOK6l2673ikxcK3nOboKr3iPanu09Nf0l7fuAX2MraFOyvXn@ukTx07j3iH22ifOMjJClROWEqNWRHbxPhnU8DPxa8w3LGX10uAl1fPlTpXH2bRvS91/khCtQc0RfXrxq@HSR5MN3jTpTpJGl9oaXFsdb2uS9paYrKIOXEprdOPCERzPlFub4PI1AXVt7c4VwF28Fs4Y8TRKNV6S8NXttCfFdufnjWp9WhqPJNRVAEX0XhKHg/EpsgrOSZErjWkWDmaSHQi0g2hl0soMyndX2Xib14DBt3YoBnCNpcZofWrmxaFx7ZNwiJSPa4KAoJ0OL/FIV07SRJAhQd0qDFcQJTrsE501xfzrK43aKqi4EZZnwsT9bCOpOX8HPSALzTnlUkVQEp9a5TdwmLp@c28bu7l/U8gpv9a5vFUWO5NxSTIWmm3WPXPwNjmhUq4D5RbFdyLhiFKkmCXJLYJN10wlbg9Qxt9k/7YSKM0fn9KwkmFA99Z0Fb4GqwQMtqRoQJsrlW59fFiSiIeI0V/qLJOT3mgfqdnmTY81cEeEQLsUoVah50O3655sOrVY@kj2W/dvM1ihcwp4zRJNF/NsXufxfajyx5Mes3KHjPBJ5r15v/pUCJzEvAf3NPLialS3u1G3L0mFmKt5ceBITOb6UtOkWLfGpMoj9Pc1o1QfganSzUxHk6hx1q7olD4LibHz4l1oh4jFKkhf7i8rAtwbtlPPpoupdh/bgoV1IdwUfEHltrPSniKOrcH1qHMjHpMCGp4zmQyylA4a2FOK@TZxUZqPp/uVHFCrtRaujRhybb6xdayYNkiRxlpExG0Sc4DPrh9f@Oc1BkIsxZTIzprGmrGskAPDahQasnVkcnI4MLXYGtc3AqqJkOc34bzBkktqH02EZIweXCQN8Gdalkd87sV8HNUMSW8z3vdGJH/NiV5ccMjZUBds0NFB@u5IT0Wb2TeIWTsb@uwW9GlaUTNIqG@vyfdcDahFDdAX44ReUaIgd2IrKaEi1hq07W3o8PBPmYVOY2NUxH96QZW/BAFCkSZg7XXw3h8fDAAYbAX0JBC/pfy1kk4jRouwdtRKoaIEfNXwIdg6bXw91WQvt4gOPczBORX@yuchTvSV9wbBfu3FhkW/n7IlhimETsWRMJXwnLtNw@jnLLL3k3hJxfEnIQD3YW/oKRMcJlKJ4YycuTTgYA8rNlVIsxoZrKtUENOF9rFS/MMcBDBXFxdwvsULlfCekl5OEx/ycDSEBUcayB9j3RAIJPV8uyxgr/f4/Og30eO0bGoUemLyPM0uQUX5ZgBqr2din1ije1K0ggjssnp674RYno9/StACZqnak6yIzqMARlHRVpOFgKPWIpXjGipS2d8bfLs1@nOLC0VRzhRImVnCF7xznAmlh0bfalKllXPH2XoKhHJ8Tcpb032CyH4FLe2qLgyf8iQKBimou7dJUuJRoaYSl7KEqt/7yfsbTB0LX8cMsFK4tiZfeDSEHr7J3pDovphvGEMDAqOWb5W44PJUKZZuIhZL403uLyreAsFd0aMhl4kBGBMI/xCKJxkhe7KQ8ipnRf1gCzDQyKYAWiBIG@CbnqtCuQcE3bmsegdvx77kj1KZxM@8vwUgoLeHCpGsJjFgmJskBylY0w@Whx7S2IGSFnGAqMyMs/0TEyXLqwJAwaTxt2eAG1SZJ0a0kBLoARfjoWwghkTyjXuGXILOAYaVO2Pl11G1N99bkqzI72kB3CVRQCeM6buJPbHuaxqlMlBVuTuttVQlNsRMrPEWEDxpVlJr1bLk0e@6cd8GAG6lRMydWbOq86zlhgdzFUZW7Y3zp6qDpKPv//i0vq82V81K/aqGBnW7pHc0ryFkprqtUrRRE6pQfXTdSEBcJbA0a9DSVC/uGNkyeSmIeoDtsa/iWmw8R3yrRz@Nhzfnj5Jw1V@FV1TVR6hdGRQsCL27k2Nlr8kM8SKLG0V1Wby4ihgwAGTJWC544Uh8T3MkUj1ZUsopYJBKEZYGYpA@0EexB0esH0kNPdXc9tgNdzJLa4iEql0R3t5cCOoSlSMN7dGcGOuDFNNXTWreK/JdLepaQ/H9Hq1Ce8PTYdWoj6R0SV8hGVEZDJmRwxrl/CUqugwobUrq4sARmEqBnG7v/lnGVcKdptNVb5ur5HKdn7BcoTx0qZMPmQp3WT9IDMovY6ndUPirkF0libQzvHuL@SubVfaKXMw97EkExPDEJGs0VCAaQoPgVtu3hK0ak5vDcmlrRxLrLluFp@FdthDtFbjxNHGhOUZnCjbIJm8thmfn/f052i3hd5QdPYFHhbOzwSiNEgcBk2tOvN8NjYysu09UgP6ScplZasICuJ4ge6sombj@8ylRIRi8hg/mL/Y07JUQwPRPEmTGp/eExORXNZN6eM6jESX6neO1@wVNYXejUqNef2sl8G8wV7DT@uWGiVA3DwFiq6Lq0rE3lC4rN5x1NcAgcGbeYGsZ/B2F6VPlK2ja6yWWBpvc3tGtuL82hLjk8xO9qln8aMawNuH6ALWnfLQe8jz3/XUK/5TSaIKolvNo3YkNwHYimHOHR7NB1Rau5uQooYoHINVv/anY/4qnV5wLj5ss2vXVdmS4InIg1sdnSESZ1Giysnspk55TlAdO96oPvRkk6j1yCqW7@O9ORAOEYhOLbCDKtZ4istabs3ew9P4WyZpn@3FmlgpCVa5457TDmylbaL/Vb5pkN0qy4BgHjMxJ3KszMFPrRrqIbzNlxPHixT3Nt6t6WsPaEOGgzfSHGqk@MSidpT1udWN0@DBdJVIRoj3EcEp5twoHMQE2xYKlOWGaHzDZosNSGNrFVAfpRaUffaUPDYd69ZFTTR0TO9US/3wz/@4mfoKKC5Qc8YTYhF4brAsdk@IkTQ6jYcmifYPPdtFsZW@U1y7pmnxT06sa7CFmV@Mj2LOXejv49jViu4TbBTs6m01@@OifzQVKxBhRjsnEI2lK69UAS6wtg72vsLojvUqqUTLJrUaXhVo3g3E0Q6u5RPJRnfpvaJbq1odMHPWc6mUtqEyu5EphTkyZbJFA9uq@bulUWxkENE2YUHYQf5P2jJmBf2E4lXruqfmrKn7qj29RsqwTXPfNj2KWzsZwLxUjG@yRS1c0o2u2qfdVttJv9DbDLP15bKKkwp9vgNdZF36zoDRVyp3X5rLBVFSpUtQNKha2xCEE1i0p2SnViRveI9g75R58ZV2ARmN8k8K@8dHL9ol21sRr8b5R5GA48MPx9QW/TY/RffitKsKSIrqOF7TePhfIrDBvnaS0nGyEU12hMRZ5TnEpKaS1aDn72kQtmaD2wT31CiqxSfmaO4EmsZ2puZ3pQ2mfSIq5EAWwWzcI1mL8tfgsDFtqKmBfl3nr1Ddm5EkPjCCg@YjC3iXdYKZVzgeax6cErfyMptEZz69hJCIkdCQBbC0/qVddXS3WLC8q4n0qP55fQccSA1BpJRCKiiLTwC7A5dO0jsaF6VmT2UiIRJYS4UTZhCB@S/edFBST66wrl/AOjPFIAOdpyq3xNpKmmhuYsSckJuiFfiUH2KwBrZEwzMY3Aa42egCY2p/E0TdMVQztKmgN0o5zNu5@jb6p2O1WNBGIvgtAbF8/rhBJlCBx19fGNNK73Ll22OSBEG5i671FI5qzYKpS609gxfTtNfG5vTnXDWT6oi2oaE2p@0cj9DX3p2YsqzPhNPLQmzLl15bwtVjVwZBwYRmnzcF4XytJ8g46LJpbV@8ZdP6sdUCjNPgO0KIBEm/mG00PWtiLSPUFa2lI8CXdfHd0S3VYP49hIwRoSNnXSI5VisqRgmTDfRhq0xCOhpVRuOVRE@vXT3AEbhDRUoK5yoBVolLh@imlGulp@/pL9G3DHM3nwFarskPmBoqUjhet3VSS0sxIfyXJhKvG8jjNBPvkx5sxlU8zb7ZGYqcJSfL/Q9OPj8gYF4mkhRAD1rxl4qRKFKC@eRukJ94qWqaEkMypr4T4glnf@I4xKyRUCP@Nu3lV4ESya5pmdZaxOPyjCqi5lgpeR/w9QLYu2yCChtXW8nImPqsn0zhckLc5jz4EsnOW4leIqli2JdIn619jNoDH8AwS4X7Zqijue5OhaxfdjzQMiVbFjHh/TrO4ij5q@Tzqbd@S8fCalQFQwTyCIQrUEY6GsKFxRRuo5dgdrZFPY9T95QMMU@vFcDdE1KhRcZkeWqI@JlcIGFNa9ft1OgGziSQf9Y3UDv@a87c35Ic31L7TqGNXWpH6qLatWcmSYTVp1W6y@0/uaGKaxvFopzacRyNPAttPureajGXoKEiG@Jo6pY1J9PkmmfR8tkj3zzfrr1p24BngC0G9KiUhfxgAnEADbVpl3zS0uNZ6o74BtU17qgJPpNEsAU2RXnltbER9tRz6@Q3VTSH75cvAqM0OSKMv6H1NKkCO2qhesmHJ7YilZLB6QfRuIxeQ2dVcSsJ6T3EN6RpoGSuj7KsRX86w6V5gwNBsrbz5J008ghfJCcioYfBPqY0OzlLBM1EeR4Hc/1Z9OnPc6K2EA7Hk5aI@WmU6yRbTg7llDvOOBECEoFFxGF/H9pu/@TH/@Z@//@OPv/zhz3/58Q8//vUPv/@//49ffv3Db3/3t3/bn/3pX3/59S9//PW3//Rvv/633/7pl7/rB3/3u7/5j//8X3/48/8P)
] |
[Question]
[
I guess I'm not the only one who have seen this kind of image on Facebook (and other sites).
[](https://i.stack.imgur.com/vgvsh.png)
The picture above was posted 16 days ago, and has accumulated 51 k comments. Some answers: 0, 4, 8, 48, 88, 120, 124 and so on.
# Challenge:
The mathematics in the question doesn't make sense1, so we can't find the correct answer by looking at the equation (or whatever you'd call that mess of numbers and operators). However, there's a very large number of people who have answered, and 10% of those people are right!
Let's find the right answer!
---
Take an integer, percent, decimal value in `0-1`, or fraction `N` representing how many percent of the test group who failed the question (or optionally how many answered correctly), and a list of numbers representing the answers people post.
Find the number that `100-N` percent of the test group answered and output it. If there are more than one answer that matches this criterion, then you must output all of them.
If there are no answers that are represented `100-N` percent of the time then you must output the number that's closest (measured in number of answers from `100-N`).
To make the input rules for `N` clear: If 90 % fails, then you may input `90`, `10`, `0.9` or `0.1`. You must specify which one you choose. You may assume that the percentage numbers are integers.
---
### Test cases:
In the test cases below, `N` is the percentage that failed the test. You may choose to input using any of the allowed input methods.
```
N: 90 (meaning 90 % will fail and 10 % answer correctly)
List: 3 1 5 6 2 1 3 3 2 6
Output: 5 (because 90 % of the answers weren't 5)
---
N: 50 (50 % will answer correctly)
List: 3 6 1 6
Output: 6 (because 50 % of the answers weren't 6)
---
N: 69 (31 % will answer correctly)
List: 1 9 4 2 1 9 4 3 5 1 2 5 2 4 4 5 2 1 6 4 4 3
Output: 4 (because 31% of 22 is 6.82. There are 6 fours, which is the
closest to 6.82)
---
N = 10 (90 % will answer correctly)
List: 1 2 3 4 5 6 7 8 9 10
Output: 1 2 3 4 5 6 7 8 9 10 (because 9/10 will answer correctly. All numbers
have been answered the same number of times, thus
all are equally likely to be correct.
---
N: 90
List: 1 1 1
Output: 1
```
---
[code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'")
1 Please don't argue with me here. If you "know" *the answer*, join the other 10% and post it on Facebook!
[Answer]
# [MATL](https://github.com/lmendo/MATL), ~~16~~ 14 bytes
-1 byte thanks to @Giuseppe
-1 byte thanks to @LuisMendo
```
SY'ts/i-|tX<=)
```
**Explanation:**
```
% implicit input
S % sort
Y' % run-length encoding
ts % duplicate elements and sum (get number of elements)
/ % array right division (get array of probability for each answer)
i-| % get absolute difference with second input
tX< % duplicate and get minimum value
=) % get each answer that match with the minimum value
% (implicit) convert to string and display
```
[Try it online!](https://tio.run/##y00syfn/PzhSvaRYP1O3piTCxlbz//9oQwVLBRMFIwUIbaxgCmQZAUkjIM8ETBsqmIHZxrFcBnrGhgA "MATL – Try It Online") or [verify all test cases](https://tio.run/##y00syfmf8D84Ur2kWD9Tt6YkwsZW879LyP9oYwVDBVMFMwUjIG0MhEYKZrFcBnqGXEAZM6AYmGfKFW2oYKlgAlYFoo2BegyBPFMgNgFCU7CMGZhtDNJhbAjSYgRUaAI23lzBAqjR0AAkZwmSAkKwPQA "MATL – Try It Online")
[Answer]
# [R](https://www.r-project.org/), 65 bytes
```
function(N,A,x=table(A))names(x)[!(y=(abs(1-x/sum(x)-N)))-min(y)]
```
[Try it online!](https://tio.run/##TUtLCoMwEN3nFNPdDJjWGA1Y6sILeIHSRRQDQk2hUYinT6ehi/IY3rzfOzm4SUhu99O2vDwORV/EbrPjc8aeyNt1DhjpfsKjQzsGVDJewr6yJwcikuvi8aBHclie2wLCZD0SCQ0KGjBQMWtGBUaIX0ddVUlZmL@Fghbq3P@y5rVi1fDVjCYnJv9aiPQB "R – Try It Online")
Takes `N` as a number between `0` and `1`, and `A` as a vector (sometimes taken from STDIN in the TIO link so I don't have to turn them to R vectors). Returns a list of strings, as allowed by the [OP](https://codegolf.stackexchange.com/questions/144240/90-fail-this-challenge/144300#comment353681_144240).
```
function(N,A){
x <- table(A) # count occurrences of each value in A
pct <- 1 - x/sum(x) # compute percentages different from each value
y <- abs(pct - N) # find distances from N
idx <- y!=min(y) # find the indices of the minimum/minima
names(x)[idx] # return the names of the table (strings)
}
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 19 bytes
```
ĠL€÷⁸L¤e€ạÐṂ¥Tị⁸QṢ¤
```
[Try it online!](https://tio.run/##AV0Aov9qZWxsef//xKBM4oKsw7figbhMwqRl4oKs4bqhw5DhuYLCpVThu4vigbhR4bmiwqT/w6fFkuG5mP//WzEsIDIsIDMsIDQsIDUsIDYsIDcsIDgsIDksIDEwXf8wLjE "Jelly – Try It Online")
[Answer]
# JavaScript (ES7), ~~103~~ 99 bytes
Takes input as `(a, r)` where ***a*** is the list of answers and ***r*** is the expected success ratio in **[0...1]**. Returns a **[`Set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set)**.
```
(a,r,m)=>a.map(n=>(d=a.reduce((p,c)=>p-=c==n,r*a.length)**2)>m||(d==m?s:(m=d,s=new Set)).add(n))&&s
```
### Test cases
```
let f =
(a,r,m)=>a.map(n=>(d=a.reduce((p,c)=>p-=c==n,r*a.length)**2)>m||(d==m?s:(m=d,s=new Set)).add(n))&&s
format = s => JSON.stringify(Array.from(s))
console.log(format(f([3, 1, 5, 6, 2, 1, 3, 3, 2, 6], 0.1))) // 5
console.log(format(f([3, 6, 1, 6], 0.5))) // 6
console.log(format(f([1, 9, 4, 2, 1, 9, 4, 3, 5, 1, 2, 5, 2, 4, 4, 5, 2, 1, 6, 4, 4, 3], 0.31))) // 4
console.log(format(f([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 0.90))) // 1 2 3 4 5 6 7 8 9 10
console.log(format(f([1, 1, 1], 0.10))) // 1
```
[Answer]
# [Python 2](https://docs.python.org/2/), 91 bytes
```
def f(l,p):c=[(abs(len(l)*p-l.count(a)),a)for a in l];print{v for x,v in c if x==min(c)[0]}
```
[Try it online!](https://tio.run/##bY7BasMwEETv/YqBHiKVrbEkW0ka/CXGB9eNqECVReKGlNBvd1cKlB6KQLMavR0mfS3vc9Tr@nZ0cCJQki9T14vx9SzCMYogn9JzqKb5My5ilJJG6eYTRviIMBzSycfldkH2rnTJ7gTvcO26Dx/FJPt6@F6d6A0pasmSZjV8NNmB6kpJPKJ9KIDlr2K22bRsbhT2aKBxV4OWJ8235ldTVMGW2Wyqcwp@EZIDTIlt7gma9zJrscWOc1T9F91n8j8od1LcSP3WVOsP "Python 2 – Try It Online")
Takes P as success (`0.1` = 10% correct)
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E), ~~19~~ ~~16~~ 15 bytes
Takes rate of success in the form `0.31` (meaning 31% succeeds).
```
{γD€gDO/IαWQϘÙ
```
[Try it online!](https://tio.run/##MzBNTDJM/f@/@txml0dNa9Jd/PU9z20MDzzcf3rO4Zn//0cb6hiDYCyXnikA "05AB1E – Try It Online")
] |
[Question]
[
Your geologist buddy nearly kicked down your office door as he burst in, eyes wide in excitement, and asked you to come with him to a site he just discovered. On the way he explains that he thinks he literally just struck gold. Only problem is, it's buried deep underground in a cavern with a very unstable roof. It's too dangerous to go spelunking, so he wants you to program one of his cave exploring robots to collect as much gold as it can before he pulls it back up. He also mentions that he's probed the cavern and found some wildlife that could be harmful to the robots, and also that he'd dropped some equipment down there that might still be useable. Each robot is equipped with two arms and a range of sensors. When you arrive at the scene, he tells you he's planning on recruiting more coders, and whoever does the best job will be rewarded.
Now, down to the nitty-gritty. The sensors pass information to your program as ASCII characters. Here's a list of what each character means and descriptions for anything the bot might encounter in the cave:
```
Code Name/Description
Y Your bot
You do things
@ Other bots
They do other things
- Ground
This doesn't do things
C Centipede
These will bite you and leave a poison effect
The bite will cost 1 health
The poison effect will last for 3 turns, costing 2 health each turn
B Bats
If bats end up in the same space you are, your bot runs in a random direction during its turn rather than what you told it to do
L Lion (because reasons)
Lions deal heavy damage, 10 health, each time they attack
F Food
Eating this will give you 5 health
Can only be used once
W Water
Drinking this will cure poison effects early
Can only be used once
R Revealer
This will increase the range of your visibility to an 11x11 grid
The extra range will only be 75% correct, but the original range won't be effected
K Knife
You do twice as much damage to other bots if you have a knife
G Gold
The whole reason you're doing this in the first place
N Nurse Nina
She mend you good
Restores your health by 10 while you occupy the same space as her
} Boulder
You can't walk over boulders, and neither can anything else
P Pit
If you fall in a pit, you will be stuck for 3 turns
```
The size of the cavern grows based on how many bots are participating. It starts as a 30x30, and it gets an extra 10x10 for every bot. So 2 bots will explore a 50x50 cavern.
Bots start with 20 health, but they don't have a maximum limit on health.
**Input:**
You'll receive input through STDIN in the following format:
```
20,5,10,1,0,True,False <-health, number gold pieces, number of turns your bot has lasted, number of until the poison wears off, number of turns until you are no longer stuck in a pit, if you have a revealer, if you have a knife
-----
-G}--
--Y-L
-C---
---B-
```
The first line contains information about your bot, and the rest is the grid that your bot can see. If your bot is against one of the 4 walls of the cavern, you will get a grid that looks more like this (in the case of being all the way to the West):
```
---
}--
Y--
---
---
```
The cavern does not wrap around, and neither does your vision. The walls of the cavern are not marked, the only indication your bot receives that it is nearing a wall is its view being diminished. With the Revealer, you might get something like this:
```
--------C--
LW--------B
---K-N-----
--------BR-
-F---------
--B--Y---@N
-W@---F----
------K-F--
----@-}----
R@---G}--}-
--------G-R
```
**Output:**
You get two moves per turn, which you output in the following format:
```
MNNANW <- Moves are groups of 3 characters representing the action and the direction
```
Possible actions are the following:
```
M Move - Move your bot in the specified direction
A Attack - Attack the square in the specified direction
H Hold - Do nothing
```
Possible directions are the following:
```
NN - North (up)
NE - Northeast (up-right)
EE - East (right)
SE - Southeast (down-right)
SS - South
SW - Southwest
WW - West
NW - Northwest
```
The moves are applied from left to right.
**Turns:**
Turns progress in the following fashion:
1. Poison effects are applied to any player who has been poisoned
2. Non-bots move and attack
2a. Lions, Centipedes, and Bats move randomly
2b. Lions and Centipedes will attack everything that is directly adjacent to it (including diagonally)
2c. The bat effect will only be applied to a bot if it is on the same space as the bat
2d. Nurse Nina will stay in a location for 3 turns, and then jump to a random location.
3. Bots move
3a. If your bot gives invalid output, it won't move
3b. Your bot will try to get as close to the space designated by the output as possible (see the note at the bottom for more detail)
3c. One attack to a Centipede, Lion, or Bat will kill it
3d. Attacking another bot without a knife will do 5 damage, and 10 with a knife
**Rules:**
1. Stick to common languages that can be run on OS X or Linux.
2. You can optionally write up to and not exceeding 1kb data to a file
**Scoring:**
Bots will only be in the cavern until only one remains, or until 50 turns have gone by, whichever comes first.
Your bot will be judged on the sum of the number of gold coins it collected and how many turns it lasted.
Controller code can be downloaded for testing [here](https://drive.google.com/file/d/0B0S-KjeVoiwPVmZoOC1idG5FcDQ/view?usp=sharing) (make a folder called "bots" in the same directory that you download it to, and put your bot inside "bots") You'll need NumPy to run it. Feel free to dig through it, but you'll have to excuse the mess...
Here's some code for a random bot:
```
#!/usr/bin/python
import random as r
a = ['M','A','H']
d = ['NN','NE','EE','SE','SS','SW','WW','NW']
print(a[r.randint(0,2)]+d[r.randint(0,7)]+a[r.randint(0,2)]+d[r.randint(0,7)])
```
\*\*\*\*Your bot will always move in the general direction your output specifies, but if it is obstructed by a rock or a wall, the exact direction depends on the circumstance. For instance, if your bot is against a wall like so:
```
---
}--
Y--
---
---
```
and your output is
```
MNWMSW
```
your bot will move one space down. It couldn't move North or West, so that move had no effect. It could move South (and did) but couldn't move West. However, if your bot tried to move Northeast, it would go directly to that space (diagonal movement is diagonal, not procedural)
**Leaderboard**
These are the average scores of 4 games.
```
The bot of Survival: 54.75
Coward: 52.25
Pufferfish: 50.00
Randombot: 50.00
Indiana Jones: 47.50
TheoremBot: 46.50
```
[Answer]
# Indiana Jones, Python 2
This bot is not afraid of anything. It will try to get the gold; and if it can't find any, it will try to stab opponents with knives.
```
#!/usr/bin/env python
import sys
import random
data = sys.stdin.readlines()
health, gold, turns, poison_remaining, pit_remaining, revealer, knife = eval(data[0])
lines = data[1:]
myloc = [-1, -1]
width, height = len(lines[0]), len(lines)
for y, line in enumerate(lines):
if line.find('Y')>-1:
myloc = [line.index('Y'), y]
if myloc[0]<width/2:
padding = int(width/2-myloc[0])
lines = ['-'*padding+line for line in lines]
myloc[0]+=padding
elif myloc[0]>width/2+1:
padding = int(myloc[0]-width/2-1)
lines = [line+'-'*padding for line in lines]
if myloc[1]<height/2:
padding = int(height/2-myloc[1])
lines = ['-'*width]*padding + lines
myloc[1]+=padding
elif myloc[1]>height/2+1:
padding = int(myloc[1]-height/2-1)
lines = lines + ['-'*width]*padding
uddirections = {1:'N',0:'',-1:'S'}
lrdirections = {1:'E',0:'',-1:'W'}
golds = {}
for y, line in enumerate(lines):
if 'G' in line:
x = line.index('G')
direction = ((uddirections[max(min(myloc[1]-y,1),-1)]+lrdirections[max(min(x-myloc[0],1),-1)])*2)[:2]
distance = max(abs(myloc[0]-x), abs(myloc[1]-y))
golds[distance] = direction
bots = {}
for y, line in enumerate(lines):
if '@' in line:
x = line.index('@')
direction = ((uddirections[max(min(myloc[1]-y,1),-1)]+lrdirections[max(min(x-myloc[0],1),-1)])*2)[:2]
distance = max(abs(myloc[0]-x), abs(myloc[1]-y))
bots[distance] = direction
foods = {}
for y, line in enumerate(lines):
if 'F' in line:
x = line.index('F')
direction = ((uddirections[max(min(myloc[1]-y,1),-1)]+lrdirections[max(min(x-myloc[0],1),-1)])*2)[:2]
distance = max(abs(myloc[0]-x), abs(myloc[1]-y))
foods[distance] = direction
knives = {}
for y, line in enumerate(lines):
if 'K' in line:
x = line.index('K')
direction = ((uddirections[max(min(myloc[1]-y,1),-1)]+lrdirections[max(min(x-myloc[0],1),-1)])*2)[:2]
distance = max(abs(myloc[0]-x), abs(myloc[1]-y))
knives[distance] = direction
if golds:
direction = golds[min(golds.keys())]
elif not knife and knives:
direction = knives[min(knives.keys())]
elif health<20 and foods:
direction = foods[min(foods.keys())]
elif bots and knife:
direction = bots[min(bots.keys())]
if min(bots.keys())==1:
print ('A'+direction)*2
sys.exit(0)
elif min(bots.keys())==2:
print 'M'+direction+'A'+direction
sys.exit(0)
else:
print ('M'+random.choice('NS')+random.choice('NEWS'))*2
sys.exit(0)
print ('M'+direction)*2
```
[Answer]
# Coward, python3
A coward always runs from potential threats.
However, if he feels super strong, he will suddenly run amok
and stab everything near him.
The problem with the current implementation is that move commands are issued without knowledge whether it is the first or the second move.
```
#!/usr/bin/env python3.4
import sys, random
class Coward():
"""
A coward always runs from potential threats.
However, if he feels super strong, he will suddenly run amok
and stab everything near him.
"""
def __init__(self, hp, gold, turn, poison, pit, revealer, knife):
self.hp=int(hp)
self.gold=int(gold)
if knife=="True": self.knife=True
else: self.knife=False
self.pit=int(pit)
self.poison=int(poison)
def readGrid(self, grid):
self.grid=grid.split("\n")
@property
def _confidence(self):
return self.hp+5*self.knife-2*self.poison
@property
def _lineOfY(self):
for i, line in enumerate(self.grid):
if "Y" in line:
return i
@property
def _colOfY(self):
return self.grid[self._lineOfY].index("Y")
@property
def _maxX(self):
return len(self.grid)-1
@property
def _maxY(self):
return len(self.grid[0])-1
def move(self, step):
d = {'NN':(0,-1),'NE':(1,-1),'EE':(1,0),'SE':(1,1),'SS':(0,1),'SW':(-1,1),'WW':(-1,0),'NW':(-1,-1)}
c2d={(0,-1):'NN',(1,-1):'NE',(1,0):"EE",(1,1):"SE",(0,1):"SS",(-1,1):"SW",(-1,0):"WW",(-1,-1):"NW"}
#Don't move into wall/ boulder/ pit
#print(d, file=sys.stderr)
for k,v in list(d.items()):
x=self._lineOfY+v[0]
y=self._colOfY+v[1]
#print (k, v ,x , y, file=sys.stderr)
if x<0 or y<0 or x>self._maxX or y>self._maxY:
#print ("Out of bounds: ", k, file=sys.stderr)
del d[k]
elif self.grid[x][y]=="}" or self.grid[x][y]=="P":
del d[k]
#Always avoid bats, and enemys
for dx in range(-2,3):
for dy in range(-2,3):
x=self._lineOfY+dx
y=self._colOfY+dy
if x<0 or y<0 or x>self._maxX or y>self._maxY:
continue;
if self.grid[x][y] in ["B", "L", "C", "@"]:
for k in self._toDirection(dx, dy):
if k in d: del d[k] #Too many threats from all sides can paralyze the Coward: nowhere to go...
#print(d, file=sys.stderr)
tomove=[]
#Neighboring fields
for dx in [-1,1]:
for dy in [-1,1]:
x=self._lineOfY+dx
y=self._colOfY+dy
if x<0 or y<0 or x>self._maxX or y>self._maxY:
continue
if self.poison>0 and self.grid[x][y]=="W":
for k,v in d.items():
if v==(dx,dy):
tomove.append(k)
if self.grid[x][y]=="N": #Always go to nurse, even if dangerous
tomove.append(c2d[(x,y)])
if self.grid[x][y] in ["F","K","G"]: #Go to Food, Knife or Gold, if save
for k,v in d.items():
if v==(dx,dy):
tomove.append(k)
#Further away: Go towards food, knife and gold and Nina if save.
for target in ["N", "F", "G", "K"]:
for dx in [-2,2]:
for dy in [-2,2]:
x=self._lineOfY+dx
y=self._colOfY+dy
if x<0 or y<0 or x>self._maxX or y>self._maxY:
continue
if self.grid[x][y]==target:
l=[ k for k in self._toDirection(dx,dy) if k in d]
if l: tomove.append(random.choice(l))
s=list(d.keys())
random.shuffle(s)
tomove+=s
try:
return "M"+tomove[step-1]
except IndexError:
return ""
def attack(self, step):
c2d={(0,-1):'NN',(1,-1):'NE',(1,0):"EE",(1,1):"SE",(0,1):"SS",(-1,1):"SW",(-1,0):"WW",(-1,-1):"NW"}
#If Bot next to you: always attack
for k,v in c2d.items():
x=self._lineOfY+k[0]
y=self._colOfY+k[1]
if x<0 or y<0 or x>self._maxX or y>self._maxY:
continue
if self.grid[x][y]=="@":
return "A"+v
#If Bot or monster could come closer: attack potential new position
attDir={(-2,-2):["NW"], (-2,-1):["NW","WW"], (-2,0):["WW","NW","SW"], (-2,1):["WW","SW"], (-2,2):["SW"],(-1,-2):["NW","NN"], (-1,2):["SW","SS"], (0,2):["SW","SS","SE"],(0,-2):["NW","NN","NE"],(1,-2):["NN","NE"],(1,2):["SS","SE"],(2,-2):["NE"],(2,-1):["NE","EE"], (2,0):["NE","EE","SE"], (2,1):["EE","SE"], (2,2):["SE"]}
for k,v in attDir.items():
x=self._lineOfY+k[0]
y=self._colOfY+k[1]
if x<0 or y<0 or x>self._maxX or y>self._maxY:
continue
if self.grid[x][y] in ["@","L","C","B"]:
return "A"+random.choice(v)
return ""
def _toDirection(self,dx,dy):
if dx<0:
if dy<0:
return ["WW","NW","NN"]
elif dy==0:
return ["WW","NW","SW"]
elif dy>0:
return ["WW","SW","SS"]
elif dx>0:
if dy<0:
return ["EE","NE","NN"]
elif dy==0:
return ["EE","NE","SE"]
elif dy>0:
return ["EE","SE","SS"]
elif dx==0:
if dy<0:
return ["NN","NE","NW"]
elif dy==0:
return []
elif dy>0:
return ["SS","SE","SW"]
def _nearBat(self):
for dx in range(-2,3):
for dy in range(-2,3):
x=self._lineOfY+dx
y=self._colOfY+dy
if x<0 or y<0:
continue;
if self.grid[x][y]=="B":
return True
return False
def makeTurn(self):
try:
command=""
#If stuck, just attack
if self.pit:
command+=self.attack(1)+self.attack(2)
#Always run from bats
if self._nearBat:
command+=self.move(1)+self.move(2)
#If high-confidence: attack
if self._confidence>30:
command+=self.attack(1)+self.attack(2)
#Else: Move somewhere
command+=self.move(1)+self.move(2)
#Just in case, two random attacks
d = ['NN','NE','EE','SE','SS','SW','WW','NW']
a=random.choice(d)
b=random.choice([ x for x in d if x!=a])
command+="A"+a+"A"+b
return command[:6]
except Exception as e:
#print (e, file=sys.stderr)
#Attacking is better than nothing
d = ['NN','NE','EE','SE','SS','SW','WW','NW']
a=random.choice(d)
b=random.choice([ x for x in d if x!=a])
return "A"+a+"A"+b
info=sys.stdin.readline()
grid=sys.stdin.read()
info=info.split(",")
bot=Coward(*info)
bot.readGrid(grid)
t=bot.makeTurn()
#print(t, file=sys.stderr)
print(t)
```
[Answer]
## The bot of survival - Python 2
```
from __future__ import print_function
health,gold,survived,poison,pit,revealer,knife = input()
if pit:
exit()
#Yes, this is python 2, despite the use of input()
lines = []
try:
while True:
lines.append(raw_input())
except EOFError:
pass
CMOVES={"NW":(-1,-1),"NN":(-1,+0),"NE":(-1,+1),
"WW":(+0,-1), "EE":(-0,+1),
"SW":(+1,-1),"SS":(+1,+0),"SE":(+1,+1),
}
MOVES={v:k for k,v in CMOVES.iteritems()}
import sys
def get_your_pos():
for row,line in enumerate(lines):
for col,square in enumerate(line):
if square == "Y":
return row,col
raise ValueError("Your bot is not present.")
def isnearby(thing,p=None):
your_pos = p or get_your_pos()
for move in MOVES:
yp = your_pos[0]+move[0],your_pos[1]+move[1]
try:
if yp[0] >= 0 and yp[1] >= 0 and lines[yp[0]][yp[1]] == thing:
return move
except IndexError:
#Edge of cavern
pass
for turn in range(2):
import random
nprio = .5
if health > 25:
nprio -= .2
elif health < 10:
nprio += .3
if poison:
nprio += .18
#heal
motive = how = None
if random.random() < nprio:
nurse = isnearby("N")
if nurse:
motive = "M"
how = MOVES[nurse]
elif random.random() < nprio:
food = isnearby("F")
if food:
motive = "M"
how = MOVES[food]
#cure poison
if poison and not motive:
water = isnearby("W")
if water:
motive = "M"
how = MOVES[water]
if not motive:
#Kill lions, bats, and centipedes
for animal in ("L","B","C"):
animal = isnearby(animal)
if animal:
motive = "A"
how = MOVES[animal]
y = get_your_pos()
y = y[0]+animal[0],y[1]+animal[1]
lines = map(list,lines)
lines[y[0]][y[1]] = "-"
break
else:
#Pick up knives
if not knife:
knife = isnearby("K")
if knife:
motive = "M"
how = MOVES[knife]
#Attack other bots
else:
prey = isnearby("@")
if prey:
motive = "A"
how = MOVES[prey]
#Get gold
gold = isnearby("G")
if gold and not motive:
motive = "M"
how = MOVES[gold]
def isvalidmove(c):
c = CMOVES[c]
y = get_your_pos()
y=(y[0]+c[0],y[1]+c[1])
if y[0] >= 0 and y[1] >= 0:
try:
lines[y[0]][y[1]]
except LookupError:
pass
else:
return True
if turn and not motive:
motive = "M"
while not (how and how not in (isnearby("}"),isnearby("P"),isnearby("@"))\
and isvalidmove(how)):
how = random.choice(CMOVES.keys())
if not motive:break
if not turn and motive == "M":
lines = map(list,lines)
yp = get_your_pos()
lines[yp[0]][yp[1]] = "-"
yp=[yp[0]+CMOVES[how][0],yp[1]+CMOVES[how][1]]
lines[yp[0]][yp[1]] = "Y"
print(motive+how,end="")
else:
exit()
#Nothing found on first move
def isvaguelynearby(thing):
your_pos = get_your_pos()
for move in MOVES:
yp = your_pos[0]+move[0],your_pos[1]+move[1]
try:
if yp[0] >= 0 and yp[1] >= 0 and board[yp[0]][yp[1]] != "P":
dest = isnearby(thing,yp)
if dest:
return move,dest
except IndexError:
#Edge of cavern
pass
if random.random() < nprio:
dests = isvaguelynearby("N")
if not dests and random.random() < nprio:
dests = isvaguelynearby("F")
if dests:
m1,m2 = MOVES[dests[0]],MOVES[dests[1]]
print("M" + m1 + "M" + m2)
exit()
dests = (poison and isvaguelynearby("W")) or (not knife and isvaguelynearby("K"))\
or isvaguelynearby("G")
prey = isvaguelynearby("L") or isvaguelynearby("B") or isvaguelynearby("C") or \
(knife and isvaguelynearby("@"))
if dests:
m1,m2 = MOVES[dests[0]],MOVES[dests[1]]
print("M" + m1 + "M" + m2)
elif prey:
m1,m2 = MOVES[prey[0]],MOVES[prey[1]]
print("M" + m1 + "A" + m2)
else:
how = None
while not (how and how not in (isnearby("}"),isnearby("P"),isnearby("@"))\
and isvalidmove(how)):
how = random.choice(CMOVES.keys())
print("M"+how,end="")
lines = map(list,lines)
yp = get_your_pos()
lines[yp[0]][yp[1]] = "-"
yp=[yp[0]+CMOVES[how][0],yp[1]+CMOVES[how][1]]
lines[yp[0]][yp[1]] = "Y"
while not (how and how not in (isnearby("}"),isnearby("P"),isnearby("@"))\
and isvalidmove(how)):
how = random.choice(CMOVES.keys())
print("M"+how)
```
Edit: added better pit avoidance.
[Answer]
# Pufferfish, Python 3+
I'm just that person.
```
#!/usr/bin/env python3.4
import random
def select():
return "A"+["NN","NE","EE","SE","SS","SW","WW","NW"][random.randint(0,7)]
print(select()+select())
```
] |
[Question]
[
Let \$n > 0\$. Let \$X = 1, 2,...,n\$ and \$Y = n+1, n+2, ..., 2n\$. Define \$a(n)\$ as the number of permutations \$p\$ of \$Y\$ such that every element of \$X + p(Y)\$ is prime. For example:
```
n = 2
X = [1,2]
Y = [3,4]
p_0(Y) = [3,4] => X + p0(Y) = [4,6] => No
p_1(Y) = [4,3] => X + p1(Y) = [5,5] => Yes
a(2) = 1
```
In as few bytes as possible, write a program or function which produces this sequence ([A070897](https://oeis.org/A070897)), either as an infinite list on STDOUT, or in your interpreter of choice.
The output should start at \$n=1\$, and each entry should be on a newline and undecorated, i.e.:
```
1
1
1
1
2
...
```
## Examples
\$a(1)=1\$ because each list `[1]`, `[2]` has only 1 element
\$a(5)=2\$ because there are two permutations: `[(1,10),(2,9),(3,8),(4,7),(5,6)]` and `[(1,6),(2,9),(3,10),(4,7),(5,8)]`
## Rules
No built-in primality tests. No lookup table ;). No standard loopholes.
[Answer]
# Pyth - 35 32 27 bytes
The obvious approach. The while loop logic is taking a lot of bytes. Thanks to @Jakube for telling me about `.V` and saving a lot of bytes. Explanation coming soon.
```
.V1lf!sm%[[email protected]](/cdn-cgi/l/email-protection)
```
[Try first n here online](http://pyth.herokuapp.com/?code=K1WgQKlf!sm%25h.!tddm%2Bhk%40TklT.prhKhyK%3DhK&input=6&debug=0)
[Answer]
# CJam, ~~38 35~~ 32 bytes
```
0{)_e!{ee{1b1$+)_m!)\)%},!},,p}h
```
This is an infinite list version. If you run it using the [Java compiler](https://sourceforge.net/projects/cjam/), you will keep on getting result for increasing `n` on each line until the program crashes (if it does. Did not test).
For sanity, run the finite version [using this link](http://cjam.aditsu.net/#code=ri%7B)%3AXe!%7Bee%7B1bX%2B)_m!)%5C)%25%7D%2C!%7D%2C%2Cp%7D%2F&input=6). You can change the number in the input to see a longer list.
**How it works**:
```
0{ }h e# This acts as an infinite do-while loop here
)_ e# Starting from 0, increment the number and copy it
e# Lets call this number at each iteration as N
e! e# Get all possible permutations of the array 0..N-1
{ }, e# Filter the list of permutations based on this code block
ee e# Convert the permutation array into an [index value]
e# pair array. For ex. [5 2]ee gives [[0 5] [1 2]]
{ }, e# Pass each index value pair through this filter
1b1$+) e# Sum the index and value and add current N + 1 to it
e# At this point, we have something equivalent to
e# pairwise addition of [1 .. n] and [n .. 2n - 1]
_m!)\)% e# Now we do ((N - 1)! + 1)%N to see if N is prime
e# This is Wilson's theorem and will give 0 for primes
! e# Now we have a filtered index-value pairs which all
e# correspond to non-prime numbers. If the list is empty,
e# Then all numbers are prime. Thus we do a ! on empty list
e# to get truthy.
,p e# Take the total permutations where X + pN(Y) are all
e# primes and print the number to STDOUT immediately
e# We are left with the initial incremented N on stack
e# which is always non-zero, so the loop continues
e# infinitely
```
*UPDATE: 2 bytes saved, thanks to Martin!*
[Answer]
# Python 2, 147 bytes
```
from itertools import*
n=1;R=range
while n:print sum(all(x%d for x in map(sum,zip(R(n),c))for d in R(2,x))for c in permutations(R(n+2,2*n+2)));n+=1
```
The `import itertools` rule of thumb tells me there's probably a better way...
A few bytes are saved by summing `[0 ... n-1]` with `[n+2 ... 2n+1]` instead.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 20 bytes
```
+RŒ!+€RÆḍỊP€SṄ¬
1Ç1#
```
[Try it online!](https://tio.run/##y0rNyan8/1876OgkRe1HTWuCDrc93NH7cHdXAJAT/HBny6E1XIaH2w2V//8HAA "Jelly – Try It Online")
This gets exponentially slower for each new \$n\$ it calculates, so times out on TIO after having printed \$a(9) = 40\$. Given enough time/memory however, it will eventually print all the elements in the sequence.
## How it works
```
1Ç1# - Main link. No arguments
1 - Starting from n = 1...
# - ...count up n = 1, 2, ...
1 - ...until 1 n returns true when...
Ç - ...run over the helper link.
As the helper link ends with ¬ (logical NOT), no n will return true
+RŒ!+€RÆḍỊP€SṄ¬ - Helper link. Takes n on the left
R - [1, 2, ..., n]
+ - [n+1, n+2, ..., 2n]
Œ! - All permutations
R - [1, 2, ..., n]
€ - For each perumation:
+ - Add [1, 2, ..., n] elementwise
Æḍ - Proper divisor counts
Ị - Equal to 1?
€ - For each:
P - All true?
S - Count the true permutations
Ṅ - Print
¬ - Logical NOT to continue the infinite loop
```
] |
[Question]
[
Your task is to build a vim script or provide a sequence of keystrokes that will operate on a single line of text with up to 140 printable ASCII characters (anywhere in a file, with the cursor starting anywhere in the line) and reverse every space-separated string in the sentence while keeping the strings in the same order.
For example, the input:
```
roF emos nosaer m'I gnisu a retcarahc-041 timil no siht noitseuq neve hguoht ti t'nseod evlovni .rettiwT RACECAR
```
should return:
```
For some reason I'm using a 140-character limit on this question even though it doesn't involve Twitter. RACECAR
```
The script with the fewest characters, or the sequence of the fewest keystrokes, to achieve this result is the winner.
[Answer]
# 28 25 24 keystrokes
```
:se ri<CR>^qqct <C-r>"<Esc>f l@qq@q
```
Recursive macro, I assume that `Ctrl`-`r` counts as one keystroke.
The hardest part was to make sure the macro stays on the same line and does not destroy the rest of the file.
[Answer]
# 24 keystrokes
```
ma:s/ /\r/g
V'a:!rev
gvJ
```
I know this question is very old, but I love vimgolf so I couldn't *not* post an answer on one of the few vim-specific challenges on the site. Plus this solution is tied with Orlp's.
Just like Orlp said, the hardest part was making sure that the rest of the buffer was unmodified. If it weren't for that restriction, we could simply do:
```
:s/ /\r/g
!{rev
V}J
```
(19 keystrokes) but we need a little bit more to keep it buffer-safe. This assumes a unix environment.
] |
[Question]
[
Your task is to write a program in x86 machine language (any version you like) that will run through as many instructions as possible and then halt, using a maximum of 32 bytes of code and starting with zeroed-out registers.
You can assume anything about the random-access memory you like, as long as it's in a usable format for the x86 machine.
[Answer]
## 2524224 instructions
My program:
```
_start:
mov bl, _end
stc
iloop: adc [bx], al
inc bx
jnz iloop
jnc _start
a32
loop _start
hlt
_end:
```
(Technical note: this is written for nasm. The `a32` is nasm's syntax for the alternate address-size prefix byte. For masm, you would replace the `a32` with `defb 0x67`.)
For clarity, here's the listing output:
```
1 _start:
2 0000 B310 mov bl, _end
3 0002 F9 stc
4 0003 1007 iloop: adc [bx], al
5 0005 43 inc bx
6 0006 75F9 jnz iloop
7 0008 73F4 jnc _start
8 000A 67 a32
9 000B E2F1 loop _start
10 000D F4 hlt
11 _end:
```
The program assumes that the processor is in real mode, and that the program is located at the bottom of a 64k segment of memory which is otherwise initialized to all-bits-zero. Its design is simple: treat the memory as a single giant unsigned integer, and increment it through all possible values, until it rolls back around to all-zeroes. Repeat this 232 times. Then halt.
The innermost loop (lines 4‒6) is responsible for incrementing the huge integer. Each iteration adds zero or one to a single byte, depending on whether there was a carry out of the previous byte. Note that every byte in the huge integer is accessed, whether or not it has changed, so this loop always iterates 216 - 14 times.
By the way, in case you were wondering, this code illustrates the reason why the x86 `inc`/`dec` instructions don't affect the carry flag: just to simplify this sort of multi-byte carry pattern. (This pattern came up more often back in the days of 8-bit microprocessors, when the original 8080 instruction set was defined.)
Line 7 causes the incrementing process to repeat until a one is carried out of the last byte, indicating that the huge integer has been reset to all-bits-zero. This takes a long time.
Lines 8‒9 mark the outermost loop, and causes this process to repeat 232 times, until the `ecx` register rolls around to zero. This is effectively equivalent to adding another 32 bits to the giant integer.
It would be possible to add another outer loop and do this again using (say) the `edx` register, and then maybe using `esi` and `edi` for even more repetitions. However, it's not worth doing. The instructions to increment and loop require four bytes. Those four bytes are taken away from the giant integer. So we lose 32 bits on the RAM counter, just to add 32 bits via a register: it ends up being a wash. The only reason `ecx` is an exception is that it has a specialized `loop` instruction that fits into only three bytes. Thus the program trades 24 bits for 32, a tiny but still positive gain of 8 bits.
It's not too hard to directly calculate the number of instructions that the program executes before it halts. However, there's a much simpler way to estimate this number. The program modifies all of its memory, less the 14 bytes that contain the program, and the `bx` and `ecx` registers. This adds up to 216 - 14 + 2 + 4 = 65528 bytes, for a total of 524224 bits. The shortcut involves realizing that, in the process of running, every single possible pattern of 524224 bits appears exactly once. For the RAM and the `ecx` register this is easy to see, since the program increments through every single value. For `bx` this is a little less obvious, since it's being changed at the same time as the value in memory is being updated. However, one can show that, given the program's structure, if a complete bit pattern were to actually appear twice, then the program would have to be in an infinite loop. Since this is not the case, each bit pattern must ultimately be visited only once. (The complete proof is left as an exercise to the reader, naturally.)
Since every possible bit pattern appears in the course of the program, the program must execute at least 2524224 instructions, which is approximately equal to 1.4 × 10157807. (The acutal number is very slightly higher, because of the jump instructions, but the difference at this magnitude is negligible.)
Obviously, this could be significantly improved by using more than 64k of RAM. I'm holding off on the next version of the code until I figure out exactly how much RAM can be accessed.
[Answer]
## ~2^(2^67) instructions
(at&t syntax)
```
start:
movq $0x1a,%rax
stc
loop:
adcb %cl,(%rax)
incq %rax
jnz loop
jnc start
hlt
```
Disassembled, 26 bytes:
```
start:
0000000000000000 movq $0x0000001a,%rax
0000000000000007 stc
loop:
0000000000000008 adcb %cl,(%rax)
000000000000000a incq %rax
000000000000000d jne loop
0000000000000013 jae start
0000000000000019 hlt
```
Similar to breadbox's solution, but there's no reason to stop at 16 bits of address. My code uses x86-64 and assumes we have 2^64 bytes of memory and we use all but the memory holding the code as a giant counter.
] |
[Question]
[
Given two strings containing only `0` and `1`, decide the probability that first appears earlier as a consecutive substring in an infinite random 0/1 stream.
You can assume that neither string is suffix of the other string, so `01, 1`, `00, 0` are invalid. (\*)
IO format flexible. Your answer should be precise given ideal floating point numbers, so [sampling](https://tio.run/##VcgxDgIhEADA/j7CrkQCFhaH6AusrckBHuZkDUsMhX/HWDrlPPzb81Lzq@0LhThGct2du4ol8C23FYQ2RuDFzH@nf6fnBF3C1bdVVV8CPQF3h49GnBJVYJedtvlk4tFKmZGlSyAE2mmhwrRFtdEdGMf4Ag) is likely not a good idea.
Shortest code wins.
# Note
* I'd like to see how much longer code without assumption `(*)`, allowing collision in a sequence but won't happen (due to fact that one string would appear earlier) or even just no extra rule(In which case `f(a,b)+f(b,a)!=1`). Therefore, you may also provide version(s) that do so, even if longer, if convenient.
# Test cases
```
0, 1 => 50%
00, 1 => 25%
10, 00 => 75%
0, 01 => 100%
011, 001 => 1/3
00, 110 => 1/2 (Example with different length input but result half)
000, 101 => 5/12 (Examples provided by Bubbler)
000, 011 => 2/5
111, 1001 => 4/7
111, 0011 => 5/12 (Suggested by Neil, longer string would likely come earlier)
(Following not required)
11, 1 => 0%
1, 11 => 100%
10, 10 => 100% (0% if you choose strict early)
01, 1 => 50% (0%)
1, 01 => 100% (50%)
```
# References
* [Penney's game](https://en.wikipedia.org/wiki/Penney%27s_game), where two strings have same length
* [Sandbox](https://codegolf.meta.stackexchange.com/a/26193/76323), where `00, 0` was required to handle
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), ~~34~~ 32 bytes
```
≔⮌E²SθIEθΣ⊞OυΣEθ×⊖⊗⁼κμ↨²Eι¬⌕λ✂ιξ
```
[Try it online!](https://tio.run/##TY3NDoIwEITvPEWP26Qm1CsnFU08qER8gQobaGwL9If49rWgB/cy2W92Z5pe2GYQKsadc7IzcMcZrUO4iBG2jJzNGHztrTQdUEoZmWiRVWn1cBDOr2cTI3XQUAXX30a0wg8Wwpf97IfU6KDExqJG47GFcghPlfQ4BaEcvBjRa/xepO7UuzxKRq6Dh5M0LaiUp2SDC3zTvyli5Jxnec553MzqAw "Charcoal – Try It Online") Link is to verbose version of code. Outputs the ratio as a fraction but not necessarily in lowest terms. Technically works for all edge cases although two identical inputs outputs `0/0`. Explanation: For the Cartesian product of the two inputs with itself, calculates which suffixes of one are prefixes of the other, then interprets that in base `2`; this is negated when the strings are compared against each other. The final denominator is simply the sum of all four values; the numerator is the sum of two of them. Example for `111` and `0011`:
```
Suffixes of 111: 111 11 1
Are they prefixes of 111? 1 1 1 = 7
Are they prefixes of 0011? 0 0 0 = -0
Suffixes of 0011: 0011 011 11 1
Are they prefixes of 111? 0 0 1 1 = -3
Are they prefixes of 0011? 1 0 0 0 = 8
Numerator = 8 - 3 = 5
Denominator = 8 - 3 + 7 - 0 = 12
```
Note that the values `7` and `8` are also half the indices at which you would expect to find `111` and `0011` respectively, which leads to the paradox that although you would expect to see `0011` first, the expected position of `111` is before that of `0011`.
26 bytes by taking input in the form of a reversed list:
```
IEθΣ⊞OυΣEθ×⊖⊗⁼κμ↨²Eι¬⌕λ✂ιξ
```
[Try it online!](https://tio.run/##TYzLCsIwFER/JWR1AxFat@60ulMLuitdXNMLDebR5iH@fWzRhbM5cIYZNWJQHk0pbdAuwQFjgjNOMEt2yxbaHMfrRAGTD5C/7lfftaUIDalAllyiARqfH2bhcc5oIjwls0IIyfYYCbaSrUMt2cUnOGk3gFn@jFa0yrf4y66UruNVVddcMl4v6PuyeZkP "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
θ Input list
E Map over elements
θ Input list
E Map over elements
κ Outer index
⁼ Equals
μ Inner index
⊗ Doubled
⊖ Decremented
× Times
ι Outer string
E Map over characters
λ Inner string
¬⌕ Begins with
ι Outer string
✂ Sliced from
ξ Innermost index
↨ Convert from base
² Literal integer `2`
Σ Take the sum
⊞Oυ Push to predefined empty list
Σ Take the sum of that list
I Cast to string
Implicitly print
```
[Answer]
# [Uiua 0.8.0](https://www.uiua.org/), 35 bytes [SBCS](http://tinyurl.com/SBCSUiua "SBCS for Uiua 0.8.0")
```
+,∩(-:∩(°⋯⇌⊢⍉⊐≡⌕),:≡(□↘)⇡⧻♭..∩¤)⊙.,
```
[Try on Uiua Pad!](https://uiua.org/pad?src=0_7_1__RiDihpAgKyziiKkoLTriiKkowrDii6_ih4ziiqLijYniipDiiaHijJUpLDriiaEo4pah4oaYKeKHoeKnu-KZrS4u4oipwqQp4oqZLiwKCkYgWzFdIFswXQojIyMKRiBbMF0gMF8xCiMjIwpGIDFfMV8wIDBfMAojIyMKRiAxXzBfMSAwXzBfMAojIyMKRiAwXzBfMV8xIDFfMV8xCiMjIwo=)
Port of Neil's answer.
## Explanation
```
⊙., # duplicate inputs in reverse order
∩( # on both pairs,
∩¤ # add an axis to both inputs
⇡⧻♭.. # dup the first twice and range the length
≡(□↘) # for each in the range,
# drop that much from the front and box the result
,: # dup top of stack to third
∩( # on both pairs,
⊐≡⌕ # find suffixes in input
⊢⍉ # first column
°⋯⇌ # reverse then un-bits, binary to number
)
-: # subtract second from top
)
+, # duplicate the second onto top then add
```
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 16 bytes
```
¹ÐƤ€eþ€¹Ƥ€Ḅạ/€UÄ
```
[Try it online!](https://tio.run/##RZDPSsNAEMbveYq5FBqIJFsNPbUHwasXUfDYNJN06zYp@WPNrUqhVx9AEf8cPao0Ch4a8D2SF4mz2ZZAdplv5ttfPmaKQmR1vc2L@7@36u4di1@6t3kjys2q/H42qTovVrVRrMtcTqfV8gEOhlAtH7Vy81TdfpU/H9vPMn@lzqDcvKjKuCAvfXqxpvuyri0DGAyGYFsdzdqLnt3RGAnLkqpPSopmxCxpZEwOVcM8VA@ZpWQPuic3o9lcICx4MgGXex5GGCQgMPCpwYN5moBDJ8I4FQlMRsLTCSIpCmqbrMXEMI/Ca@6iC04Gx6njCIx2fkrSBDZtjclQbJfqyOyrhrVzKOJZ6vsYJ4p0ilwYIMLAxwjiJOKBD4swFS4IfoUig3E4Q8BRJLj8X4OXKFqALNt1sCb4XkKXDvcgC1MYT8IwxgY@ThpURsFZu3MAadclsN0v9Wik/wM "Jelly – Try It Online")
A Jelly port of [Neil’s Charcoal answer](https://codegolf.stackexchange.com/a/269024/42248), so be sure to upvote that one too!
If odds are allowable as output, one byte can be saved (by omitting the `Ä`). If it’s allowable to reverse the order of the inputs, then a further byte can be saved (omit the last `U`).
] |
[Question]
[
This challenge is from a game, [Keep Talking And Nobody Explodes](https://keeptalkinggame.com/).
*This is like one of those toys you played with as a kid where you have to match the
pattern that appears, except this one is a knockoff that was probably purchased at
a dollar store.* – From the [manual](https://www.bombmanual.com/print/KeepTalkingAndNobodyExplodes-BombDefusalManual-v1.pdf)
# Objective
The **Simon Says** module consists of 4 colored buttons: **R**ed, **B**lue, **G**reen, and **Y**ellow. Given a sequence of button flashes and a sequence of button presses, decide whether it would disarm the module.
In the original game, the module consists of multiple stages, but in this challenge, only one stage will be considered.
# How To Disarm
* The buttons will flash in a sequence. These buttons shall be mapped accordingly to the chart below, and shall be pressed.
* You may press the wrong button in cost of a **strike**. Then the mapping will change. Only up to 2 strikes are tolerable because a 3rd strike will detonate the bomb.
* You must not press buttons anymore after the module is disarmed.
The chart:
```
Strikes\Flash Red Blue Green Yellow
0 Blue Red Yellow Green
1 Yellow Green Blue Red
2 Green Red Yellow Blue
```
(This chart is for a bomb whose serial number has a vowel. It is assumed for the purpose of this code-golf challange.)
# I/O format
The input shall be two strings consisting of `R`, `B`, `G`, and `Y`, indicating the colors. Case sensitive.
Though in the game, a stage consists of up to 5 flashes, in this challenge, there may be an arbitrary nonzero number of flashes.
An input not fitting to this format falls in *don't care* situation.
The output format is flexible.
# Examples
Let's say the button flash sequence is `GRYBB`. The followings are examples of button press sequences:
## Truthy
* `YBGRR`
* `RBYRGG` (in cost of 1 strike)
* `YBGRBG` (in cost of 1 strike)
* `YBGBGRR` (in cost of 2 strikes)
## Falsy
* `YBG` (The module isn't disarmed yet)
* `RRR` (The 3rd strike detonated the bomb)
* `YBGRRB` (You cannot press buttons anymore after the module is disarmed)
* `RRRY` (You cannot press buttons after the bomb detonates)
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 83 bytes
Expects `(a)(b)`. Returns `0` or `1`.
```
a=>b=>Buffer(a).every(g=c=>"BRGR_GYBY"[c%s%12]==b[i++]||s++%5&&g(c),s=63,i=0)&!b[i]
```
[Try it online!](https://tio.run/##fc9NC4JAEIDhe7@iFtRdrOiDusR4mEN7X7osJrFtqxmi4aoQ9N/t4xAI6flhZt65qUZZXab3apYXF9PG0CoIzhBgHcempIrNTWPKB01AQ0BQcHHiEiUJtWOd5SoCOIep70fPp/V9Z@O6CdVsamG7nqawYO7kzVGrxjAmXEhEshuNdJHbIjPzrEioFx7Kuro@Io/tOhC/b1MikQtB2F8TKAXnPfgZxAH87e3WHPNwrzI7kNMX05v5fQH7x@SH2hc "JavaScript (Node.js) – Try It Online")
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 111 bytes
Didn't do any more testing beyond the sample test cases.
```
f=(a,b,c=0)=>[...b].every((x,i)=>a[c]&&(c+="BRYGYGBRGRYB"[(i-c)*4+"RBGY".indexOf(a[c])]==x,i-c<2))&&c==a.length
```
[Try it online!](https://tio.run/##PY5Bi8IwEIXv/Rk5lIm2w7J42x0PgSVHYW6h9BDHVCvdRqpI/fXdhFVvb77vPZizv/urTP3lVo/xEJalI/DVvhL60LRtEHHfYriH6QEwV31ivpG2LEHWpAw766xhy86oBvpa9GqzVmysU9iPhzDvOsh93RKldS3fn1qXpRB5HMJ4vJ2Wr6ZQzlhmVRVp6djanDIyr/TS7p/w@2I2T@BU0eKvv8BM2w5U/iipWWvs4vTj5ZSFxPEah4BDPEJSyx8 "JavaScript (Node.js) – Try It Online")
Explanation:
* Init counter to 0
* For each character in b, check if counter is less than length of a
* Increment counter if the button is pressed correctly
* Exit early if there are 3 strikes
* Check whether the counter is equal to the length of a
[Answer]
# [05AB1E](https://github.com/Adriandmen/05AB1E/wiki/Commands), 40 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
ε.•B¸}îÑu`öVÏ•u4ôćs¾ès‡IN¾-©èʽ®}ÔèQ¾3‹*
```
Inputs in the order `button-press sequence, flash sequence`, where the `flash sequence` is a list of characters (`button-press sequence` can be either a string or character-list, doesn't matter too much).
[Try it online](https://tio.run/##yy9OTMpM/f//3Fa9Rw2LnA7tqD287vDE0oTD28IO9wNFSk0ObznSXnxo3@EVxY8aFnr6Hdqne2jl4RWHuw7tPbSu9vCUwysCD@0zftSwU@v//0gndyf3oCCuaCV3JR2lICCOBGInMI79r6ubl6@bk1hVCQA) or [verify all test cases](https://tio.run/##yy9OTMpM/R8cWlZpr6TwqG2SgpJ9hEvl/3Nb9R41LHI6tKP28LrDE0sTDm8LO9wPFCk1ObzlSHvxoX2HVxQ/algY4Xdon@6hlYdXHO46tPfQutrDUw6vCDy0z/hRw06t/zp6h7b@dw@KdHLiilaKdHIPClLSUQpyigxydwcyQAJOUAZULhLMD4Kxg4KcINxIKAVVGPtfVzcvXzcnsaoSAA).
**Explanation:**
```
ε # Map over the characters of the first (implicit) button-press sequence input:
.•B¸}îÑu`öVÏ•
# Push compressed string "rbgybrygygbrgryb"
u # Uppercase it
4ô # Split it into parts of size 4
ć # Extract head; pop and push remainder-list and first item separately
s # Swap so the remainder-list is at the top
¾è # Index the strikes-counter `¾` into it,
# which is 0 by default
s # Swap so the extracted head "RBGY" is at the top again
‡ # Transliterate the current character according to these two strings
I # Push the second flash sequence input-list
N # Push the current map-index
¾- # Subtract the strikes-counter `¾` from it
© # Store this index in variable `®` (without popping)
è # Pop and index it into the flash sequence input
Ê # Check whether the two characters are NOT equal
½ # If they aren't equal: increase the strikes-counter `¾` by 1
® # Push index `®`
}Ô # After the map: connected-uniquify the list of indices
è # Index each into the second (implicit) input-list
Q # Check if it's equal to the second (implicit) input-list
* # AND
¾3‹ # The strike-counter is smaller than 3
# (after which the result is output implicitly)
```
[See this 05AB1E tip of mine (section *How to compress strings not part of the dictionary?*)](https://codegolf.stackexchange.com/a/166851/52210) to understand why `.•B¸}îÑu`öVÏ•` is `"rbgybrygygbrgryb"`.
[Answer]
# [Retina 0.8.2](https://github.com/m-ender/retina/wiki/The-Language/a950ad7d925ec9316e3e2fb2cf5d49fd15d23e3d), 97 bytes
```
T`RGYB`Ro`.+,
^(.+)(.*,)\1
$2
\b,.
,
T`BRGY`Ro`.+,
^(.+)(.*,)\1
$2
\b,.
,
T`Yo`GRBY`.+,
^(.*),\1$
```
[Try it online!](https://tio.run/##hcoxCoRADIXhPudQmNEwoEdIk/5hExiW7MIWNgqy958VRJ3OLvnft31/8/IubVAvk0NNHKunnukVUh9D6jjmgZqR8ocTMU0uu3pEtrpC7ERd5Dw0pShMhE0UoOPeEVTpHqR6KmdXR90AubP9AQ "Retina 0.8.2 – Try It Online") Link includes test cases. Explanation:
```
T`RGYB`Ro`.+,
```
Translate the flashes according to the first row of the chart. `Ro` here stands for the reverse of the other pattern; the `R` in that pattern is literal because it does not precede a range or special character.
```
^(.+)(.*,)\1
$2
```
Remove all correct button presses.
```
\b,.
,
```
Remove a strike, but only if there are still more buttons to press.
```
T`BRGY`Ro`.+,
```
Update the flashes so that they match the second row of the chart. Note that this means translating from the first row to the second row.
```
^(.+)(.*,)\1
$2
\b,.
,
```
Remove any further correct button presses and strike.
```
T`Yo`GRBY`.+,
```
Update the flashes so that they match the third row of the chart. Here `o` has no `R` so it just expands to `YGRBY`, where the final `Y` is ignored because it's a duplicate.
```
^(.*),\1$
```
Check that the exact correct button presses remain.
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 54 bytes
```
≔±Lθζ≔⁰εFη¿ζ¿⁼⌕RBGY§θζ⌕§⪪”$⌊η²<↑ΣG≧”⁴ει≦⊕ζ≦⊕ε≔³ε∧¬ζ‹ε³
```
[Try it online!](https://tio.run/##dY6xCsIwEIZ3n@LodIEIgm5ODWgQVCROGUN7toGY2iaK@PIx1To6HXcf9/9f1Zqh6oxLqQzBNh6P1JhIuCffxBZ7xji82Ho20QUHytulGwBbBvYC@PqOTX83LuDW@hoLJaQuOJRx52t6Yj9m5KAP/B3PN2cjFkJpqaVQUmmRX1ZsbOBgGWNwMLepd@erga7kI9UfHyAX6B@nH5/g8it9GqyPWGaFYxezNoc9hYDEYZnL1imNCmKmhRRSqTR/uDc "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
≔±Lθζ
```
Start at the first button flash, but use the negated length as this makes the win condition easier to test and cyclic indexing means that it doesn't matter.
```
≔⁰ε
```
Start with no strikes.
```
Fη
```
Loop over each button press.
```
¿ζ
```
If the bomb has not yet been disarmed, then:
```
¿⁼⌕RBGY§θζ⌕§⪪”$⌊η²<↑ΣG≧”⁴ει
```
If the current flash matches the current button press (according to the number of strikes), then...
```
≦⊕ζ
```
... increment the flash index, otherwise...
```
≦⊕ε
```
... increment the number of strikes.
```
≔³ε
```
Otherwise, set the number of strikes to `3`.
```
∧¬ζ‹ε³
```
Check that the bomb was disarmed without needing three strikes.
] |
[Question]
[
## Background
This is Post's lattice:
[](https://i.stack.imgur.com/flzRU.png)
Credit: [EmilJ](https://commons.wikimedia.org/wiki/File:Post-lattice.svg)
It denotes the lattice of all clones on a two-element set `{0, 1}`, ordered by inclusion (from Wikipedia). That can be a bit of a mouthful so lets look at a concrete example. `MP` (located near the top) is a set that contains all boolean circuits that can be made with `and` and `or`. `DM` (a bit lower) is the set of all boolean circuits that can be made with the majority gate. The majority gate (`maj`) takes three inputs and returns true iff at least two of the inputs are true. This is a hasse diagram ordered by inclusion, which means that since `DM` is below `M` and you can reach it by a sequence of nodes at decreasing heights, `DM` is a (strict) subset of `M`. This means that every circuit that can be made with `maj` can be replicated using `∧` and `∨`.
I've colored the nodes according to the computational complexity of the boolean satisfiability problem restricted to that set of circuits. Green means `O(1)`. This means that either the set is always satisfiable or it contains a finite amount of elements. Yellow is linear time. Red is NP-complete.
As you can see, \$T\_0^\infty\$ is the smallest NP-complete set. It is generated by `↛` which is the negation of implication. In other words, it is the set of all formulas consisting of `↛` and brackets.
## Task
Your task is to solve a instance of nonimplication-SAT. That is, you are given a boolean formula consisting of variables and the operator `↛` which has the following truth table:
```
a b a↛b
0 0 0
0 1 0
1 0 1
1 1 0
```
Your program has to decide whether there is an assignment to the variables which satisfies the formula. That is, the value of the formula is `1`.
## Test cases
```
a↛a: UNSAT
a↛b: SAT
(a↛b)↛b: SAT
((a↛(c↛a))↛(b↛(a↛b)))↛(a↛(b↛c)): UNSAT
```
## Rules
This is a decision problem so you should have two distinct output values for SAT and UNSAT. Use a reasonable input format. For example:
```
"(a↛(b↛c))↛(b↛a)"
[[0,[1,2]],[1,0]]
"↛↛a↛bc↛ba"
```
Make sure that the format you choose can handle an unlimited amount of variables. For strings just the letters a to z are not enough as there is only a finite amount of them.
Bonus points if your code runs in polynomial time :p
[Answer]
# [Wolfram Language (Mathematica)](https://www.wolfram.com/wolframscript/), 30 bytes
```
SatisfiableQ[#/.$->(#&&!#2&)]&
```
[Try it online!](https://tio.run/##y00syUjNTSzJTE78n6Zg@z8YyCxOy0xMykkNjFbW11PRtdNQVlNTVDZS04xV@x9QlJlXEq2soGunkBatHBuroKag76BQrRKdqKOQGKujAGYkgRlwJowLFlCJTgapBAslwdXHwrSCBZOB/Nr/AA "Wolfram Language (Mathematica) – Try It Online")
Takes input in the form `$[$[a, $[b, c]], $[b, a]]`.
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 57 bytes
```
W⁻⪪⁻⁻θ(¦)¦>υ⊞υ⌊ι⊙…⁰X²LυUV⪫⟦(lambda ⪫λ=0,¦=0:θ)(⪫⮌↨ι²,¦)⟧ω
```
[Try it online!](https://tio.run/##NY5Na8MwDIbv@xXCJwk0CD2u1LDBLqOD0B3LDkpmGoPjdImd0F/vKll3eSS9@njVdjK2g4RSls4HB/jpY57w6xp8euR//GUwaEhJG@3KTAR1njrMDDrm@9yjJ9o/1aOPCV/jDU8SLw4rhnpY3Ig7hqOLl6QrRHqhvqVuiO@zhCzJ4cfgI54NBumbHwHDsClBDQ8Vb8aH6kXl9R3C//7JzW6cHL6JwjPs1tOGH@9@MyxqRvtSEMVia4UsNlbzRuU1atUSlec53AE "Charcoal – Try It Online") Link is to verbose version of code. Accepts any valid Python identifier as a variable name and represents the nonimplication operator with the `>` character. Outputs a Charcoal boolean, i.e. `-` for satisfiable, nothing if not. Explanation:
```
W⁻⪪⁻⁻θ(¦)¦>υ⊞υ⌊ι
```
Extract all of the unique variable names from the input.
```
⊙…⁰X²LυUV⪫⟦(lambda ⪫λ=0,¦=0:θ)(⪫⮌↨ι²,¦)⟧ω
```
Compute all possible variable substitutions and evaluate the string as python code with those assignments until one evaluates as `True`, at which point output a `-`.
[Answer]
# Python3, 397 bytes:
```
l=len
b=[{'a':0,'b':0,1:0},{'a':0,'b':1,1:0},{'a':1,'b':0,1:1},{'a':1,'b':1,1:0}]
def g(r):
if len(r)!=len(b[0])-1:return 0
if all(str==type(i)for i in r):return all(i in b[0]for i in r)
return any(all(x==y for x,y in zip(r,[*i.values()][:-1])if type(x)==type(y))for i in b)
def f(d):
if l(d)!=l(b[0])-1:return 0
if all(j:=[i if isinstance(i,str)else f(i)for i in d]):
return g(j)
return 0
```
[Try it online!](https://tio.run/##dZBRb4MgFIXf/RXsSe5CF8leFhN@CeFBKnY0hBq0jWzZb3cXqq1m2YPkcu6Xczj2cfy8@PePPsyzE874Qgv5XTZlXbFSp5PX1Q/bKHyj8AfDd8qdUUVrOnKiAeqC2I6gO84vKYVqWSk48DqY8Ro8qTLQOEeHMQgxxt5QC90lEEusJ@iwgAnJUjLY7AuyAj7SBE1CRJKAicWEfNmeBiZf7dutcVczUFCyPnAFmJvjJlhyIzyDNeQOHW3XDjhhg//ff66FtOliB@uHsfFHbMKwFRg3GHTa1GpVcl1ffqLnZ41q7oP1I@2oxN/K8FMAxV7Te@0h/t3klSyPdyOFo073hc9CBlBFCAWA@Rc)
] |
[Question]
[
# Universal Command Sequence
## Definition
An \$n\$-maze is a \$n\times n\$ chessboard which has "walls" on some edges, and a "king" on the board that can move to the 4 adjacent cells, which cannot pass through any walls. Starting from any cell the king should be able to reach every cell on the board.
A command sequence is an array consisting of 4 distinct types of element (for example `[1,2,3,4,1,4,2,3,1,...]`). Each type of element means a direction of the movement of the king. A command sequence can be "applied to" a maze, if the king can traverse every cell on the board by following the command sequence. For example a command sequence `[up,right,down]` can be applied to a 2-maze that has no walls and the king is placed at the botton-left cell. If the king is going to pass through a wall or go outside the board, the command will be skipped.
## Challenge
For a given positive integer \$n\$, output a command sequence that can be applied to any \$n\$-maze. The existence of this sequence can be proved mathematically.See 1998 All-Russian Math Olympiad, Grade level 9, Day 1, Problem 4.
### Input
A positive integer `n`. You can assume that `n>1`.
### Output
An array consisting of 4 distince types of elements.
###
#### Python 3 validator
[Try it online.](https://tio.run/##vVhLb9tGEL7zV0zpg8WaFmS76EFoCiRpguaQIo3d5qAI1opciYypXXZJWlUd/3Z3Zpak@BBtp4cKtETuY57ffDt0ussjrS4eQrmCqzeXVyPlw/uXH3y4fPO7N3UAP5HI3qkAXsBbkWTS4TFavpbqk0iSbBTo5FLKMPPB6C3flTurlas4SUiwaIzTJ15BItVIePATqPYUfYzMC6Ng5k7cOXwPIwWn5XoPTkC01ks0bVCCcOoZtPW9yNlS/EWnZnMf/@r5lTZQ@gOxqm6ztmgrBE5wd@VaEmf5KMvNaBmrKiDe7Hw69zyvLb2MEUmvwtWWXpo2KL3c1Zdexavto52vsyb/KkQyEj4sG8kgu27JItFLkNK5nVoOhtfioidrOSxLPFNWOXhligbuChVr1fUgwVQuERWdVP4Hp5KxSFOpwtGt17Uj2RuRFUtMxwEj/i8Dcpnlr7VSMsjj2zjfjTLCxF7alkoT7amrlOZnE5gCldEZop4H@AEHz7HA6P587jmt2mU9EmEY4FenfkX4BYsnQKTNy0qiRYd8NfDiBUxAqJAf2bjZ2Xxm2JZZMKd598ztRwN1cCmwGl49H1Rgnekr@QYFJ0MKgkMeTFCy9cA8RwEtpWANKzjkASl5roKTQwoqFgy/7FOrk/CjFEGERNTCrNkPziY@TBqiltqE0jRnWkDJcpmOOgBRWiU6EElDnV@p8EuBTmtHy67KmFZZs1y5fVVb055iAkcUcnHxmn7Amtstm9QjfgfwnjOo2FJAY2dprtfaUUdtv7Xnzj7o1ppOhBo2bKM4kXwIVsro6KTa7VGMJfoDgfeeSb70sUl1HidkIhLsEIzcSJWPbpBZGipqCNg2onESC2N26DLLqu3GAfIu86gQOm7H8DOWYNv6bBbPCfwsrX1Il/L7TmFweBtKu@nHgqdOcao3c9BiazWu31tbN0ythWXosgaFG3ErTSZHXOc@Ijb@oJuxaxSjnWPo7LGTamL4xlSnjdlQEWAj13YyjAmO2ORho7DpURHPUpgBjqBIe0Eo2QpVI7UOsHo5ycRI98gVg@RV@sHrm0G0Td3eoDM2KNRb9bRJA@eAXfBNJp08ZtI5m5TIVf6YSZP5wMlRTtZROnuGSZMnonTBJpl4HT3DpoHDpgzPt9h0IEwH23ERZxL@FEkh3xijzWjl/qaRR4OI7KdORqsp3CEs733YUBcUQq7hrsLq/Xduh48HmZOst9XSZ69Ziz85EEigPrgA7viLxhZ7tnLvbtCxex9/zub3LhfUDffsdt/cK48/Ij8q0Am/otRtlD0EbIHa49LZExmFuyQJFEtPMRKnWymnRj/2WGVMKkkFdvq2LJtvMtzi00n0zNbOaUDhqf6xgZiap5pvfKzb88lFD53vJzs15NRB1KzcSzydpAokrAQGJAStGH9seEauMQySe9aC9/h9P/6sXH9A3lVpIqYnK5J8@lndPW01JnZ8QKL3@PFYz5aZb59@GOwWDGwuvA5lt/co2xeSTVa6DZ17FcUZ4CXgViRxiLts0KgKOofxA7@7W0DG/0jr1F2ttUingCBsMzpx6ZQUd3mVGA1h4/fYjXllChd@m2TurboZ2jf3He/h@PjYub7@IxNrOb6@hl@0Os7p8JSQRxIiKbCnGcNHmSYCEbAggxewjfMIVLFZYoO0UAsfFkVK32QZ/ZIh9Mtqy@U7XRiWuaIbmXA4MxzB1@eNFCrjyUAbREWqVRir9Z5ofGa@BRpdSrNrNxsarkJtZaEehKfKiYyobiipqTAiRwDwVt42hnfIovjGDrrI0yKHTG@waVFYxxtBGkEscYb1VPLp1f5GwmCqXZ8Yolsu4/HYHcObv8UmRTYpKNBTZ7FYOHsUXHQhMDmAgLOD6T8/mPuL4byjDLwu@JrwZe/PeZwuggUbeIQfuMIQwmsdSvhVJqnjnML1dZOKCDQvMYwUamyBhUFKwCKWNuDLHUeQJwMSgmFbF5gNlUt7XiwpjyyOToJ4LMfw1mAzJNQOG1phcsJBilRrc3FDj4FQNc/hqNHFOgKJjzv7NjEqMlpW4ynIe1jBVK1wsEAJ3th69anmNPKJWQioDlIEJEK19GarcdCIXQYLpKiFxSXy1AJzzBaUyOZ/JVjaYaiEMog3gt50crmmkrrScKPwRNhGsiy2baUS32uIK0gB9rcL2oOBipUwO1sItHpxtjhmGNZbj4mVYgJvjbepw5lUSGMXDjM1AeDHucNMPfuBzzrnFaVt6hzB0dcj5/QEj@LyHuz9V3xynNFR/b6G/e8pfOVH1mzxwlHskDuHMpLKln/WLI2MDhIuu/o08dmZ1Oi1ERtbnkjjuqpRhlJHPtUxB5j@7UZJJVlVp8G2wogCWWyUT2nyQKxypK0VduJZVMFkG@mkTyhjeB3JADsJJhM0kFoC7H@sWMIG/zfDKhs7SKUP/wI) Test your generated sequence here. Usage tips can be found in the footer.
---
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"). Shortest code wins.
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), 7 bytes
```
s^S4^5*
```
We could construct a universal sequence of length \$2^{2n(n-1)} ⋅ n^2 ⋅ (2n^2 - 2) < 5^{n^2}\$. Start with the empty sequence; then for each of the at most \$2^{2n(n-1)}\$ mazes and \$n^2\$ possible starts, imagine following all the previously appended commands to get a new location, and append \$2n^2 - 2\$ more commands representing a complete traversal of that maze from that new location.
But, since we know we could construct it, we don’t have to actually do it. Instead, just concatenate all length \$5^{n^2}\$ sequences of \$1, 2, 3, 4\$. Since we just proved at least one of those sequences is universal, so is their concatenation.
] |
[Question]
[
The title is an homage of the [Natural Number Game](https://wwwf.imperial.ac.uk/%7Ebuzzard/xena/natural_number_game/), which is a nice interactive tutorial into proving certain properties of natural numbers in Lean.
---
The definitions used in [Lv1](https://codegolf.stackexchange.com/q/236182/78410) will be reused here. I've done some improvements:
* Now it starts with `import tactic`, which means you can freely use powerful mathlib tactics.
* I noticed that I can define the general list notation `[a, b, ..., z]` without problems.
```
import tactic
universe u
variables {A : Type u}
namespace mylist
inductive list (T : Type u) : Type u
| nil : list
| cons : T ‚Üí list ‚Üí list
infixr ` :: `:67 := list.cons
notation `[]` := list.nil
notation `[` l:(foldr `, ` (h t, list.cons h t) list.nil `]`) := l
def append : list A ‚Üí list A ‚Üí list A
| [] t := t
| (h :: s) t := h :: (append s t)
instance : has_append (list A) := ‚ü®@append A‚ü©
@[simp] lemma nil_append (s : list A) : [] ++ s = s := rfl
@[simp] lemma cons_append (x : A) (s t : list A) : (x :: s) ++ t = x :: (s ++ t) := rfl
@[simp] def rev : list A ‚Üí list A
| [] := []
| (h :: t) := rev t ++ [h]
```
Now, here's a new definition we will use from now on: a membership relationship between an element and a list. It is defined recursively using two cases: A value `x` is in a list `l` if
* `x` is the head of `l`, or
* `x` is in the tail of `l`.
```
inductive is_in : A ‚Üí list A ‚Üí Prop
| in_hd {x : A} {l : list A} : is_in x (x :: l)
| in_tl {x y : A} {l : list A} : is_in x l ‚Üí is_in x (y :: l)
open is_in
```
Now your task is to prove the following two statements: (think of these as parts of a chapter, sharing a few lemmas)
* `is_in_append`: `x` appears in `l1 ++ l2` if and only if `x` appears in `l1` or `x` appears in `l2`.
* `is_in_rev`: if `x` appears in `l`, `x` appears in `rev l`.
```
theorem is_in_append : ∀ (x : A) (l1 l2 : list A), is_in x (l1 ++ l2) ↔ is_in x l1 \/ is_in x l2 := sorry
theorem is_in_rev : ∀ (x : A) (l : list A), is_in x l → is_in x (rev l) := sorry
```
You can change the name of each statement and golf its definition, as long as its type is correct. [Any kind of sidestepping is not allowed.](https://codegolf.meta.stackexchange.com/a/23938/78410) Due to the nature of this challenge, adding imports is also not allowed (i.e. no mathlib, except for tactics).
The entire boilerplate is provided [here](https://leanprover-community.github.io/lean-web-editor/#code=import%20tactic%0Auniverse%20u%0Avariables%20%7BA%20%3A%20Type%20u%7D%0Anamespace%20mylist%0A%0Ainductive%20list%20%28T%20%3A%20Type%20u%29%20%3A%20Type%20u%0A%7C%20nil%20%3A%20list%0A%7C%20cons%20%3A%20T%20%E2%86%92%20list%20%E2%86%92%20list%0A%0Ainfixr%20%60%20%3A%3A%20%60%3A67%20%3A%3D%20list.cons%0Anotation%20%60%5B%5D%60%20%3A%3D%20list.nil%0Anotation%20%60%5B%60%20l%3A%28foldr%20%60%2C%20%60%20%28h%20t%2C%20list.cons%20h%20t%29%20list.nil%20%60%5D%60%29%20%3A%3D%20l%0A%0Adef%20append%20%3A%20list%20A%20%E2%86%92%20list%20A%20%E2%86%92%20list%20A%0A%7C%20%5B%5D%20t%20%3A%3D%20t%0A%7C%20%28h%20%3A%3A%20s%29%20t%20%3A%3D%20h%20%3A%3A%20%28append%20s%20t%29%0Ainstance%20%3A%20has_append%20%28list%20A%29%20%3A%3D%20%E2%9F%A8%40append%20A%E2%9F%A9%0A%0A%40%5Bsimp%5D%20lemma%20nil_append%20%28s%20%3A%20list%20A%29%20%3A%20%5B%5D%20%2B%2B%20s%20%3D%20s%20%3A%3D%20rfl%0A%40%5Bsimp%5D%20lemma%20cons_append%20%28x%20%3A%20A%29%20%28s%20t%20%3A%20list%20A%29%20%3A%20%28x%20%3A%3A%20s%29%20%2B%2B%20t%20%3D%20x%20%3A%3A%20%28s%20%2B%2B%20t%29%20%3A%3D%20rfl%0A%0A%40%5Bsimp%5D%20def%20rev%20%3A%20list%20A%20%E2%86%92%20list%20A%0A%7C%20%5B%5D%20%3A%3D%20%5B%5D%0A%7C%20%28h%20%3A%3A%20t%29%20%3A%3D%20rev%20t%20%2B%2B%20%5Bh%5D%0A%0Ainductive%20is_in%20%3A%20A%20%E2%86%92%20list%20A%20%E2%86%92%20Prop%0A%7C%20in_hd%20%7Bx%20%3A%20A%7D%20%7Bl%20%3A%20list%20A%7D%20%3A%20is_in%20x%20%28x%20%3A%3A%20l%29%0A%7C%20in_tl%20%7Bx%20y%20%3A%20A%7D%20%7Bl%20%3A%20list%20A%7D%20%3A%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28y%20%3A%3A%20l%29%0Aopen%20is_in%0A%0A---%0A--%20edit%20this%20region%20to%20solve%20the%20challenge%0Atheorem%20is_in_append%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l1%20l2%20%3A%20list%20A%29%2C%20is_in%20x%20%28l1%20%2B%2B%20l2%29%20%E2%86%94%20is_in%20x%20l1%20%5C%2F%20is_in%20x%20l2%20%3A%3D%20sorry%0Atheorem%20is_in_rev%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l%20%3A%20list%20A%29%2C%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28rev%20l%29%20%3A%3D%20sorry%0A---%0A%0Aexample%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l1%20l2%20%3A%20list%20A%29%2C%20is_in%20x%20%28l1%20%2B%2B%20l2%29%20%E2%86%94%20is_in%20x%20l1%20%5C%2F%20is_in%20x%20l2%20%3A%3D%20is_in_append%0Aexample%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l%20%3A%20list%20A%29%2C%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28rev%20l%29%20%3A%3D%20is_in_rev%0Aend%20mylist). Your score is the length of the code between the two dashed lines, measured in bytes. The shortest code wins.
### Tips for beginners
The new beast called "inductive Prop" is a particularly hard concept to grasp. Simply put, a value of `is_in x l` contains a concrete proof that `x` appears in `l`. It is an unknown value, but we can still reason about it:
* Consider all the possible paths `is_in x l` could have been constructed (i.e. proven). This is done with `cases` tactic. When used on a hypothesis of `is_in x l`, it generates two subgoals, one assuming `in_hd` and the other assuming `in_tl`.
+ If you use `cases` on `is_in x []`, there is no way it could have been constructed (since both possibilities result in a cons), the goal is immediately closed by contradiction.
* Apply induction on the proof. It works just like induction on a nat or a list: to prove a theorem in the form of `∀ (x:A) (l:list A), is_in x l → some_prop`, you can prove it by induction on `is_in x l` and prove the "base case" `is_in x (x::l)` and "inductive case" `(is_in x l → some_prop) → is_in x (y::l) → some_prop`.
It takes some practice to see which argument (an inductive data or an inductive prop - in this challenge, `list` or `is_in`) works best with induction for a given statement. You can start by proving parts of the main statement separately as lemmas:
>
>
> ```
> lemma is_in_append_l : ∀ (x : A) (l l2 : list A), is_in x l → is_in x (l ++ l2) := sorry
> lemma is_in_append_r : ∀ (x : A) (l l2 : list A), is_in x l → is_in x (l2 ++ l) := sorry
> ```
> (Hint: One works best by induction on `l2`, and the other works best on `is_in x l`.)
>
>
>
>
>
[Answer]
# Lean, 188 bytes
```
infix`~`:=is_in
def P(x:A)(l m):x~l++m‚Üîx~l\/x~m:=by induction
l;split;repeat{safe[in_hd,in_tl];cases ·æ∞<|>cases l_ih.1 ·æ∞_·æ∞}def
R(x:A)(l)(i:x~l):x~rev l:=by induction i;safe[P,in_hd]
```
[Try it on Lean Web Editor](https://leanprover-community.github.io/lean-web-editor/#code=import%20tactic%0Auniverse%20u%0Avariables%20%7BA%20%3A%20Type%20u%7D%0Anamespace%20mylist%0A%0Ainductive%20list%20%28T%20%3A%20Type%20u%29%20%3A%20Type%20u%0A%7C%20nil%20%3A%20list%0A%7C%20cons%20%3A%20T%20%E2%86%92%20list%20%E2%86%92%20list%0A%0Ainfixr%20%60%20%3A%3A%20%60%3A67%20%3A%3D%20list.cons%0Anotation%20%60%5B%5D%60%20%3A%3D%20list.nil%0Anotation%20%60%5B%60%20l%3A%28foldr%20%60%2C%20%60%20%28h%20t%2C%20list.cons%20h%20t%29%20list.nil%20%60%5D%60%29%20%3A%3D%20l%0A%0Adef%20append%20%3A%20list%20A%20%E2%86%92%20list%20A%20%E2%86%92%20list%20A%0A%7C%20%5B%5D%20t%20%3A%3D%20t%0A%7C%20%28h%20%3A%3A%20s%29%20t%20%3A%3D%20h%20%3A%3A%20%28append%20s%20t%29%0Ainstance%20%3A%20has_append%20%28list%20A%29%20%3A%3D%20%E2%9F%A8%40append%20A%E2%9F%A9%0A%0A%40%5Bsimp%5D%20lemma%20nil_append%20%28s%20%3A%20list%20A%29%20%3A%20%5B%5D%20%2B%2B%20s%20%3D%20s%20%3A%3D%20rfl%0A%40%5Bsimp%5D%20lemma%20cons_append%20%28x%20%3A%20A%29%20%28s%20t%20%3A%20list%20A%29%20%3A%20%28x%20%3A%3A%20s%29%20%2B%2B%20t%20%3D%20x%20%3A%3A%20%28s%20%2B%2B%20t%29%20%3A%3D%20rfl%0A%0A%40%5Bsimp%5D%20def%20rev%20%3A%20list%20A%20%E2%86%92%20list%20A%0A%7C%20%5B%5D%20%3A%3D%20%5B%5D%0A%7C%20%28h%20%3A%3A%20t%29%20%3A%3D%20rev%20t%20%2B%2B%20%5Bh%5D%0A%0Ainductive%20is_in%20%3A%20A%20%E2%86%92%20list%20A%20%E2%86%92%20Prop%0A%7C%20in_hd%20%7Bx%20%3A%20A%7D%20%7Bl%20%3A%20list%20A%7D%20%3A%20is_in%20x%20%28x%20%3A%3A%20l%29%0A%7C%20in_tl%20%7Bx%20y%20%3A%20A%7D%20%7Bl%20%3A%20list%20A%7D%20%3A%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28y%20%3A%3A%20l%29%0Aopen%20is_in%0A%0A---%0Ainfix%60%7E%60%3A%3Dis_in%0Adef%20P%28x%3AA%29%28l%20m%29%3Ax%7El%2B%2Bm%E2%86%94x%7El%5C%2Fx%7Em%3A%3Dby%20induction%0Al%3Bsplit%3Brepeat%7Bsafe%5Bin_hd%2Cin_tl%5D%3Bcases%20%E1%BE%B0%3C%7C%3Ecases%20l_ih.1%20%E1%BE%B0_%E1%BE%B0%7Ddef%0AR%28x%3AA%29%28l%29%28i%3Ax%7El%29%3Ax%7Erev%20l%3A%3Dby%20induction%20i%3Bsafe%5BP%2Cin_hd%5D%0A---%0A%0Aexample%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l1%20l2%20%3A%20list%20A%29%2C%20is_in%20x%20%28l1%20%2B%2B%20l2%29%20%E2%86%94%20is_in%20x%20l1%20%5C%2F%20is_in%20x%20l2%20%3A%3D%20P%0Aexample%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l%20%3A%20list%20A%29%2C%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28rev%20l%29%20%3A%3D%20R%0Aend%20mylist) (warning: very slow üêå)
[Answer]
# Lean, ~~254~~ ~~226~~ 221 bytes
```
infix`~`:=is_in
variables(x y:A)def D(a):x=y\/x~a‚Üîx~y::a:=by
split;rintro(c|d);safe[in_hd,in_tl]def E:¬x~[].
def P(a b):x~a++b‚Üîx~a\/x~b:=by
induction a;safe[<-D,E]def Q(a)(h:x~a):x~rev a:=by
induction h;safe[in_hd,P]
```
[Try it on the Lean Web Editor](https://leanprover-community.github.io/lean-web-editor/#code=import%20tactic%0Auniverse%20u%0Avariables%20%7BA%20%3A%20Type%20u%7D%0Anamespace%20mylist%0A%0Ainductive%20list%20%28T%20%3A%20Type%20u%29%20%3A%20Type%20u%0A%7C%20nil%20%3A%20list%0A%7C%20cons%20%3A%20T%20%E2%86%92%20list%20%E2%86%92%20list%0A%0Ainfixr%20%60%20%3A%3A%20%60%3A67%20%3A%3D%20list.cons%0Anotation%20%60%5B%5D%60%20%3A%3D%20list.nil%0Anotation%20%60%5B%60%20l%3A%28foldr%20%60%2C%20%60%20%28h%20t%2C%20list.cons%20h%20t%29%20list.nil%20%60%5D%60%29%20%3A%3D%20l%0A%0Adef%20append%20%3A%20list%20A%20%E2%86%92%20list%20A%20%E2%86%92%20list%20A%0A%7C%20%5B%5D%20t%20%3A%3D%20t%0A%7C%20%28h%20%3A%3A%20s%29%20t%20%3A%3D%20h%20%3A%3A%20%28append%20s%20t%29%0Ainstance%20%3A%20has_append%20%28list%20A%29%20%3A%3D%20%E2%9F%A8%40append%20A%E2%9F%A9%0A%0A%40%5Bsimp%5D%20lemma%20nil_append%20%28s%20%3A%20list%20A%29%20%3A%20%5B%5D%20%2B%2B%20s%20%3D%20s%20%3A%3D%20rfl%0A%40%5Bsimp%5D%20lemma%20cons_append%20%28x%20%3A%20A%29%20%28s%20t%20%3A%20list%20A%29%20%3A%20%28x%20%3A%3A%20s%29%20%2B%2B%20t%20%3D%20x%20%3A%3A%20%28s%20%2B%2B%20t%29%20%3A%3D%20rfl%0A%0A%40%5Bsimp%5D%20def%20rev%20%3A%20list%20A%20%E2%86%92%20list%20A%0A%7C%20%5B%5D%20%3A%3D%20%5B%5D%0A%7C%20%28h%20%3A%3A%20t%29%20%3A%3D%20rev%20t%20%2B%2B%20%5Bh%5D%0A%0Ainductive%20is_in%20%3A%20A%20%E2%86%92%20list%20A%20%E2%86%92%20Prop%0A%7C%20in_hd%20%7Bx%20%3A%20A%7D%20%7Bl%20%3A%20list%20A%7D%20%3A%20is_in%20x%20%28x%20%3A%3A%20l%29%0A%7C%20in_tl%20%7Bx%20y%20%3A%20A%7D%20%7Bl%20%3A%20list%20A%7D%20%3A%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28y%20%3A%3A%20l%29%0Aopen%20is_in%0A%0A---%0Ainfix%60%7E%60%3A%3Dis_in%0Avariables%28x%20y%3AA%29def%20D%28a%29%3Ax%3Dy%5C%2Fx%7Ea%E2%86%94x%7Ey%3A%3Aa%3A%3Dby%0Asplit%3Brintro%28c%7Cd%29%3Bsafe%5Bin_hd%2Cin_tl%5Ddef%20E%3A%C2%ACx%7E%5B%5D.%0Adef%20P%28a%20b%29%3Ax%7Ea%2B%2Bb%E2%86%94x%7Ea%5C%2Fx%7Eb%3A%3Dby%0Ainduction%20a%3Bsafe%5B%3C-D%2CE%5Ddef%20Q%28a%29%28h%3Ax%7Ea%29%3Ax%7Erev%20a%3A%3Dby%0Ainduction%20h%3Bsafe%5Bin_hd%2CP%5D%0A---%0A%0Aexample%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l1%20l2%20%3A%20list%20A%29%2C%20is_in%20x%20%28l1%20%2B%2B%20l2%29%20%E2%86%94%20is_in%20x%20l1%20%5C%2F%20is_in%20x%20l2%20%3A%3D%20P%0Aexample%20%3A%20%E2%88%80%20%28x%20%3A%20A%29%20%28l%20%3A%20list%20A%29%2C%20is_in%20x%20l%20%E2%86%92%20is_in%20x%20%28rev%20l%29%20%3A%3D%20Q%0Aend%20mylist)
`P` and `Q` are the desired theorems. I reuse the `~` notation (which is normally for the `list.perm` relation) to mean the `is_in` relation, which lets us save a lot of spaces in lemma statements.
I was going for "readable" and fast-to-typecheck (Anders isn't kidding about their solution being slow!). `D` is a definition lemma for `is_in` (mathlib calls the reversed version of it [`list.mem_cons_iff`](https://leanprover-community.github.io/mathlib_docs/init/data/list/lemmas.html#list.mem_cons_iff); I had to reverse it to trick Lean into disambiguating `::` correctly). The `E` lemma uses the equation compiler to automatically construct a proof (mathlib calls it [`list.not_mem_nil`](https://leanprover-community.github.io/mathlib_docs/init/data/list/lemmas.html#list.not_mem_nil)).
Some of these tricks can shorten Anders's first solution to 217 bytes:
```
infix`~`:=is_in
attribute[simp]in_hd in_tl
def P(x:A)(l m):x~l++m‚Üîx~l\/x~m:=by induction l;split;intro;repeat{finish<|>cases
·æ∞<|>cases l_ih.1 ·æ∞_·æ∞}def R(x:A)(l)(i:x~l):x~rev l:=by induction i;simp[P];left;tauto
```
---
I want to mention that `is_in` might more conventionally be given as a recursive definition:
```
def is_in (x : A) : Π (l : list A), Prop
| [] := false
| (y::ys) := x = y ‚à® is_in ys
```
Given this, there is a 150 byte solution:
```
infix`~`:=is_in
def P(x:A)(l m):x~l++m‚Üîx~l\/x~m:=by
induction l;split;simp!;intro;safe
def Q(x:A)(l)(i:x~l):x~rev l:=by induction l;simp![P]at*;safe
```
] |
[Question]
[
Inspired by [This answer to a Puzzling question](https://puzzling.stackexchange.com/a/97195/42642)
**Background - exponentiation by squaring**
*If you don't want to read the background, or don't understand it, there's a worked example in Java, linked at the bottom of the post.*
\$a^{2^{x+1}} = a^{2^{x}} \* a^{2^{x}}\$
Therefore to find \$a^b\$ (where \$a\$ and \$b\$ are base-10 numbers), you can use the following steps:
(using the example: \$a^b = 3^{2020} = 6.0944502154628860109199404161593e+963\$)
1. Convert \$b\$ to binary (\$2020\$ -> \$11111100100\$)
2. For each \$1\$ in the binary (\$n\$), calculate \$a^n\$, by starting at \$a^1\$ and repeatedly squaring to get \$a^2\$, \$a^4\$, etc... and keeping only those numbers we need (\$3^1 = 3\$, \$3^2 = 9\$, squared gives \$3^4 = 81\$, squared gives \$3^8 = 6561\$, squared gives \$3^{16} = 43046721\$, squared gives \$3^{32} = 1853020188851841\$, etc. We just keep those numbers where the binary mask is a 1.)
3. Multiply all the kept answers from step 2 where the binary mask is a \$1\$ (\$81\*1853020188851841\*...\$).
4. The first non-zero digit is therefore \$6\$.
The problem with this method though, even though it is easier for humans than calculating such a large exponent straight-off, is that you still have to square some pretty large numbers.
***In Theory, though, we can approximate!***
According to the link at the start of the question, you can approximate by just considering the first \$n\$ digits (rounded) at each stage in step 2 above - with larger \$n\$ giving a lower margin of error.
**For example**, if \$n=4\$, then you get\* \$3^2=9,^2=81,^2=6561,^2\approx4305,^2\approx1853,^2\approx3434,^2\approx1179,^2\approx1390,^2\approx1932,^2\approx3733\$.
note that the numbers here have been rounded\*, rather than just truncated - e.g. 6561 \* 6561 = 43046721 - which has been rounded to 430**5** rather than 430**4**.
Keeping \$3733,1932,1390,1179,3434,1853,81\$ from the bitmask we can then do \$3733\*1932\*1390\*1179\*3434\*1853\*81= 6091923575465178358320\$, so the first digit is \$6\$, as we would expect.
This is not only easier in our heads, but it gives us the same first digit! Much simpler!
However, if we only consider the first \$3\$ digits when we double, instead of the first \$4\$, we get \$353\*188\*137\*117\*342\*185\*81 = 5451573062187720\$, which gives us a first digit of \$5\$ instead of \$6\$ - that's why it's only approximately accurate!
---
**The Challenge** is to find the first digit of \$a^b\$, where only the first \$n\$ digits, rounded, are considered each time we square. You don't have to use exponentiation by squaring in your program, if you can get the correct answers by another method.
**Inputs**
Three positive Integers (greater than \$0\$), up to an arbitrary maximum (your program should work in theory for all possible Integers) - the base \$a\$, the exponent \$b\$ and the approximation length \$n\$
**Output**
a single digit or character in the range [1..9]
**Some Worked Examples**
`3,2020,3` -> `5` (see worked example in background above)
`3,2020,4` -> `6` (see worked example in background above)
`2,20,1` -> \$20\_{10} = 10100\_2. 2^1=2,^2=4,^2=16\approx2,^2=4,^2=16\approx2\$ which gives \$2^{16}\*2^4\approx2\*2\$ = `4`
`2,20,2` -> \$2^1=2,^2=4,^2=16,^2=256\approx26,^2=676\approx68\$ which gives \$68\*16 = 1088\$, first digit `1`
`2,20,3` -> \$2^1=2,^2=4,^2=16,^2=256,^2=65536\approx655\$ which gives \$655\*16 = 10480\$, first digit `1`
`2,20,4` -> \$6554\*16 = 104864\$, first digit `1`
`2,20,5 or above` -> \$65536\*16 = 1048576\$, first digit `1`
`15,127,5` -> `15,225,50625,25629...,65685...,43145...,18615...` -> `231009687490539279462890625` -> `2`
**The same Examples formatted for easy copying, plus some additional ones**
```
a,b,n,outputs result
3,2020,3 outputs 5
3,2020,4 outputs 6
3,2020,5 outputs 6
2,20,1 outputs 4
2,20,2 outputs 1
2,20,3 outputs 1
2,20,4 outputs 1
2,20,5 outputs 1
2,20,6 outputs 1
2,11111,4 outputs 5
4,1234,3 outputs 8
5,54,2 outputs 6
6,464,3 outputs 1
7,2202,4 outputs 8
8,1666,5 outputs 3
9,46389,6 outputs 2
10,1234,7 outputs 1
11,5555,8 outputs 8
12,142,14 outputs 1
```
[Sample implementation on TIO](https://tio.run/##xVVdb5swFH2GX2HxUrN4FAhJ26Vo6qc2qV2rVdvLNE0OcVJ3YJAxaaspvz27BvLVNor3NCRj43vu9fGx7@WBTun7vGDiYfR7PudZkUuFHmDSy6i690755JwlPKPpwH7L@FkoNmHyDePXvBIjLibX@YgNbLuohilPUJLSskTXlAv7j23ZVjtdKqqgm@Z8hDIw4jslwffHT0TlpHRtC8DWhKlLLkt1dk8lTRSTJ0Uh8ycgp1j6jLsk9EOfdN2BMTb6B2zPBBsClgTGyNAY2TVGRsZI8x31zZCBfswIRCQIu5HZtnqkF5lJ1SdR3zDoAQnhWM3IHpKg3@@b6XUEFLqHR2aSBX4jw4EROCA9eMihERhOI9JNg2evMy0BN7QjBhcKUYJ0N2w60Wbi3XOpWObllfIKyFOFHQSPgzqIQnOIHg2XI1ETbjIaSTZlsmSnXFD5jGIk2CNqTKfVeMwkbiuKp/IG0xjx0HW91he7YGyn69D7@y8JpQJvLFTDVuUKJZWUTKjb/BE@YrSyeFOaVuxmjOlLl6xK1Sb05suFxoxziWqteOwP@PHGul7KxETdA03e6YB4tXoLKcZVmp6tEWmnY@Q4Hczj2P9IP6wT9Yr8EYduTcziY4QFOt4SZLmuXrNZ1LJ2b/oqB9eCAn09wltil9WwbNT3CZRyqPUZVOwdRAgSncB1W/a1su2PBcHJFQ2fdmbJZ2P3KVD6rg0XT3BZIWKwiNUG0J1XMnWX0JQBt/U/kPfp5Ory17fbhctuLepoL9ds3Gf6xdKSrcT939oulZ3Zi9uxeRF1wp8ozF0Ux2gv2Fu7GO3N1p2nX7yA5F/fUCva6zTbQOl8f@esFNJtW3JuT1tNoLbWFUqyco3cKusX2/Gb0vI6jIPgq6hUWVelJkyNlUxVUrQzdW2c2fP5Xw)
This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), usual rules and restrictions apply, lowest bytes wins.
---
**EDIT**
\*to clarify what I mean by rounding, any number less than \$x.5\$ should round down to \$x\$. Any number greater than \$x.5\$ should round up to \$x+1\$. The boundary (\$x.5\$) can go either way, depending on your language.
[Answer]
# [Python 2](https://docs.python.org/2/), 88 bytes
```
a,b,n=input()
s=1
while b:a=int(`a`[:n])+(`a`[n:]>"5");s*=a**(b%2);a*=a;b/=2
print`s`[0]
```
[Try it online!](https://tio.run/##K6gsycjPM/r/P1EnSSfPNjOvoLREQ5Or2NaQqzwjMydVIckqEShaopGQmBBtlRerqQ1m5VnF2imZKmlaF2vZJmppaSSpGmlaJwLZ1kn6tkZcBUVALQnFCdEGsf//G@sYGRgZ6BgDAA "Python 2 – Try It Online") or [Check all test cases!](https://tio.run/##XZBRb5swFIXf76@4YqqAxOuCMZQS0fe9VNXUPUWRYhK3sUoMws66/vrsGtKMxhLCfJx7zrG7D7dvDT9t253CCsMwPElWM1P9fHz6/RzFYKsE3ve6UViXstLGRRu5WZVmHc@HnSnXD0EWxEs7q@RsFtU3PF5K2i/rHxWHp1/P0cZuVot1fCLzW@t63ZEtfMNev2LXkyO6Fq1re4Vur7BX9tg4GF9U6bE1CnbqBb2VjUvA16atZfMpxIvSAuhD1/YO7YeFl7bHRhuF2vhvSt5pQ9NjsDbdkWa9gKE0lsYPsouo3liRDb9ubddoF4Xt0ZHchnEMOFwPydUf2UReRGy4LGKNPNQ7WUaDhrhP2@7V9s1HvKseUP1VW/SXDeezDw2C7w8BG8/BMFgFc@oQ0UhVjTCeB@vglDK@4AuW4rkOZnBG4oLyT5RNECfEkgsQI@AXkIwgvQbiGmTXIP8CEr8mUxkIlvBUTJwLyFgmJtk55Ezk4kv4HeN0holRAQVL8jyfFEjhnubS4n7SgUOyGAPvJm5UKaPFioldQmWFf/7r/gE)
Reads 3 integers from `STDIN`, and print out the first digit approximation.
**Rounding**: `x.5` is always rounded down. This causes the test case `(5, 54, 2)` to gives the wrong result.
**Explanation**:
This part is the regular exponentiation by squaring:
```
while b:s*=a**(b%2);a*=a;b/=2
```
This is the rounding part:
```
a=int(`a`[:n])+(`a`[n:]>"5")
```
which takes the first `n` digits of `a`, and adds an extra 1 if the remaining part is more than `5`.
[Answer]
# [Charcoal](https://github.com/somebody1234/Charcoal), 45 bytes
```
NθNηNζF⮌↨粫Fι⊞υθ≧×θθ¿›LIθζ≔÷⁺⁵I…Iθ⊕ζχθ»§IΠυ⁰
```
[Try it online!](https://tio.run/##XY7NSsRAEITPm6foYzeMkI162tNuBAmohMUXGJPezEAyyc5P0BWffZxsFMRLQ1FVX1ejpG1G2cdYmSn4lzC8scUz7bK/Wv3Tl6RPowU88szWMR5kOkpAQUTwmW2upiaog1MYBCzAzbOc9s7pzhx1pzy@6oFdsn5cfQJ8tCx94j@x6bzCUjqftpCAS8KuXayMf9CzbhnrPji8F3CNlR9Nz6Uap9@WgMo0lgc2ntu0mBbONqf13VdWW2087n1lWn5fS7Ud29B4DEs0J9rFeAtFXuRwF2/m/hs "Charcoal – Try It Online") Link is to verbose version of code. Explanation:
```
NθNηNζ
```
Input `a`, `b` and `n`.
```
F⮌↨粫
```
Loop over the bits of `b` from LSB to MSB.
```
Fι⊞υθ
```
If the current bit of `b` is set then push `a` to the empty list.
```
≧×θθ
```
Square `a`.
```
¿›LIθζ
```
If `a` has more than `n` digits...
```
≔÷⁺⁵I…Iθ⊕ζχθ
```
... then take the first `n+1` digits, add `5`, and drop the last digit, thus rounding the power of `a` to `n` digits.
```
»§IΠυ⁰
```
Print the first digit of the product of the desired powers of `a`.
[Answer]
# [JavaScript (Node.js)](https://nodejs.org), 100 bytes
Takes input as `(b)(n)(a)`, where \$a\$ and \$b\$ are BigInts.
```
b=>n=>g=(a,k=p=1n)=>k>b?(p+g)[0]:g((BigInt((a*a+'0'.repeat(n)).slice(0,n+1))+5n)/10n,k+k,b&k?p*=a:0)
```
[Try it online!](https://tio.run/##hZFNbsIwEIX3nGJWxUNc8D8pkoPUBVLPUHXh0BDRICcC1OunDk1KFSVkFrYsfX5v5s2X@3aX/flYXZ99@ZnVO1unNvE2yS1xtLCV5R5tUiTpllRRju/sY5MT8nrM3/yVELdw0ZzNl@esytyVeMTl5XTcZ4RRH3HESHtcceZpERU0fSq21cK6DcP6ABaCAaQUPIJNYNdppohBp3s5xNlsX/pLecqWpzInByIpCCYYBQmIsFqB7gO@I1RLmDEJPQKIBqDAAVpADQPiD@DDgJwC1BSgpwDzCOBNBZfhpFQAhFT3KOMeoIO/@j9mPygTtM1NYKSHdfgdsr7vom8Rhx6MMfddyB7w0ljIOFzmFxA9gLNujPVwD00COhSFeLgH3iSlbkerUP8A "JavaScript (Node.js) – Try It Online")
---
# JavaScript (ES6), ~~92~~ 87 bytes
*Improved the upper bound of \$n\$ thanks to @Neil*
Without BigInts. Works for \$n\le 10\$.
```
b=>n=>g=(a,k=p=1)=>k>b?(p+g)[0]:g((+(a*a).toPrecision(n)+'').slice(0,n),k+k,b&k?p*=a:0)
```
[Try it online!](https://tio.run/##hdG7boMwFAbgPU9xpsYnuMTYxqGRTLbM3asOhhJEQTYKUV@fmpY2FYLixcvnc/n9bj5Ml1@r9vZo3VvRn3Wf6dTqtNTE0Fq3OkKd1ml2Im1Q4gt7PZaEBMTsDIY393wt8qqrnCUWg@0Ww66p8oIwapHWQU2zh/rU7rQ5MuwvoMHXhIyCRdApnEmG/h0xuNnkznauKcLGleRCBAXOOKMgABH2e4iXgByBWgLxAuADoBABjEDOA/4Lonkg1oBcA/EaUP@BaDi@y3xQ0gMu5D3JZAJi31/@XXMalPK11VeBhRkO/rXP@v4X0xaJn0Epdf8LMQFPQwuR@Et9Az4BEftZ4zA/w5BA7A@FZJyh/wQ "JavaScript (Node.js) – Try It Online")
### How?
At each iteration:
* We compute \$a^2\$ with \$n\$ significant digits thanks to the `.toPrecision()` method. This gives a string, which may be in scientific notation.
Example for \$a=1023\$:
```
(1046529).toPrecision(4) ~> "1.047e+6"
```
* we coerce this result to a number and immediately back to a string:
```
+(1046529).toPrecision(4)+'' ~> "1047000"
```
* we keep the \$n\$ first characters to get the new value of \$a\$:
```
(+(1046529).toPrecision(4)+'').slice(0,4) ~> "1047"
```
The highest value of \$n\$ that can be supported is \$10\$ because:
$$(10^{10}-1)^2=99999999980000000000$$
which is already greater than `Number.MAX_SAFE_INTEGER`, but sill coerced to its standard decimal representation `"99999999980000000000"`.
For \$n>10\$, the result is always stringified in scientific notation (e.g. `9.9999999998e+21`) and the algorithm doesn't work anymore.
[Answer]
# [Python 3.8 (pre-release)](https://docs.python.org/3.8/), 131 bytes
```
lambda a,b,n:(m:=a)and str(math.prod((m:=round(m/10**(len(str(m))-n)))**int((m:=m**2)and c)for c in f"{b:b}"[::-1]))[0]
import math
```
[Try it online!](https://tio.run/##XZLRjoMgEEXf@YoJT2BoVxStNen@SNsHrZqaVCRKk90Yv90FrS4tiY453LkzwqhffW9lmKhuqk6X6ZE1eZFBxnImU9Kkp4xmsoBed6TJ9H2vurYglnftUxak@eK@55FHKcksoXQnKaWeV0s9yxrPC2aHG63aDm5QS6jwkKf5iM9puuNXSs/@FdWNajsNtsaky173cAKMccgCP/BZCO1Tq6ehEXohsaF4RZGDAoMY34BYQLABvoDwE4hPEH2C@A1wu5ysCAnGg1A4zgmKWCSc2jGKmYjFW/EDC8w/OEYJShiP49hpIERHkxcmR6eHAHF/KXhw3ExLkVkscey4aVbY519nDhih9bTnuO/Vo9YEXySmCNkbs9he2rydIjDfqmfW45Wzpmy2JhPMAEHOQBqN1a8aNu@pzk5HhcmQjQyG3L7kSGH3DUNF7F5GmQ35EsxEjUDKH1XedFnAYAqNFNPpDw "Python 3.8 (pre-release) – Try It Online") **How it works:**
```
lambda a,B,n: # function taking the three arguments as input
(m:=a)and # initialize the base for repeated squaring and
str(...)[0] # return the first digit of the string representing the final number
# Inside str():
math.prod( ) # the product of (new in 3.8)
... for c in f"{B:b}"[::-1] # something we compute for each character in the reversed binary representation of the input B
# Use repeated := to modify the base we keep squaring
# Inside math.prod(... for c in f"{B:b}"[::-1])
(m:= ) # modify m
round(m/10**(len(str(m))-n)) # by rounding it to the first n digits
(m:=m**2)and # finally we square m again (without effecting anything else)
**int( c) # and only include this number in the product if the binary digit is 1
```
My `(5, 54, 2)` test case gives a different result; I suspect it is because of how Python rounds `62.5` vs how the reference implementation rounds `62.5`. Python rounds it down to `62`, but [if I force Python to round up](https://tio.run/##PVDLaoQwFN3nKy5Z5abR6rRTSsD@yMwsklEZwTyIEVrEb7eJU7vJDecJx//Eh7Nvnz5sfXPdRmV0q0AJLaxkRjYKlW1hioEZFR@lD65lPgw2MoPgAmRNcLNtGavKqqpfDL7WFeds7CzbbYiFRUTOsynLDeenPfWOfUq4w2Chp4uWeqUXKYv6hnipbmQw3oUIuXeL3RQnaIBSehbnd3ECN0c/J@wjQYQc/H7LyY9DZPRqKRKSOzKca3ZaEkh/P4mc8ec5LP@xyQlpBtACbNJk/aERO/ccoadsUauARefHrgjFFyw9y5xCkY9@nrTBCqz79t09di0sqWhFitsv) I get the reference solution of `6`.
[Answer]
# [05AB1E (legacy)](https://github.com/Adriandmen/05AB1E/wiki/Commands), 20 [bytes](https://github.com/Adriandmen/05AB1E/wiki/Codepage)
```
b©vDnDg°I°÷/ò})®RÏPн
```
Uses the legacy version of 05AB1E, because division-by-zero errors will result in the initial integer, whereas the new 05AB1E version would make it 0 instead.
Input-order as \$b,a,n\$.
Just like both Python answers, the test case `54,5,2` will result in `4` instead of `6`, because of different rounding than the Java reference implementation.
[Try it online](https://tio.run/##AS4A0f8wNWFiMWX//2LCqXZEbkRnwrBJwrDDty/Dsn0pwq5Sw49Q0L3//zIwMjAKMwo0) or [verify all test cases](https://tio.run/##MzBNTDJM/V9Waa@k8KhtkoKSfWVC6P@kQyvLXPJc0g9tiDi04fB2/cObajUPrQs63B9wYe9/nf/R0cY6RgZGBjrGsTowpgmCaQpkGgGZOoYwhhGMYQxjmMAYcMVmYIYhCIBlTXQMjYxNwDpMdUxNwGaY6ZiYQYTMdYyAdoEVWugYmpmZgQ2yBMobW1iCzTI0gBhgDmIb6pgCgY4FiA20xASEY2MB).
**Explanation:**
```
b # Convert the (implicit) input-integer `b` to a binary string
© # Store it in variable `®` (without popping)
v # Pop and loop its length amount of times:
D # Duplicate the top value
# (which is the implicit input-integer `a` in the first iteration)
n # Square it
Dg # Take its length without popping (by duplicating first)
° # Take 10 to the power that length
I° # Take 10 to the power input-integer `n` as well
÷ # Integer-divide 10^length by 10^n
/ # Divide the current square by this
# (the value remains the same for division-by-zero errors in the legacy
# version, which will happen if the amount of digits in the squared
# value is smaller than `n`)
ò # And bankers-round that decimal to the nearest integer
}) # After the loop: wrap all values on the stack into a list
®R # Push the binary-string from `®` and reverse it
Ï # Only leave the values in the list at the 1-bits
P # Take the product of those remaining values
н # And pop and push its first digit
# (after which it is output implicitly as result)
```
] |
[Question]
[
For more MtG-goodness: [Magic: The Gathering Combat with Abilities](https://codegolf.stackexchange.com/questions/171158/magic-the-gathering-combat-with-abilities?rq=1)
# Premise:
In Magic: the Gathering, you cast spells by paying their mana cost by tapping lands for the required amount. These lands can produce one of the five colors which are:
* White (W)
* Blue (U)
* Black (B)
* Red (R)
* Green (G)
The cost is made up of two parts: a number which is the generic mana requirement, and a series of symbols representing the colored mana requirement. The number is the generic mana cost and can use any color of mana to satisfy it, e.g. `(3)` can be paid with `WGG`. The symbols are a 1:1 requirement of a specific color. e.g. `WWUBR` would require 2 white mana, 1 blue, 1 black and 1 red. **The Generic part will always come before the Colored part.** As a reminder, `(0)` is a valid cost and must be handled.
You can have costs that are entirely generic, or entirely colored, or both. For example, the following card has a cost of 4BB and is be paid with 4 of whatever colored mana and 2 black mana:
[](https://i.stack.imgur.com/N3qqD.png)
Lands in this challenge will each produce one mana. However, we will consider lands that can produce multiple colors but still only yield 1 mana. E.g. `G` will produce a green mana, `WG` can produce either 1 white or 1 green.
# Input:
You will be given two inputs, a card's cost and a list of lands.
The card's cost can either be a string, or a tuple containing a number and a string for the colored part. If there's no generic part, you can pad the string/tuple with a 0.
The land list will be a list of strings where each one is what a given land can produce. This list can be empty (you have no lands). You can also take this as a list of ints using bit-mask logic but post your scheme if you do. Order is also up to you if it matters, otherwise it'll be assumed in `WUBRG` order.
```
#Example input formats
"4BB", ("WG","B","B") #
(4,"BB"), (7,3,3) #Both should return falsy
```
# Output:
A `truthy` value if you can successfully pay the cost given your lands and a `falsey` value if you cannot.
# Rules:
* You'll be guaranteed valid input
* Mana will be assumed to always be in "WUBRG" order. If you want a different order, state so in your answer.
* Colors will always be grouped in the cost, e.g. "WWUBBRG"
* Input will use either all Uppercase or all lowercase, your choice.
* You should be able to handle regex `127[WUBRG]{127}` and 254 lands.
* Standard loopholes forbidden
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), shortest answer per language wins
# Examples:
```
"0", ("") => 1
"1BB", ("WG","B","B") => 1
"BB", ("WG","B","B") => 1
"WB", ("WG","B","B") => 1
"1UB", ("W","U","B") => 1
"1BB", ("WB","WB","WG") => 1
"1", ("WG","B","B") => 1
"1BB", ("WGR","WB","WB") => 1
"WUBRG", ("W","U","B","R","G") => 1
"1WWUBB", ("W","WG","U","B","B","R") => 1
"10BB", ("WGR","WB","WB","B","B","B","B","B","B","B","B","B") => 1
"R", ("") => 0
"4", ("WG","B","B") => 0
"1BB", ("WG","WB") => 0
"1UB", ("WG","W","UB") => 0
"1UBR", ("W","WG","UBR") => 0
"WUBRG", ("WUBRG") => 0
"1WWUBB", ("W","WG","U","B","B") => 0
"10UU", ("WGR","WB","WB","B","B","B","B","B","B","B","B","B") => 0
```
[Answer]
# JavaScript (ES6), 91 bytes
Takes input as `(cost)(lands)`:
* \$cost\$ is a list of characters in `BGRUW` order, prefixed with the generic part, even when it's \$0\$
* \$lands\$ is a list of strings.
```
a=>g=([c,...r],n=0,s=e='')=>[...n+s].sort()+e==a|(c&&[e,e,...c].some((c,i)=>g(r,n+!i,s+c)))
```
[Try it online!](https://tio.run/##pZJBb4MgGIbv@xUdhwqRWUx2pQcP9U5GPBgPhlHr4qQRt2TJ/rsDuxjXgHWpiRzQ5/n43o@38rPUoqvP/VOrXuVwpENJ9xWFucBRFHUFbinBmkoaBIjuc7PXhrqItOp6iEJJafkNxXabSywtIOyndwmhwLX5v4IdbsPHGutQIIQGoVqtGhk1qoLBy@mjP30F6GG@e4S2BiCgQDAHZkWbpWe328QuPk6SiyFLAQbJ@LpcPp7czWd38XHCf3mDci@@on9b@7KkDoWXX3X6Vfmz6QAOiT@/lPHsOgIMrGzex0J9ns34sRE@NWNFo2Tk/wiCQ9lo361k666lsRIX/7w@VXL7Vmc@fIHnc95G4nT4ecavM02Yc6rk5lQNmf6//6WpTjLLDz8 "JavaScript (Node.js) – Try It Online")
### Commented
```
a => // main function taking the array a[] describing the cost
g = ( // g = recursive function taking:
[c, ...r], // c = next land string; r[] = remaining land strings
n = 0, // n = generic mana, initialized to 0
s = e = '' // s = generated cost string, initialized to e = empty string
) => //
[...n + s].sort() + e // prepend n to s, split, sort and force coercion to a string
== a | ( // if this is matching a[], the test is successful
c && // if c is defined:
[ // try the following recursive calls:
e, // - increment n and append nothing to s
e, // - do nothing
...c // - leave n unchanged and append a character to s
].some((c, i) => // for each c at position i in the above array:
g(r, n + !i, s + c) // process the recursive call
) // end of some()
) // end of the recursive part
```
[Answer]
# [Python 2](https://docs.python.org/2/), ~~131~~ 129 bytes
```
lambda (g,c),m:any(all(c[i]in p[i]for i in range(l(c)))for p in permutations(m,l(c)))*(g<=l(m)-l(c))
l=len
from itertools import*
```
[Try it online!](https://tio.run/##jZI7b4MwFIV3foXlLnbkSk7VqSodWNiREANlcFOglvyS4w759dQGSgMEUiQe9/o75twD5uK@tHrqmvi9E0x@fDKAWnLCRL4wdUFMCHQqecUVMP7WaAs48IVlqq2RX8MYh6YJTVNb@e2Y41qdkSTD6gG1r7FAEj/2dSRiUauosVoC7mrrtBZnwKXR1h06Y7lyoEGIEggxASWEFQYPYHHEb@AYTeyRwCQJNIJFCn3Rn3jUzVm6y67h4t@wd5H/wp7L77CTi7DpcElHfMVuW9hLIps2HgXr4fIkS5eWCQzCTS@FF12N2ZvKJ2NBvBLO3pntf1b6Bz/fG5xu/wLFNbpm8xkLh8bA32Cz5bhJNgVKbwdajo/Vjon9JKcUafcD "Python 2 – Try It Online")
[Answer]
# [Retina](https://github.com/m-ender/retina/wiki/The-Language), 60 bytes
```
\d+
*
~["^("|'|]")*\n"1,L$`(?<=(^|.*¶)+).*
(?($#1)^|([_$&]))
```
[Try it online!](https://tio.run/##ZY27CsIwFIb38xgx6kl6KAYclUKWLk6RkqEXK@jg0kEcg4/lA/hiMUm1IkIIH//tXM@3y3BUfo77nnxzykDCvWYdMrd0LROyGZiiHe@x2Gyxc7l8PkQmcglYIJ8p0TmsD3zRCuH9ikBpTbYkTRq@ZCdSVUCqIkV7fCWoyU8lMzpgK23KMU@GQswGJQ6EdNSCCoZg/duOzXQnVRObd0ebz2b8//de "Retina – Try It Online") Link includes test cases. Explanation:
```
\d+
*
```
Convert the generic mana to unary. This uses repeated `_`s.
```
1,L`.*
```
Match all lines after the first, i.e. the list of lands. (This would normally match again at the very end of the input, but the lookbehind prevents that.)
```
(?<=(^|.*¶)+)
```
Capture the 1-indexed line number in `$#1`.
```
$
(?($#1)^|([_$&]))
```
Replace each land with a regex that captures costs matching that land or generic costs, but only once.
```
|'|
```
Join the resulting regexes with `|`s.
```
["^("]")*\n"
```
Wrap the regex in `^(` and `)*\n` (I can't seem to insert a `¶` here).
```
~
```
Count the number of matches of that regex on the current value.
Example: For the case of `1BB¶WB¶WB¶WG` the generated regex is:
```
^((?(2)^|([_WB]))|(?(3)^|([_WB]))|(?(4)^|([_WG])))*\n
```
which `_BB¶WB¶WB¶WG` matches as required.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 21 bytes
```
Œpµ®œ-)Ạ
L<⁴Ṫ©L+Ḣ¤ȯçṆ
```
[Try it online!](https://tio.run/##y0rNyan8///opIJDWw@tOzpZV/PhrgVcPjaPGrc83Lnq0Eof7Yc7Fh1acmL94eUPd7b9//8/WilcSUcp3B1IhAKxExQHKcX@jzbUUVAKDw91clKKBQA "Jelly – Try It Online")
Outputs
The input format is what really makes this hard for Jelly. Because `Ṫ` and `Ḣ` modify the array, we need to use `©` and `®` in addition. With 3 separate inputs this would be [18 bytes](https://tio.run/##y0rNyan8///opIKjk3UdHjWtebhrAZePzaPGLT7ajxq3HlpyYv3h5Q93tv3//z9aKVxJRyncHUiEArETFAcpxf5XCg8PdXJS@m8IAA). (Although I'm sure there's 14 or so byte solution waiting to be posted by one of the Jelly masterminds.)
[Answer]
# [Pyth](https://github.com/isaacg1/pyth), 25 bytes
```
&glQ+hAElH}k.-LHusM*GHQ]k
```
[Try it online!](https://tio.run/##K6gsyfj/Xy09J1A7w9E1x6M2W0/Xx6O02FfL3SMwNvv//2ilcCUdpXB3IBEKxE5QHKQUyxVtCJQID3VyUooFAA "Pyth – Try It Online")
If Pyth had a "Cartesian product of array" function like Jelly's `Œp`, this would easily beat my Jelly solution. Currently that is done by `usM*GHQ]k`.
[Answer]
# [Perl 6](https://github.com/nxadm/rakudo-pkg), ~~56~~ 46 bytes
```
{(1 x*~*).comb.Bag⊆any [X] $(1 X~$_)>>.comb}
```
[Try it online!](https://tio.run/##K0gtyjH7n1upoJamYPu/WsNQoUKrTktTLzk/N0nPKTH9UVdbYl6lQnRErIIKUDKiTiVe084OLF37vzixUsE@TUMv2jBWU6NGL9ogVlMhLb@Ii0tDw0BHSUlTR0FDSUlHU1MHKGCoo@TkBBEKd1cCcsAYImeAXy4clxzQzFCYHFA4FFUKbiRIC4RwR8jiNhLhlCC4RmTXhDoFuaNbqqMEUotkfDhQGZLTwPaEwu0CKQcphZgYhBpSJsQ5DtlZyAEBllCCCCAkg9Dd4hSE3Utgpg6R/tDU/A8A "Perl 6 – Try It Online")
Curried function. Takes input as `(@lands)($generic_cost, $colored_costs)` with an explicit 0 for generic cost. The basic idea is to introduce a new symbol `1` representing generic mana and use Perl 6 Bags (multisets) to check whether it's possible to obtain the required mana from lands.
### Explanation
```
{ ... } # Anonymous block returning WhateverCode
# Preprocess cost
1 x* # '1' for generic mana repeated times generic cost
~* # Concat with colored costs
( ).comb # Split into characters
.Bag # Convert to a Bag (multiset)
# Preprocess lands
1 X~$_ # Prepend '1' to each land
$( ) # Itemize to make 1-element lists work
>>.comb # Split each into chars
[X] # Cartesian product, yields all possible ways
# to select colors from lands
# Finally check if the cost Bag is a subset of any possible
# color selection (which are implicitly converted to Bags)
⊆any
```
[Answer]
# [Haskell](https://www.haskell.org/), 94 bytes
```
x#[]=[]
x#(s:t)|x`elem`s=t|0<1=s:x#t
(e,[])?s=length s>=e
(e,x:y)?s|x#s==s=0>1|0<1=(e,y)?(x#s)
```
[Try it online!](https://tio.run/##nVPPb4IwFD6vf8VL2aGNJYFkJ7NqwsXLdmEhHBiJZDZqhmhst7HE/521dTLFottICuV73/v1vXZRyFdRlk1Te1nOsxzVHpFDRXf1VJRiNZVc7YL7kMth7SlEBMtyOpa8FNVcLUCOuDBgPfzU6K72JOeSB6PQ@miDholGaaOEVBI4ZOjG92Gzlku1fBcIvh9CAgY4xpRBpj85ZR2TtZzCoYajaO@STjDDkV3nvr8ipddIJl1yIGl70sNps5kg@9fEQXNkg/7u4jaWs/Ykiifdyhg2Tq7UqeYfNWJrSNo62Jn@YdBby49T/zLB7NQrMS/6p95JeufW6OIBSC/OzDJMq25W3FUkiq9Ibbd/ldchbZL8X9o2Vo7QqlhW@oqtis0jbN7Uk9o@VHBr/oHAM3kptjMGZVHNJAV/BHKx/oBTdDAADL62YbM1BGuH8YFAwV5k1HwB "Haskell – Try It Online")
We rely on the fact that all colors will be given in the same order in the cost and in the land list. First we tap the lands giving the required colored mana and after that just check that we still have enough lands to pay the colorless cost.
] |
[Question]
[
We have a floating point number `r` between 0 and 1, and an integer `p`.
Find the fraction of integers with the smallest denominator, which approximates `r` with at least `p`-digit precision.
* Inputs: `r` (a floating point number) and `p` (integer).
* Outputs: `a` and `b` integers, where
+ `a/b` (as float) approximates `r` until `p` digits.
+ `b` is the possible smallest such positive integer.
For example:
* if `r=0.14159265358979` and `p=9`,
* then the result is `a=4687` and `b=33102`,
* because `4687/33102=0.1415926530119026`.
Any solution has to work in theory with arbitrary-precision types, but limitations caused by implementations' fixed-precision types do not matter.
Precision means the number of digits after "`0.`" in `r`. Thus, if `r=0.0123` and `p=3`, then `a/b` should start with `0.012`. If the first `p` digits of the fractional part of `r` are 0, undefined behavior is acceptable.
Win criteria:
* The algorithmically fastest algorithm wins. *Speed is measured in O(p).*
* If there are multiple fastest algorithms, then the shortest wins.
* My own answer is excluded from the set of the possible winners.
P.s. the math part is actually much easier as it seems, I suggest to read [this](https://math.stackexchange.com/q/2432123/111704) post.
[Answer]
# JavaScript, O(10p) & 72 bytes
```
r=>p=>{for(a=0,b=1,t=10**p;(a/b*t|0)-(r*t|0);a/b<r?a++:b++);return[a,b]}
```
It is trivial to prove that the loop will be done after at most O(10p) iterations.
```
f=
r=>p=>{for(a=0,b=1,t=10**p;(a/b*t|0)-(r*t|0);a/b<r?a++:b++);return[a,b]}
```
```
<math xmlns="http://www.w3.org/1998/Math/MathML">
<mrow>
<mn>0.<input type="text" id="n" value="" oninput="[p,q]=f(+('0.'+n.value))(n.value.length);v1.value=p;v2.value=q;d.value=p/q" /></mn>
<mo>=</mo>
<mfrac>
<mrow><mn><output id="v1">0</output></mn></mrow>
<mrow><mn><output id="v2">1</output></mn></mrow>
</mfrac>
<mo>=</mo>
<mn><output id="d">0</output></mn>
</mrow>
</math>
```
Many thanks to Neil's idea, save 50 bytes.
[Answer]
# [Haskell](https://www.haskell.org/), O(10p) in worst case ~~121~~ 119 bytes
```
g(0,1,1,1)
g(a,b,c,d)r p|z<-floor.(*10^p),u<-a+c,v<-b+d=last$g(last$(u,v,c,d):[(a,b,u,v)|r<u/v])r p:[(u,v)|z r==z(u/v)]
```
[Try it online!](https://tio.run/##VYxLDoIwGITXcop/waKVFimIWkNPopgUECRWaMpjQTi7FdiZWUzmm8y8ZPd@KmVLcbcVCghbhZ0KSZKRnBTYgJ6nhJaqbY2P9ix4aEyGhEovJ2NCM68QSna9W6HN0EDGbXe9bRdLxLNJhsOYrlcL3cgERogJLRin9iPrBgQUrbPTpm56cKGEwGdHFvPwFEfxhZ858P82YGEEkf3mpZJVZ2mu9Q8 "Haskell – Try It Online")
*Saved 2 bytes thanks to Laikoni*
I used the algorithm from <https://math.stackexchange.com/questions/2432123/how-to-find-the-fraction-of-integers-with-the-smallest-denominator-matching-an-i>.
At each step, the new interval is one half of the previous interval. Thus, the interval size is `2**-n`, where `n` is the current step. When `2**-n < 10**-p`, we are sure to have the right approximation. Yet if `n > 4*p` then `2**-n < 2**-(4*p) == 16**-p < 10**-p`. The conclusion is that the algorithm is `O(p)`.
**EDIT As pointed out by orlp in a comment, the claim above is false.**
In the worst case, `r = 1/10**p` (`r= 1-1/10**p` is similar), there will be `10**p` steps : `1/2, 1/3, 1/4, ...`. There is a better solution, but I don't have the time right now to fix this.
[Answer]
### C, 473 bytes (without context), O(p), non-competing
This solution uses the math part detailed in [this](https://math.stackexchange.com/q/2432123/111704) excellent post. I calculated only `calc()` into the answer size.
```
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
void calc(float r, int p, int *A, int *B) {
int a=0, b=1, c=1, d=1, e, f;
int tmp = r*pow(10, p);
float ivl = (float)(tmp) / pow(10, p);
float ivh = (float)(tmp + 1) / pow(10, p);
for (;;) {
e = a + c;
f = b + d;
if ((ivl <= (float)e/f) && ((float)e/f <= ivh)) {
*A = e;
*B = f;
return;
}
if ((float)e/f < ivl) {
a = e;
b = f;
continue;
} else {
c = e;
d = f;
continue;
}
}
}
int main(int argc, char **argv) {
float r = atof(argv[1]);
int p = atoi(argv[2]), a, b;
calc(r, p, &a, &b);
printf ("a=%i b=%i\n", a, b);
return 0;
}
```
] |
[Question]
[
First, a few definitions:
* Given `n` and `k`, consider the sorted list of [**multisets**](https://en.wikipedia.org/wiki/Multiset), where for each multiset we choose `k` numbers from `{0, 1, ..., n-1}` with repetitions.
For example, for `n=5` and `k=3`, we have:
>
> [(0, 0, 0), (0, 0, 1), (0, 0, 2), (0, 0, 3), (0, 0, 4), (0, 1, 1), (0, 1, 2), (0, 1, 3), (0, 1, 4), (0, 2, 2), (0, 2, 3), (0, 2, 4), (0, 3, 3), (0, 3, 4), (0, 4, 4), (1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4), (1, 2, 2), (1, 2, 3), (1, 2, 4), (1, 3, 3), (1, 3, 4), (1, 4, 4), (2, 2, 2), (2, 2, 3), (2, 2, 4), (2, 3, 3), (2, 3, 4), (2, 4, 4), (3, 3, 3), (3, 3, 4), (3, 4, 4), (4, 4, 4)]
>
>
>
* A **part** is a list of multisets with the property that the size of the intersection of all multisets in the part is at least `k-1`. That is we take all the multisets and intersect them (using multiset intersection) all at once. As examples, `[(1, 2, 2), (1, 2, 3), (1, 2, 4)]` is a
part as its intersection is of size 2, but `[(1, 1, 3),(1, 2, 3),(1, 2, 4)]` is not, because its intersection is of size 1.
**Task**
Your code should take two arguments `n` and `k`. It should then greedily go through these multisets in sorted order and output the parts of the list. For the case `n=5, k=3`, the correct partitioning is:
```
(0, 0, 0), (0, 0, 1), (0, 0, 2), (0, 0, 3), (0, 0, 4)
(0, 1, 1), (0, 1, 2), (0, 1, 3), (0, 1, 4)
(0, 2, 2), (0, 2, 3), (0, 2, 4)
(0, 3, 3), (0, 3, 4)
(0, 4, 4)
(1, 1, 1), (1, 1, 2), (1, 1, 3), (1, 1, 4)
(1, 2, 2), (1, 2, 3), (1, 2, 4)
(1, 3, 3), (1, 3, 4)
(1, 4, 4)
(2, 2, 2), (2, 2, 3), (2, 2, 4)
(2, 3, 3), (2, 3, 4)
(2, 4, 4)
(3, 3, 3), (3, 3, 4)
(3, 4, 4), (4, 4, 4)
```
Here is another example for `n = 4, k = 4`.
```
(0, 0, 0, 0), (0, 0, 0, 1), (0, 0, 0, 2), (0, 0, 0, 3)
(0, 0, 1, 1), (0, 0, 1, 2), (0, 0, 1, 3)
(0, 0, 2, 2), (0, 0, 2, 3)
(0, 0, 3, 3)
(0, 1, 1, 1), (0, 1, 1, 2), (0, 1, 1, 3)
(0, 1, 2, 2), (0, 1, 2, 3)
(0, 1, 3, 3)
(0, 2, 2, 2), (0, 2, 2, 3)
(0, 2, 3, 3), (0, 3, 3, 3)
(1, 1, 1, 1), (1, 1, 1, 2), (1, 1, 1, 3)
(1, 1, 2, 2), (1, 1, 2, 3)
(1, 1, 3, 3)
(1, 2, 2, 2), (1, 2, 2, 3)
(1, 2, 3, 3), (1, 3, 3, 3)
(2, 2, 2, 2), (2, 2, 2, 3)
(2, 2, 3, 3), (2, 3, 3, 3)
(3, 3, 3, 3)
```
**Clarification of what greedy means:** For each multiset in turn we look to see if it can be added to the existing part. If it can we add it. If it can't we start a new part. We look at the multisets in sorted order as in the example given above.
**Output**
You can output the partitioning in any sensible format you like. However, multisets should be written horizontally on one line. That is an individual multiset should not be written vertically or spread over several lines. You can choose how you separate the representation of parts in the output.
**Assumptions**
We can assume that `n >= k > 0`.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), ~~26~~ 25 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
œ&µL‘<⁴ȧ⁹ȯ
œċµç\L€=⁴œṗµḊ’
```
Full program which prints a representation of a list of lists, each list being a part, e.g. for n=5, k=3:
```
[[[0, 0, 0], [0, 0, 1], [0, 0, 2], [0, 0, 3], [0, 0, 4]], [[0, 1, 1], [0, 1, 2], [0, 1, 3], [0, 1, 4]], [[0, 2, 2], [0, 2, 3], [0, 2, 4]], [[0, 3, 3], [0, 3, 4]], [0, 4, 4], [[1, 1, 1], [1, 1, 2], [1, 1, 3], [1, 1, 4]], [[1, 2, 2], [1, 2, 3], [1, 2, 4]], [[1, 3, 3], [1, 3, 4]], [1, 4, 4], [[2, 2, 2], [2, 2, 3], [2, 2, 4]], [[2, 3, 3], [2, 3, 4]], [2, 4, 4], [[3, 3, 3], [3, 3, 4]], [[3, 4, 4], [4, 4, 4]]]
```
*Note: the representation used removes the redundant* `[` *and* `]` *around lists of length 1.*
**[Try it online!](https://tio.run/nexus/jelly#AToAxf//xZMmwrVM4oCYPOKBtMin4oG5yK8KxZPEi8K1w6dcTOKCrD3igbTFk@G5l8K14biK4oCZ////Nf8z)** or see a [pretty print version](https://tio.run/nexus/jelly#AUAAv///xZMmwrVM4oCYPOKBtMin4oG5yK8KxZPEi8K1w6dcTOKCrD3igbTFk@G5l8K14biK4oCZS@KCrEf///8xMf8z) (cost 3 bytes)
### How?
```
œ&µL‘<⁴ȧ⁹ȯ - Link 1, conditional multi-set intersection: list x, list y
œ& - multi-set intersection(x, y)
µ - monadic chain separation (call that i)
L - length(i)
‘ - increment
< - less than?:
⁴ - 2nd program input, k
ȧ - logical and with:
⁹ - link's right argument, y (y if i is too short, else 0)
ȯ - logical or (y if i is too short, else i)
œċµç\L€=⁴œṗµḊ’ - Main link: n, k
œċ - combinations with replacement(n, k) (sorted since n implies [1,n])
µ - monadic chain separation (call that w)
œṗ - partition w at truthy indexes of:
ç\ - reduce w with last link (1) as a dyad
L€ - length of €ach
⁴ - 2nd program input, k
= - equal (vectorises)
µ - monadic chain separation
Ḋ - dequeue (since the result will always start with an empty list)
’ - decrement (vectorises) (since the Natural numbers were used by œċ)
```
[Answer]
# MATLAB, 272 bytes
```
function g(n,k);l=unique(sort(nchoosek(repmat(0:n-1,1,k),k),2),'rows');p=zeros(0,k);for i=1:size(l,1)p=[p;l(i,:)];a=0;for j=1:size(p,1)for m=1:size(p,1)b=0;for h=1:k if(p(j,h)==p(m,h))b=b+1;end;end;if(b<k-1)a=1;end;end;end;if(a)fprintf('\n');p=l(i,:);end;disp(l(i,:));end;
```
**Output:**
```
>> g(5,3)
0 0 0
0 0 1
0 0 2
0 0 3
0 0 4
0 1 1
0 1 2
0 1 3
0 1 4
0 2 2
0 2 3
0 2 4
0 3 3
0 3 4
0 4 4
1 1 1
1 1 2
1 1 3
1 1 4
1 2 2
1 2 3
1 2 4
1 3 3
1 3 4
1 4 4
2 2 2
2 2 3
2 2 4
2 3 3
2 3 4
2 4 4
3 3 3
3 3 4
3 4 4
4 4 4
>> g(4,4)
0 0 0 0
0 0 0 1
0 0 0 2
0 0 0 3
0 0 1 1
0 0 1 2
0 0 1 3
0 0 2 2
0 0 2 3
0 0 3 3
0 1 1 1
0 1 1 2
0 1 1 3
0 1 2 2
0 1 2 3
0 1 3 3
0 2 2 2
0 2 2 3
0 2 3 3
0 3 3 3
1 1 1 1
1 1 1 2
1 1 1 3
1 1 2 2
1 1 2 3
1 1 3 3
1 2 2 2
1 2 2 3
1 2 3 3
1 3 3 3
2 2 2 2
2 2 2 3
2 2 3 3
2 3 3 3
3 3 3 3
```
Two empty lines between different parts.
**Ungolfed:**
```
function g(n,k);
l=unique(sort(nchoosek(repmat(0:n-1,1,k),k),2),'rows');
p=zeros(0,k);
for i=1:size(l,1)
p=[p;l(i,:)];
a=0;
for j=1:size(p,1)
for m=1:size(p,1)
b=0;
for h=1:k
if(p(j,h)==p(m,h))
b=b+1;
end;
end;
if(b<k-1)
a=1;
end;
end;
end;
if(a)
fprintf('\n');
p=l(i,:);
end;
disp(l(i,:));
end;
```
**Explanation:**
First we find all the multisets with brute force:
```
l=unique(sort(nchoosek(repmat(0:n-1,1,k),k),2),'rows');
```
`repmat(0:n-1, 1, k)` repeats the vector of values from `0` to `n-1` `k` times.
`nchoosek(x, k)` returns a matrix containing all k-combinations of the repeated vector.
`sort(x, 2)` sorts all the k-combinations, and then `unique(x, 'rows')` removes all duplicates.
`p=zeros(0,k);` creates an empty matrix with `k` columns. We'll use it as a stack. On each iteration of the outernmost `for` loop, we first add the current multiset to said stack: `p=[p;l(i,:)];`.
Then we check if the intersection of all multisets in the stack is at least `k-1` long with the following code (we can't use MATLAB's `intersect` command to check for the intersections, because it returns a set, but we need a multiset):
```
a=0;
for j=1:size(p,1)
for m=1:size(p,1)
b=0;
for h=1:k
if(p(j,h)==p(m,h))
b=b+1;
end;
end;
if(b<k-1)
a=1;
end;
end;
end;
```
Now, if the intersection is long enough, `a == 0`, otherwise `a == 1`.
If the intersection isn't long enough, we print a newline and empty the stack:
```
if(a)
fprintf('\n');
p=l(i,:); % Only the current multiset will be left in the stack.
end;
```
Then we just print the current multiset:
```
disp(l(i,:));
```
[Answer]
# [MATL](https://github.com/lmendo/MATL), 34 bytes
```
vi:qiZ^!S!Xu!"@!&vt1&dXasq?0&Y)0cb
```
Parts are separated by a line containing whitespace.
[Try it online!](https://tio.run/nexus/matl#@1@WaVWYGRWnGKwYUaqo5KCoVlZiqJYSkVhcaG@gFqlpkJz0/78plzEA)
### Explanation
*Disclaimer: this method seems to work (and it does in the test cases), but I don't have a proof that it always does*
Multisets are sorted, both internally (i.e. each multiset has non-decreasing entries) and externally (i.e. multiset *M* comes before multiset *N* if *M* precedes *N* lexicographically).
To compute the multiset intersection, the sorted multisets are arranged as rows of a matrix and consecutive differences are computed along each column. If all columns except at most one have all differences equal to zero, the multisets belong to the same part.
This test would give a false negative result for multisets like `(1,2,3)` and `(2,3,4)`: even if `2`, `3` are common entries, they would not be detected as such because they are in non-matching columns.
However, this doesn't seem to be a problem, at least in the test cases. It appears that a test between multisets like `1,2,3` and `2,3,4` never actually has to be done, because some intermediate multiset gave a negative result and so they already are in different parts. If this is indeed true, the reason no doubt has to do with the fact that the multisets are sorted.
I don't have a proof of this, though. It just seems to work.
```
v % Concatenate stack vertically: gives an empty array. This will
% grow into the first part
i:q % Input n. Push [0 1 ... n-1]
i % Input k
Z^ % Cartesian power. Each Cartesian tuple is on a row
!S! % Sort each row
Xu % Unique rows. This gives all multisets, sorted, each on a row
! % Transpose
" % For each column
@! % Push current multiset as a row
&v % Vertically concatenate with the part so far
t % Duplicate
1&d % Consecutive differences along each column
Xas % Number of columns that contain at least one non-zero entry
q? % If that number is not 1 (this means that the current
% multiset should begin a new part)
0&Y) % Push last row, then the array with the remaining rows.
% Said array is a part, which we now know is complete
0c % Push character 0. This will be shown as a line containing
% a space. This is used as a separator between parts.
b % Bubble up. This moves the loose row to the top. This row
% is the beginning of a new part
% Implicitly end if
% Implicitly end for
% Implicitly display
```
[Answer]
# PHP, 245 Bytes
```
for(;$i<($n=$argv[1])**$m=$argv[2];$i++){for($a=[],$v=$i;$v|count($a)<$m;$v=$v/$n^0)array_unshift($a,$v%$n);sort($a);in_array($a,$r)?:$r[]=$a;}foreach($r as$k=>$v)$k&&count(array_diff_assoc($x[$c][0],$v))<2?$x[$c][]=$v:$x[++$c][]=$v;print_r($x);
```
[Try it online!](https://tio.run/nexus/php#RZBNboMwEIX3nAJZ0wgHmqapuolxOYjrIouG4kaxkUksaJqzU/9QxTt/783MmymrvutnEObLUoYeUfFavHCSJK02GQFZZqBoUNkzx@s1nJbfjjs1z/E1Sd3zbhCU8QIsBUnA/jb6os4O4hJOxFP7BOpji4NfGCOm@qKGTrbe5MoeQGESxEGbUBh/UtXBHVwGV3swjLsQJLn5kAfRdBmYVAxwpG9gY384rlYxQJz0Kdu2FsOgmwxGBg1nWx8V43JXLcD1tKF270Ce/6N4ijhl9FMmfIXebUrufPL8x3NfoinK0OZbS5WhAhVO2CCMyC00PzSdThctdWLvxHeF/DK9kepcuzuOmMzzHw "PHP – TIO Nexus")
Expanded
```
for(;$i<($n=$argv[1])**$m=$argv[2];$i++){ # loop till $argv[1]**$argv[2]
for($a=[],$v=$i;$v|count($a)<$m;$v=$v/$n^0)
array_unshift($a,$v%$n); # create base n array
sort($a); #sort array
in_array($a,$r)?:$r[]=$a; # if sorted array is not in result add it
}
foreach($r as$k=>$v)
$k&& # > first item and
count(array_diff_assoc($x[$c][0],$v))<2 # if difference is only 1 item between actual item and first item in last storage item
?$x[$c][]=$v # add item in last storage array
:$x[++$c][]=$v; # make a new last storage array
print_r($x); # Output as array
```
Output as String
```
foreach($x as$y){$p=[];
foreach($y as$z){$p[]=$o="(".join(",",$z).")";}
echo join(", ",$p)."\n";
}
```
## n>15 for more precision
```
for($i=0;$i<bcpow($argv[1],$argv[2]);$i=bcadd($i,1)){
for($a=[],$v=$i;$v|count($a)<$argv[2];$v=bcdiv($v,$argv[1]))
array_unshift($a,bcmod($v,$argv[1]));
sort($a);
in_array($a,$r)?:$r[]=$a;
}
```
] |
[Question]
[
Write a program or function with the following functionality:
* The program/function first attempts to write the string `Hello, world!` to the standard output stream. (No other forms of output are acceptable for this challenge, as the focus is very much on the I/O rather than the trivial behaviour of the program itself.) Depending on whether it succeeded:
+ If it succeeded in outputting `Hello, world!`, the program/function exits without any further behaviour.
+ If it failed to produce the correct output due to an error, the program/function attempts to write the string `Error writing "Hello, world!"` to the standard error stream. (For the purposes of this challenge, you don't need error handling for the error handling itself.)
## Clarifications
* Your program/function will be run with no input (unless it's written in a language which absolutely requires input to work, in which case it will be run with the simplest possible input).
* When producing output, you may also produce a single trailing newline if you wish, but doing so is not mandatory.
* The definition of "error writing to standard output" that your program implements must treat at least the following cases as errors:
+ Standard output being nonexistent (i.e. `stdout` is a closed filehandle, no file descriptor 1 exists, or however those cases translate to the language and OS you're using);
+ Standard output referring to a file on a disk that has no free space left;
+ Standard output connecting to another program, which has already closed its end of the connection.and must treat at least the following cases as success (i.e. not an error):
+ Standard output connects to a terminal, and `Hello, world!` is displayed onscreen.
+ Standard output connects to a file, and `Hello, world!` is written into the file.You can choose the details of what counts as an output error, so long as it's consistent with the above rules.
* Your program/function should not crash upon encountering any of the error situations listed above. It's up to you what exit code you use.
* Your program/function should not describe the nature of the encountered error on the standard error stream; it should just print the string specified above. Extraneous output on standard error (e.g. compiler warnings) is only legal if it's produced unconditionally, regardless of whether an error is encountered or not.
* Your program only needs to work on one operating system (although it must be one on which the errors listed above make sense; I've tried to keep them general enough to work on most multitasking consumer operating systems, but weirder operating systems may well be excluded from this challenge). If your program is nonportable, list the assumptions it needs to run in the title of your submission.
* This task may not be possible in every language (not every language allows a program to handle output errors in a custom way). You'll have to pick a language where it is possible.
* Make sure that your program/function works! Don't just trust the documentation of library functions to do what they say they do. The error handling of simple output functions often turns out to be broken in practice, even if the functions claim to handle errors in theory.
## Test cases
Here's a way to simulate each of the error conditions above using `bash` on Linux (you don't have to use Linux, but it's likely the easiest system to test this on):
```
your_program_here >&- # nonexistent stdout
your_program_here > /dev/full # out of disk space
mkfifo test # note: change "test" to a filename that isn't in use
true < test &
your_program_here > test # connecting to a program that doesn't want input
rm test # clean up the FIFO we used earlier
```
The first two testcases are deterministic. The last isn't (it relies on a race condition); for testing purposes, I recommend adding a delay between the start of your program and the actual output to standard output, in order to ensure that the race condition is resolved in the way that exposes the error.
## Victory condition
This is a [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'") challenge, so shorter is better. As (nearly) always, we're measuring the length of the program in bytes.
[Answer]
# [Bash](https://www.gnu.org/software/bash/), ~~71~~ 60 bytes
```
h=Hello,\ world!
(echo $h)2>&-||echo Error writing \"$h\">&2
```
[Try it online!](https://tio.run/nexus/bash#jY2xDoJAEET7@4qRENBEIaIlR2fiR9AgLB7h9JLlkIZ/RzwLYmG02ezOvNkpC4sMaog6hTRFGIWTkmfS2mxzDIZ1tRJrKpWBrzZJFuzG0V0nZsMYuLHN/Yrc81XuZUEyRUI4X0qJvZsjLBHiih5xZytiFpdiLnOVC5v8ZDGXL/zhD/5t1L3WS@74JXdr66Y2s9xZYbknpG5H8PnxpU1P "Bash – TIO Nexus")
### How it works
After saving `Hello, world!` to the variable **h**, we do the following.
First, `(echo $h)2>&-` attempts to print `Hello, world!` to STDOUT. `2>&-` is required to prevent displaying the error message *echo: write error: Bad file descriptor* in case the write fails. Since writing to a named pipe that doesn't accept input would kill the Bash program with signal 13 (SIGPIPE), we execute the command in a subshell (`(...)`), so only the subshell will get killed.
Finally, if printing to STDOUT failed, the subshell will exit with a non-zero status code (141 for SIGPIPE, 1 for a generic error), so `echo Error writing \"$h\">&2` prints the desired message to STDERR.
[Answer]
# [Python 2](https://docs.python.org/2/), 65 bytes
```
h='Hello, world!'
try:print h
except:exit('Error writing "%s"'%h)
```
Two bytes could be saved by printing single quotes.
[Try it online!](https://tio.run/nexus/bash#jY/dCoJAEIXv9ykmQbeglH6uRL0Leo3QsV3a3GUcU6F3N9MLIQi6GYYz5zuHya8MGag2dD0kCchQDiqVFzTGbqG1ZIqVFEx97EhXDEpgl6PjGDvNa3kmsgQtadbVDTy/9qSvNkMoBObKQpqmsJ/mCxgRogKfUc0FEgnXs7LV3Ly4D3@4IQt2C3H8i5hPZWPMQp5@kI97qUs7yjWPnzcIybRD8J35UYc3 "Python 2 – TIO Nexus")
[Answer]
# [Zsh](https://www.zsh.org/), 55 bytes
```
h=Hello,\ world!
2>&-<<<$h||<<<'Error writing "'$h\">&2
```
Unlike its cousin Bash, Zsh refuses to die because of a broken pipe.
[Try it online!](https://tio.run/nexus/zsh#jY7BDoIwEETv/YqREHpRiOix5WbiR3AxsFhitclSJDH8O1a84MHoZXczmbcz1cmjgBnSzkApyFRORh/JWrcuMTi29UrkRbJRSsVmHMOSB2bHGLj17e2MSMamjIokn1IhqDIOUmuNLcKUGOGJkNV0zzpfE7N4hKA5bmHOf5oRKiyA3R/AW296axfg/ht4vTRt44LceeG5J6j5RvLx8iVNTw "Zsh – TIO Nexus")
[Answer]
# [C (gcc)](https://gcc.gnu.org/), ~~87~~ 86 bytes
```
f(){signal(13,1);write(1-puts("Hello, world!"),"Error writing \"Hello, world!\"",29);}
```
[Try it online!](https://tio.run/nexus/bash#bY7LboMwEEX3/opbq0pA4lGTbioeyqZSPyIbBAasOjiyTVgkfDvlkbZU6mY0mjm69xS5RYamDwokCfbBfqwc92ZE3ebSYQePuXGvheUO8y@dNQ794FIqD73SsnyirkfftVYaMyTaGqe/wIlSL3pz42EUrcU5F61zVaJ0b1NLPJCAkLoo4KvJYJWIMoQlv4ZtJyXhRaNYNPlg3vB8xB2W85UwtuRaxxjIg0OapmDzJEHY9I/r9hn9PJHt/H@AwwZYW6pfjy34uoDnz0pUalIylljdcSTLjh0xkvMLXgL2HbYwa8D4BQ "Bash – TIO Nexus")
### Ungolfed
```
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
void f(void)
{
signal(SIGPIPE, SIG_IGN); // Works (and is required) on TIO. YMMV
int fd = (puts("Hello, world!")) < 0 ? 2 : -13;
write(fd, "Error writing \"Hello, world!\"", 29);
}
```
[Answer]
# PowerShell, 80 Bytes
```
try{echo($h="Hello, World!") -ea 4}catch{$host.ui|% *rL* "Error writing ""$h"""}
```
explained:
```
try{
#Attempt to 'echo' (write output) the string, and assign it to $h
#Make sure the 'error action' is set to '4' to make it a terminating error.
echo($h="Hello, World!") -ea 4
} catch {
#Use the "WriteErrorLine" function in $host.ui to stderr
$host.ui|% *rL* "Error writing ""$h"""
}
```
haven't managed to actually try this when it errors, but it definitely ~should~ work.
[Answer]
# Perl 5, 51 bytes
requires `-M5.01`, which is free
```
say$h="Hello, world!"or die"Error writing \"$h\"$/"
```
Tested in Strawberry Perl 5.24.0 by running the program as-is (printed to standard output) and by running
```
print f $h="Hello, world!"or die"Error writing \"$h\"$/"
```
(printed to standard error). I don't know how to test for other errors using Strawberry, but they *should* be handled the same….
[Answer]
## REXX, ~~111~~ 106 bytes
```
signal on notready
a='Hello, world!'
_=lineout(,a)
exit
notready:_=lineout('stderr','Error writing "'a'"')
```
The program relies on there being a stream called 'stderr'. This will probably not be the case on IBM systems.
[Answer]
**C, 77 bytes**
```
f(a){a="Error writing \"Hello, world!\"";write(1,a+15,13)-13&&write(2,a,29);}
```
for call
```
main(){f(1); return 0;}
```
[Answer]
# Javascript, ~~79~~ 76 bytes
```
try{(l=console).log(a="Hello, world!")}catch(e){l.error('Error writing '+a)}
```
[Answer]
# [R](https://www.r-project.org/), 91 bytes
```
s="Hello, world!"
tryCatch(cat(s),error=function(e)cat('Error writing "','"',file=2,sep=s))
```
[Try it online!](https://tio.run/##FcixCoAgEADQva8wFxVuaneKoN8QO0sQjfNC@nrL4S2Peq9W7phSAdEKpWOWE9O7OvaX9o51NYBEhWx4sudYskYzXm1jRaPIMZ9CKlC/EBPaBSrethrT@wc "R – Try It Online")
I tried erroring it by running it with `cat(s,file=12)` instead of `cat(s)`, and it prints the correct text to stderr. This is an `invalid connection` error otherwise.
] |
[Question]
[
# Challenge
Write a function or program that accepts a line of input, performs a very specific and oddly familiar shuffle on its characters, and outputs the result.
The required shuffling can be described using the following algorithm:
1. Label each character in the input with a 1 based index.
2. Write character number 1 as output.
3. Starting with character number 2, write every other character to the output in order, *excluding* character 2 itself. In other words, write characters 4, 6, 8, 10, and so on as output.
4. Starting with the next character number n not yet written as output, write every nth character to the output, *excluding* character n itself, and excluding any other character (by numeric label) you may have already written to the output.
5. Repeat step 4 as long it continues to add new characters to the output.
6. Write the remaining characters to output, in order.
# Example
1. Label the characters.
```
*1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27*
O L D D O C Y A K ' S B E A U T Y C O R N E R
```
2. Write the first character to output:
```
*~~**1**~~ 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27*
~~**O**~~ L D D O C Y A K ' S B E A U T Y C O R N E R
**O**
```
3. Write every other character starting with 2, excluding 2.
```
*~~1~~ 2 3 ~~**4**~~ 5 ~~**6**~~ 7 ~~**8**~~ 9 ~~**10**~~ 11 ~~**12**~~ 13 ~~**14**~~ 15 ~~**16**~~ 17 ~~**18**~~ 19 ~~**20**~~ 21 ~~**22**~~ 23 ~~**24**~~ 25 ~~**26**~~ 27*
~~O~~ L D D ~~**O**~~ C Y ~~**A**~~ K ~~**'**~~ S B ~~**E**~~ A ~~**U**~~ T ~~**Y**~~ ~~**C**~~ O ~~**R**~~ N ~~**E**~~ R
O **O A' EUYCRE**
```
4. The next character not yet written is character number 3; write every 3rd character starting with 3, but excluding character 3 itself, and any character already written.
```
*~~1~~ 2 3 ~~4~~ 5 ~~6~~ 7 ~~8~~ ~~**9**~~ ~~10~~ 11 ~~12~~ 13 ~~14~~ ~~**15**~~ ~~16~~ 17 ~~18~~ 19 ~~20~~ ~~**21**~~ ~~22~~ 23 ~~24~~ 25 ~~26~~ ~~**27**~~*
~~O~~ L D D ~~O~~ C ~~**Y**~~ ~~A~~ K ~~'~~ S ~~**B**~~ ~~E~~ A ~~U~~ T ~~Y~~ ~~C~~ O ~~R~~ N ~~E~~ ~~**R**~~
O O A' EUYCRE**YB R**
```
5. Repeat step 4 using the next character, character 5.
4. The next character not yet written is character number 5; write every 5th character starting with 5, but excluding character 5 itself, and any character already written. (This amounts to just character 25).
```
*~~1~~ 2 3 ~~4~~ 5 ~~6~~ 7 ~~8~~ ~~9~~ ~~10~~ 11 ~~12~~ 13 ~~14~~ ~~15~~ ~~16~~ 17 ~~18~~ 19 ~~20~~ ~~21~~ ~~22~~ 23 ~~24~~ ~~**25**~~ ~~26~~ ~~27~~*
~~O~~ L D D ~~O~~ C ~~Y~~ ~~A~~ K ~~'~~ S ~~B~~ ~~E~~ A ~~U~~ T ~~Y~~ ~~C~~ O ~~R~~ ~~**N**~~ ~~E~~ ~~R~~
O O A' EUYCREYB R**N**
```
5. The next character is 7; but 14, 21 have already been written, so no more characters would be output if we repeat step 4. Thus, we're done with 5.
6. Write the remaining characters out in order.
```
*~~1~~ **2 3** ~~4~~ **5** ~~6~~ **7** ~~8~~ ~~9~~ ~~10~~ **11** ~~12~~ **13** ~~14~~ ~~15~~ ~~16~~ **17** ~~18~~ **19** ~~20~~ ~~21~~ ~~22~~ **23** ~~24~~ ~~25~~ ~~26~~ ~~27~~*
~~O~~ **L D** **D** ~~O~~ **C** ~~Y~~ ~~A~~ **K** ~~'~~ **S** ~~B~~ ~~E~~ **A** ~~U~~ **T** ~~Y~~ ~~C~~ **O** ~~R~~ ~~N~~ ~~E~~ ~~R~~
O O A' EUYCREYB RN**LDDCKSATO**
```
# Rules
Input and output may be via standard input/standard output, strings, or arrays of characters.
If reading in as standard input you may at your convenience assume there's a trailing newline, or that the entire input contains the line. Newline characters do not participate in the shuffle.
Likewise, at your convenience, your output may either have a trailing newline or not.
Standard loopholes are disallowed.
This is a code golf competition. Smallest code in bytes wins.
# Test Cases
```
123456789ABCDEF -> 1468ACE9F2357BD
OLD DOC YAK'S BEAUTY CORNER -> O O A' EUYCREYB RNLDDCKSATO
Blue boxes use a 2600hz tone to convince telephone switches that use in-band signalling that the caller is actually a telephone operator.
->
Bebxsuea20h oet ovnetlpoesice htuei-adsgaln httecle satal eehn prtre 0ncce ha nng aiuapootnt ihyon atallu o s 6z oi ehwstsnbilt lr clee.
```
[Answer]
# Mathematica, 61 bytes
```
#[[SortBy[Range@Length@#,FactorInteger[#][[1,1]]PrimeQ@#&]]]&
```
Unnamed function taking a list of characters as input and returning a list of characters.
`FactorInteger[#][[1,1]]` yields the smallest prime factor of `#` (and returns `1` if `#` equals `1`). Therefore `FactorInteger[#][[1,1]]PrimeQ@#` yields a strange expression: [`#`'s smallest prime factor] `False` if `#` is not prime, and `# True` if `#` is prime (these are unevaluated products of a number and a boolean).
`Range@Length@#` yields a list of the numbers up to the length of the input. Then `SortBy` sorts those numbers by the funny function described above. Mathematica is really type-sensitive in many ways, but cheerfully mixes them in other ways: expressions of the form [number] `False` are alphabetically sorted before expressions of the form [number] `True`, while ties are broken by sorting the numbers numerically. That produces exactly the permutation we want here, and `#[[...]]` permutes the characters of the input accordingly.
[Answer]
# [Jelly](https://github.com/DennisMitchell/jelly), 10 [bytes](https://github.com/DennisMitchell/jelly/wiki/Code-page)
```
JÆfṂ$ÞÆPÞị
```
**[TryItOnline](https://tio.run/nexus/jelly#@@91uC3t4c4mlcPzDrcFHJ73cHf3////DY2MTUzNzC0sHZ2cXVzdAA)**
### How?
```
JÆfṂ$ÞÆPÞị - Main link: theString
J - range(length), the 1-based indexes of theString
Þ - sort these by
$ - last two links as a monad
Æf - prime factorization array (e.g. 20 -> [2,2,5])
Ṃ - minimum
Þ - sort these by
ÆP - isPrime, i.e. move all the primes to the right
ị - index into theString
```
[Answer]
## C, 164 bytes
This takes input as the first command parameter and prints back to stdout. As we process each character, we clear it, allowing the final pass.
```
#define p putchar
main(c,s,i,j,t)char**s,*t;{c=strlen(t=s[1]);p(*t);for(;j++<c;)if(t[j])for(i=2*j+1;i<=c;i+=j+1)!t[i]?:p(t[i]),t[i]=0;for(j=0;j++<c;)!*++t?:p(*t);}
```
] |
[Question]
[
Keeping with a festive theme, print a carol singing angel with the shortest possible code. The angel is raising money for the homeless, so must be able to sing all three of the below songs available at request. To illustrate she can sing them, the title of the song must be placed within the speech bubble. This song title will be input by the user. Examples include:
* Mother Mary
* Jingle Bells
* Silent Night
**Input:**
Title: 1 of the 3 songs.
**Output:**
```
____________
(\ ___ /) / \
( \ (‘o‘) / ) / \
( ) <
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
```
Please paste the result of your singing angel along with the song: "Silent Night".
**Speech Bubble Rules:**
The speech bubble must always have a frame of 12 underscore lines long.
The title of the song must always start on the second line.
The title of the song must always start 3 underscore spaces inside the bubble.
```
123456789...
(\ ___ /) / \
( \ (‘o‘) / ) / Song \
( ) < Title
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
```
Examples below:
```
____________
(\ ___ /) / \
( \ (‘o‘) / ) / Mother \
( ) < Mary
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
____________
(\ ___ /) / \
( \ (‘o‘) / ) / Jingle \
( ) < Bells
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
____________
(\ ___ /) / \
( \ (‘o‘) / ) / Silent \
( ) < Night
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
```
[Answer]
# JS (ES6), 328 330 bytes
```
a=(b,c)=>b.repeat(c);f=prompt().split(" ");if(f[1].length<5)f[1]+=" ";console.log(a(" ",18)+a("_",12)+`
(\\ ___ /) /`+a(" ",12)+`\\
( \\ (‘o‘) / ) / `+f[0]+` \\
(`+a(" ",11)+`) < `+f[1]+a(" ",21)+`
( ‘> <’ ) \\`+a(" ",14)+`/
/ \\ \\`+a("_",12)+`/
/ \\
‘ – “ - ‘`)
```
* 1 helper function (a gets charcode (one char shorter) and repeats c times)
* 1 variable for getting input via `prompt()` and doing a split to array
* arguably abuses the special cases there but still does the job
* I assumed the extra 21 spaces in the middle column were needed
```
a=(b,c)=>b.repeat(c);f=prompt().split(" ");if(f[1].length<5)f[1]+=" ";console.log(a(" ",18)+a("_",12)+`
(\\ ___ /) /`+a(" ",12)+`\\
( \\ (‘o‘) / ) / `+f[0]+` \\
(`+a(" ",11)+`) < `+f[1]+a(" ",21)+`
( ‘> <’ ) \\`+a(" ",14)+`/
/ \\ \\`+a("_",12)+`/
/ \\
‘ – “ - ‘`)
```
[Answer]
## Python 3.5, 207 chars, 226 bytes
```
def f(s):a,b=s.split();u='_'*12;[print(' '*int(x)if x.isdigit()else x,end='')for x in"99"+u+"\n(\\3___3/)4/66\\\n( \\ (‘o‘) / )3/4"+a+"4\\\n(92)2<5"+b+"\n (2‘> <’2)4\\95/\n4/4\\7\\"+u+"/\n3/6\\\n2‘ – “ - ‘"]
```
Output:
```
____________
(\ ___ /) / \
( \ (‘o‘) / ) / Jingle \
( ) < Bells
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
```
Slightly ungolfed:
```
def angel(s):
a, b = s.split()
u = '_' * 12;
out = "99" + u + "\n"
out += "(\\3___3/)4/66\\\n"
out += "( \\ (‘o‘) / )3/4" + a + "4\\\n"
out += "(92)2<5" + b + "\n"
out += " (2‘> <’2)4\\95/\n"
out += "4/4\\7\\" + u + "/\n"
out += "3/6\\\n"
out += "2‘ – “ - ‘"
[print(' '*int(x) if x.isdigit() else x, end='') for x in out]
```
It replaces numerical digits with the same number of spaces.
[Answer]
# [Python 3.6](https://www.python.org/downloads/release/python-360a1/) - ~~286~~ 241 ~~224~~ bytes
```
def x(L):X,Y=L.split();E,D=' '*11,'_'*12;print(f"""{' '*18}{D}
(\ ___ /) /{E} \\
( \ (‘o‘) / ) / {X+' '*(10-len(X))}\\
({E}) < {Y}
( ‘> <’ ) \{E} /
/ \ \{D}/
/ \
‘ – “ - ‘""")
```
```
Input:
x("Silent Night")
```
```
Output:
____________
(\ ___ /) / \
( \ (‘o‘) / ) / Silent \
( ) < Night
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
```
**Note** - The version is `3.6` where string literal formatting was [introduced](https://docs.python.org/3.6/whatsnew/3.6.html#whatsnew36-pep498). Hence, this won't work in earlier versions.
[Answer]
# PHP, 215 bytes
```
<?=($p=str_pad)($p($s=" ".$t=" ",18),30,_),$p("
(\ ___$t/)$s/",31),$p("\
( \ (‘o‘) / )$t/$t$argv[1]",37),"\
($s$s$t) <$s$argv[2]",$p("
( ‘> <’ )$s\\",36),$p("/
$s/$s\\$s$t\\",32,_),"/
$t/$t$t\
‘ – “ - ‘";
```
takes title from first two command line arguments.
For Windows: add 1 to all pad-lengths after the first line, or duplicate backslashes before line breaks and replace all line breaks with `\n`
[Answer]
### [Perl 6](http://perl6.org/), 234 bytes (218 characters)
```
{"{' 'x 18}{'_'x 12}
(\\ ___ /) /{' 'x 12}\\
( \\ (‘o‘) / ) / {.words[0].fmt('%-9s')} \\
({' 'x 11}) < {.words[1]}
( ‘> <’ ) \\{' 'x 14}/
/ \\ \\{'_'x 12}/
/ \\
‘ – “ - ‘"}
```
A lambda that inputs the song name as a string, and outputs the snow angle as a string.
* Assumes that trailing spaces are not required.
* Bytes count is for UTF8 encoding, because that's how Perl 6 expects source code.
[Answer]
# Python 2.6, 391 bytes
```
def angel(a):
X,Y=a.split()
print(" ____________")
print"(\ ___ /) / \\"
print"( \ (‘o‘) / ) / ", X, " \\"
print"( ) < ", Y, " "
print" ( ‘> <’ ) \ /"
print" / \ \____________/"
print(" / \ ")
print" ‘ –
```
**Test Case:**
```
angel("Silent Night")
____________
(\ ___ /) / \
( \ (‘o‘) / ) / Silent \
( ) < Night
( ‘> <’ ) \ /
/ \ \____________/
/ \
‘ – “ - ‘
```
] |
[Question]
[
A Diagonal [Sudoku](https://en.wikipedia.org/wiki/Sudoku) board is a special case of [Latin squares](https://en.wikipedia.org/wiki/Latin_square). It has the following properties:
* The board is a 9-by-9 matrix
* Each row contains the numbers `1-9`
* Each column contains the numbers `1-9`
* Each 3-by-3 sub-region contains the numbers `1-9`
* Both diagonals contains the numbers `1-9`
**Challenge:**
Create a program or function that outputs a complete board with all 81 numbers that complies with the rules above.
The number in at least one position must be random, meaning the result should vary accross executions of the code. The distribution is optional, but it must be possible to obtain at least 9 *structurally different* boards. A board obtained from another by *transliteration* is not considered *structurally* different. Transliteration refers to substituting each number *x* by some other number *y*, consistently in all positions of number *x*.
Hardcoding 9 boards is not accepted either.
**Rules:**
* Output format is optional, as long as it's easy to understand (list of list is OK)
* The random number can be taken as input instead of being created in the script, but only if your language doesn't have a RNG.
This is code golf so the shortest code in bytes win!
**Example boards:**
```
7 2 5 | 8 9 3 | 4 6 1
8 4 1 | 6 5 7 | 3 9 2
3 9 6 | 1 4 2 | 7 5 8
-------------------------------------
4 7 3 | 5 1 6 | 8 2 9
1 6 8 | 4 2 9 | 5 3 7
9 5 2 | 3 7 8 | 1 4 6
-------------------------------------
2 3 4 | 7 6 1 | 9 8 5
6 8 7 | 9 3 5 | 2 1 4
5 1 9 | 2 8 4 | 6 7 3
```
---
```
4 7 8 | 1 9 5 | 3 2 6
5 2 6 | 4 8 3 | 7 1 9
9 3 1 | 6 7 2 | 4 5 8
-------------------------------------
2 5 9 | 8 6 7 | 1 3 4
3 6 4 | 2 5 1 | 9 8 7
1 8 7 | 3 4 9 | 5 6 2
-------------------------------------
7 1 2 | 9 3 8 | 6 4 5
6 9 3 | 5 2 4 | 8 7 1
8 4 5 | 7 1 6 | 2 9 3
```
[Answer]
# [APL (Dyalog Unicode)](https://www.dyalog.com/), 56 bytes
```
(,⊖⍣(?2)↑a(3+⍳3)(10-⌽a←3?3)){⍺ ⍺⌷9 9⍴∊⌽⍵∘.⌽⍵⊖¨⊂3 3⍴⍳9}⍳3
```
[Try it online!](https://tio.run/##xVM9T8JAGN77K96NNlJj7xRoHAh@@xsMQwnigrGRmGIIizFYK2d0kLi44GJckZiYuPhT3j9S3zsqctQYTTBuved9vu565/l1u3rs1Q/2YhR3rQA7V3kogAuLsAQ5cIABx4tTFMOdYDkot1Hcm0VmYdQ3eZFbSoDiJavoWWfBxu4rrSclLrgonjCMTJoxG8WAAyk9qIy0xPVoUsGoR5r22wNGJ8QgTYHyc8DJOk99XGAGdfzMzSrFqE/nmpxM1cIyxzWsv@wxQz9LNkztyNP34xFB7r2spzcxvJ2nsWzRJMqoCf2h3r8m4uVNieDMVmljdX1zbXsl89vI8KwWm9NkPqeypthWi84b5Jl3n8c11RUYJl3ll95PDNy29IopKK4Ztm0bjaMqI8dZXhR/93CfVD95J0Yj8PwP7reP0MDzPoaPphqAjABZnU6FlmwSYODoDClwJgGu7DWA6QxZC1JRCTqVp9BUaILyL3xT8Qmqd3gH "APL (Dyalog Unicode) – Try It Online")
A full program that randomly gives a 9-by-9 matrix of digits.
By OP mentioning "it must be possible to obtain at least 9 structurally different boards", I believe it was to prevent using just trivial transformations like reflection and rotation. But [there are more possible transformations than that](http://www.sudocue.net/minx.php). I use two kinds of transformations:
* Permute R19C19, R28C28 and R37C37 (6 cases)
```
Example: Swap R19C19 and R28C28
a b c - - - A B C e d f - - - D F E
d e f - - - D E F b a c - - - A C B
g h j - - - G H J h g j - - - G J H
- - - - - - - - - - - - - - - - - -
- - - - - - - - - ==> - - - - - - - - -
- - - - - - - - - - - - - - - - - -
k l m - - - K L M l k m - - - K M L
n p q - - - N P Q s r t - - - R T S
r s t - - - R S T p n q - - - N Q P
```
* Reverse the order of boxes in both dimensions (2 cases: reverse both or keep intact)
```
a b c - - - A B C K L M - - - k l m
d e f - - - D E F N P Q - - - n p q
g h j - - - G H J R S T - - - r s t
- - - - - - - - - - - - - - - - - -
- - - - - - - - - ==> - - - - - - - - -
- - - - - - - - - - - - - - - - - -
k l m - - - K L M A B C - - - a b c
n p q - - - N P Q D E F - - - d e f
r s t - - - R S T G H J - - - g h j
```
resulting in 12 structurally different boards. Note that, in both cases, the thing that changes on the diagonals is the *order* of the digits. Also, the center box is always intact, so no two boards are equivalent under transliteration.
### Part 1: Construct a valid diagonal sudoku board
```
⍝ A 3x3 box of 1..9
⊂3 3⍴⍳9
┌─────┐
│1 2 3│
│4 5 6│
│7 8 9│
└─────┘
⍝ The box rotated upwards 1, 2, 3 times
(⍳3)⊖¨⊂3 3⍴⍳9
┌─────┬─────┬─────┐
│4 5 6│7 8 9│1 2 3│
│7 8 9│1 2 3│4 5 6│
│1 2 3│4 5 6│7 8 9│
└─────┴─────┴─────┘
⍝ The boxes rotated left 1, 2, 3 times
(⍳3)∘.⌽(⍳3)⊖¨⊂3 3⍴⍳9
┌─────┬─────┬─────┐
│5 6 4│8 9 7│2 3 1│
│8 9 7│2 3 1│5 6 4│
│2 3 1│5 6 4│8 9 7│
├─────┼─────┼─────┤
│6 4 5│9 7 8│3 1 2│
│9 7 8│3 1 2│6 4 5│
│3 1 2│6 4 5│9 7 8│
├─────┼─────┼─────┤
│4 5 6│7 8 9│1 2 3│
│7 8 9│1 2 3│4 5 6│
│1 2 3│4 5 6│7 8 9│
└─────┴─────┴─────┘
⍝ Horizontally reverse the boxes, keeping the contents inside the boxes
⌽(⍳3)∘.⌽(⍳3)⊖¨⊂3 3⍴⍳9
┌─────┬─────┬─────┐
│2 3 1│8 9 7│5 6 4│
│5 6 4│2 3 1│8 9 7│
│8 9 7│5 6 4│2 3 1│
├─────┼─────┼─────┤
│3 1 2│9 7 8│6 4 5│
│6 4 5│3 1 2│9 7 8│
│9 7 8│6 4 5│3 1 2│
├─────┼─────┼─────┤
│1 2 3│7 8 9│4 5 6│
│4 5 6│1 2 3│7 8 9│
│7 8 9│4 5 6│1 2 3│
└─────┴─────┴─────┘
⍝ Enlist the digits and reshape into 9x9 matrix
⍝ (Each box goes to each row)
9 9⍴∊⌽(⍳3)∘.⌽(⍳3)⊖¨⊂3 3⍴⍳9
2 3 1 5 6 4 8 9 7
8 9 7 2 3 1 5 6 4
5 6 4 8 9 7 2 3 1
3 1 2 6 4 5 9 7 8
9 7 8 3 1 2 6 4 5
6 4 5 9 7 8 3 1 2
1 2 3 4 5 6 7 8 9
7 8 9 1 2 3 4 5 6
4 5 6 7 8 9 1 2 3
```
### Part 2: Generate permutation vector
```
,⊖⍣(?2)↑a(3+⍳3)(10-⌽a←3?3)
a←3?3 ⍝ Generate a permutation of 1 2 3
⍝ ex) 2 3 1
a(3+⍳3)(10-⌽a ) ⍝ Permutation vector in chunks of 3
⍝ ex) (2 3 1)(4 5 6)(9 7 8)
↑ ⍝ Promote to matrix
⊖⍣(?2) ⍝ Reverse vertically 1 or 2 times
⍝ ex) [9 7 8][4 5 6][2 3 1]
, ⍝ Flatten ex) 9 7 8 4 5 6 2 3 1
```
### Part 3: Permute the rows and columns
```
⍝ Permute both rows and columns of the matrix through indexing function
perm perm⌷mat
⍝ Using the example permutation above, the sudoku board is:
3 1 2 7 8 9 5 6 4
9 7 8 4 5 6 2 3 1
6 4 5 1 2 3 8 9 7
8 9 7 6 4 5 1 2 3
5 6 4 3 1 2 7 8 9
2 3 1 9 7 8 4 5 6
4 5 6 2 3 1 9 7 8
1 2 3 8 9 7 6 4 5
7 8 9 5 6 4 3 1 2
```
[Answer]
# SWI-Prolog, 438 bytes
```
:-use_module(library(clpfd)).
a(R):-l(9,R),m(l(9),R),append(R,V),V ins 1..9,transpose(R,C),d(0,R,D),maplist(reverse,R,S),d(0,S,E),r(R),m(m(all_distinct),[R,C,[D,E]]),get_time(I),J is ceil(I),m(labeling([random_value(J)]),R).
l(L,M):-length(M,L).
r([A,B,C|T]):-b(A,B,C),r(T);!.
b([A,B,C|X],[D,E,F|Y],[G,H,I|Z]):-all_distinct([A,B,C,D,E,F,G,H,I]),b(X,Y,Z);!.
d(X,[H|R],[A|Z]):-nth0(X,H,A),Y is X+1,(R=[],Z=R;d(Y,R,Z)).
m(A,B):-maplist(A,B).
```
Returns the answer as a list of lists, e.g. `a(Z)` unifies `Z` with `[[2, 3, 6, 4, 9, 8, 7, 1, 5], [4, 5, 9, 2, 1, 7, 8, 3, 6], [7, 8, 1, 5, 3, 6, 9, 2, 4], [3, 2, 8, 7, 6, 4, 5, 9, 1], [5, 1, 4, 9, 8, 2, 3, 6, 7], [9, 6, 7, 1, 5, 3, 4, 8, 2], [1, 9, 2, 3, 4, 5, 6, 7, 8], [8, 7, 5, 6, 2, 9, 1, 4, 3], [6, 4, 3, 8, 7, 1, 2, 5, 9]]`.
### Explanation
```
:-use_module(library(clpfd)). % Constraint Programming Library
a(R):- % Main Predicate
l(9,R),m(l(9),R),append(R,V), % R is a list of 9 lists, each of length 9
V ins 1..9, % Values in R are between 1 and 9
transpose(R,C), % C is the transpose of R
d(0,R,D), % D is the diagonal of R
maplist(reverse,R,S),d(0,S,E), % E is the anti-diagonal of R
r(R), % All 3*3 blocks must contain numbers from 1 to 9
m(m(all_distinct),[R,C,[D,E]]), % Each row of R, each row of C, D and E must contain
% only distinct numbers
get_time(I),J is ceil(I), % Set J to a random number based on the current time
m(labeling([random_value(J)]),R). % Randomly find a solution for R
l(L,M):- % L is the length of M
length(M,L).
r([A,B,C|T]):- % For each group of 3 rows, the 3*3 blocks must
b(A,B,C),r(T);!. % contain distinct numbers
b([A,B,C|X],[D,E,F|Y],[G,H,I|Z]):- % Checks that the 3 3*3 blocks of 3 rows have
% distinct numbers inside them
all_distinct([A,B,C,D,E,F,G,H,I]),
b(X,Y,Z);!.
d(X,[H|R],[A|Z]):- % [A|Z] is the diagonal of [H|R]
nth0(X,H,A),
Y is X+1,
(R=[],Z=R;d(Y,R,Z)).
m(A,B):-
maplist(A,B).
```
] |
[Question]
[
Some trading cards have real value and can be sold for money. Bending the cards is frowned upon because it takes away their value and makes them look less new. Say you have a deck of trading cards (Pokemon, Magic, etc.) and you want to shuffle them. Instead of doing the bridge that bends all of the cards, another simple way to shuffle cards is to put them into piles. Here's what I mean.
# Background
With a 60 card deck in need of shuffling, you could separate the 60 cards into three piles of 20 cards. There are multiple ways to do this, the most plain being to put a card into pile A, then one into pile B, then one into pile C. Another way is to put a card into pile C, then B, then A. There are also ways to spread the cards across the piles unevenly. Here's one: put a card in pile A, put another card in A, then put a card in pile B, then put a card in pile C.
# Challenge
Create a full program that will output `even` if a certain way to shuffle into piles spreads the cards in the piles evenly, and outputs `uneven` and the number of cards in each pile otherwise.
# Input
Input will be taken through STDIN or the closest alternative (no functions).
```
[sequence] [deck size]
```
* `sequence` is a string of characters. It tells the pattern the cards are laid down into the piles. Each different character corresponds to a single pile. This string will always be under the deck size and will contain only capital letters A-Z.
* `deck size` is an integer that specifies how many cards are in the deck. If deck size is 60, the number of cards in the deck is 60.
# Output
```
even
```
If the number of cards in each pile at the end of the shuffle are the same, your program should output this.
```
uneven [pile1] [pile2] [...]
```
If the number cards in each pile at the end of the shuffles are the not the same, your program should output `uneven` and the number of cards in each pile like this: `uneven 20 30` if pile A contains 20 canrds and pile B contains 30. The order of the pile numbers does not matter.
# Other information
* This is a code golf challenge, so the shortest code in bytes on September 25 wins. If there is a tie in byte counts, the code that was submitted first wins.
* Your program must be a program, not a function.
* If possible, please include a link to an online interpreter or a link to a place where I can download an interpreter for your language in your answer.
* Anything I do not specify within this challenge is fair game, meaning if I don't say it, it's up to you. If anything is vague, tell me and I will edit the answer accordingly. (Hopefully this goes more smoothly than my last challenge.)
# Examples
```
Input | Output | Alternate outputs (if uneven)
|
ABC 30 | even
ABC 31 | uneven 11 10 10 | uneven 10 11 10 | uneven 10 10 11
BCA 60 | even
BBA 24 | uneven 8 16 | uneven 16 8
ABACBC 120 | even
BBABA 50 | uneven 20 30 | uneven 30 20
AABBB 12 | even
```
[Answer]
# Pyth, 33 31 bytes
```
jd+>"uneven"yK!tl{J/L@LzQ{z*J!K
```
Example input:
```
ABACBC
120
```
[Answer]
# Python 3.x, 106 ~~128~~ ~~138~~ bytes
```
s,n=input().split()
n=int(n)
t=(s*n)[:n]
*z,=map(t.count,set(t))
b=z[:-1]!=z[1:];print("un"*b+"even",*z*b)
```
This duplicates the input sequence (more times than needed, which is good enough) and then takes only the first `n` characters. These are counted and either `uneven` or `even` is chosen, and if the former, the counts also are printed with `print(*z)`, which automatically unpacks `z` for me.
Saved 32 bytes thanks to xnor and Sp3000!
Also, **Python 3.5** has a new feature that allows this 102 byte solution:
```
s,n=input().split()
n=int(n)
t=(s*n)[:n]
*z,=map(t.count,{*t})
b=len({*z})>1;print("un"*b+"even",*z*b)
```
`len({*z})>1` unpacks the list `z`, makes a set from it, then checks to see if it has more than one element. It is `{*z}` specifically that's new.
[Answer]
# CJam, 35 bytes
```
rri_@*<$e`0f=_)-"uneven":Ua@+S*U2>?
```
Try it online in the [CJam interpreter](http://cjam.aditsu.net/#code=rri_%40*%3C%24e%600f%3D_)-%22uneven%22%3AUa%40%2BS*U2%3E%3F&input=AABBB%2012).
### How it works
```
rri e# Read a string (s) and an integer (n) from STDIN.
_@ e# Push a copy of n and rotate s on top of it.
* e# Repeat s n times.
< e# Keep only the first n characters.
$e` e# Sort and perform run-length encoding.
0f= e# Keep only the multiplicities.
_)- e# Push a copy, pop the last element and remove its remaining occurrences.
e# The result with be an empty array (falsy) iff all elements are equal.
"uneven" e# Push that string.
:Ua e# Save it in U and wrap it in an array.
@+ e# Concatenate ["uneven"] with the array of multiplicities.
S* e# Join, separating by spaces.
U2> e# Push "even".
? e# Select the result depending on whether _)- pushed an empty array.
```
] |
[Question]
[
A subsequence is a sequence that can be derived from another sequence by deleting some elements without changing the order of the remaining elements. A strictly increasing subsequence is a subsequence in which every element is bigger than the preceding one.
The heaviest increasing subsequence of a sequence is the strictly increasing subsequence that has the biggest element sum.
Implement a program or function in your language of choice that finds the element sum of the heaviest increasing subsequence of a given list of non-negative integers.
Examples:
```
[] -> 0 ([])
[3] -> 3 ([3])
[3, 2, 1] -> 3 ([3])
[3, 2, 5, 6] -> 14 ([3, 5, 6])
[9, 3, 2, 1, 4] -> 9 ([9])
[3, 4, 1, 4, 1] -> 7 ([3, 4])
[9, 1, 2, 3, 4] -> 10 ([1, 2, 3, 4])
[1, 2, 4, 3, 4] -> 10 ([1, 2, 3, 4])
[9, 1, 2, 3, 4, 5, 10] -> 25 ([1, 2, 3, 4, 5, 10])
[3, 2, 1, 2, 3] -> 6 ([1, 2, 3])
```
Note that you only have to give the element sum of the heaviest increasing subsequence, not the subsequence itself.
---
The asymptotically fastest code wins, with smaller code size in bytes as a tiebreaker.
[Answer]
# Python, O(n log n)
I didn't golf this, because I'm competing primarily on the fastest code side of things. My solution is the `heaviest_subseq` function, and a test harness is also included at the bottom.
```
import bisect
import blist
def heaviest_subseq(in_list):
best_subseq = blist.blist([(0, 0)])
for new_elem in in_list:
insert_loc = bisect.bisect_left(best_subseq, (new_elem, 0))
best_pred_subseq_val = best_subseq[insert_loc - 1][1]
new_subseq_val = new_elem + best_pred_subseq_val
list_len = len(best_subseq)
num_deleted = 0
while (num_deleted + insert_loc < list_len
and best_subseq[insert_loc][1] <= new_subseq_val):
del best_subseq[insert_loc]
num_deleted += 1
best_subseq.insert(insert_loc, (new_elem, new_subseq_val))
return max(val for key, val in best_subseq)
tests = [eval(line) for line in """[]
[3]
[3, 2, 1]
[3, 2, 5, 6]
[9, 3, 2, 1, 4]
[3, 4, 1, 4, 1]
[9, 1, 2, 3, 4]
[1, 2, 4, 3, 4]
[9, 1, 2, 3, 4, 5, 10]
[3, 2, 1, 2, 3]""".split('\n')]
for test in tests:
print(test, heaviest_subseq(test))
```
Runtime analysis:
Each element has its insertion position looked up once, is inserted once, and is possibly deleted once, in addition to a constant number of value lookups per loop. Since I am using the built-in bisect package and the [blist package](https://pypi.python.org/pypi/blist/), each of those operations are `O(log n)`. Thus, the overall runtime is `O(n log n)`.
The program works by maintaining a sorted list of best possible increasing subsequences, represented as a tuple of ending value and sequence sum. An increasing subsequence is in that list if there are no other subsequences found so far whose ending value is smaller and sum is at least as large. These are maintained in increasing order of ending value, and necessarily also in increasing order of sum. This property is maintained by checking the successor of each newly found subsequence, and deleting it if its sum is not large enough, and repeating until a subsequence with a larger sum is reached, or the end of the list is reached.
[Answer]
# javascript (ES6) `O(n log n)` 253 characters
```
function f(l){l=l.map((x,i)=>[x,i+1]).sort((a,b)=>a[0]-b[0]||1)
a=[0]
m=(x,y)=>x>a[y]?x:a[y]
for(t in l)a.push(0)
t|=0
for(j in l){for(i=(r=l[j])[1],x=0;i;i&=i-1)x=m(x,i)
x+=r[0]
for(i=r[1];i<t+2;i+=i&-i)a[i]=m(x,i)}for(i=t+1;i;i&=i-1)x=m(x,i)
return x}
```
this uses fenwick trees (a maximum fenwick tree) to find maxima of certain subsequences.
basically, in the underlying array of the datatype, each place is matched with an element from the input list, in the same order. the fenwick tree is initialized with 0 everywhere.
from the smallest to the biggest, we take an element from the input list, and look for the maximum of the elements to the left. they are the elements that may be before this one in the subsequence, because they are to the left in the input sequence, and are smaller, because they entered the tree earlier.
so the maximum we found is the heaviest sequence that can get to this element, and so we add to this the weight of this element, and set it in the tree.
then, we simply return the maximum of the whole tree is the result.
tested on firefox
[Answer]
# Python, O(n log n)
I used an index transform and a nifty data structure (binary indexed tree) to trivialize the problem.
```
def setmax(a, i, v):
while i < len(a):
a[i] = max(a[i], v)
i |= i + 1
def getmax(a, i):
r = 0
while i > 0:
r = max(r, a[i-1])
i &= i - 1
return r
def his(l):
maxbit = [0] * len(l)
rank = [0] * len(l)
for i, j in enumerate(sorted(range(len(l)), key=lambda i: l[i])):
rank[j] = i
for i, x in enumerate(l):
r = rank[i]
s = getmax(maxbit, r)
setmax(maxbit, r, x + s)
return getmax(maxbit, len(l))
```
The binary indexed tree can do two operations in log(n): increase a value at index i and get the maximum value in [0, i). We initialize every value in the tree to 0. We index the tree using the rank of elements, not their index. This means that if we index the tree at index i, all elements [0, i) are the elements smaller than the one with rank i. This means that we get the maximum from [0, i), add the current value to it, and update it at i. The only issue is that this will include values which are less than the current value, but come later in the sequence. But since we move through the sequence from left-to-right and we initialized all values in the tree to 0, those will have a value of 0 and thus not affect the maximum.
[Answer]
# Python 2 - `O(n^2)` - 114 bytes
```
def h(l):
w=0;e=[]
for i in l:
s=0
for j,b in e:
if i>j:s=max(s,b)
e.append((i,s+i));w=max(w,s+i)
return w
```
[Answer]
# C++ - `O(n log n)` - 261 bytes
Should be fixed now:
```
#include <set>
#include <vector>
int h(std::vector<int>l){int W=0,y;std::set<std::pair<int,int>>S{{-1,0}};for(w:l){auto a=S.lower_bound({w,-1}),b=a;y=prev(a)->second+w;for(;b!=S.end()&&b->second<=y;b++){}a!=b?S.erase(a,b):a;W=y>W?y:W;S.insert({w,y});}return W;}
```
[Answer]
## Matlab, *O*(*n* 2*n*), 90 bytes
```
function m=f(x)
m=0;for k=dec2bin(1:2^numel(x)-1)'==49
m=max(m,all(diff(x(k))>0)*x*k);end
```
Examples:
```
>> f([])
ans =
0
>> f([3])
ans =
3
>> f([3, 2, 5, 6])
ans =
14
```
[Answer]
# Python, O(2n), 91 bytes
This is more for fun than to be competitive. An arcane recursive solution:
```
h=lambda l,m=0:l and(h(l[1:],m)if l[0]<=m else max(h(l[1:],m),l[0]+h(l[1:],l[0])))or 0
```
[Answer]
# [Rust](https://www.rust-lang.org/) ,\$\mathcal{O}(n \log n)\$
Port of [@isaacg's answer](https://codegolf.stackexchange.com/a/54191/110802)
[run it on Rust Playground!](https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=71094fd507cba862685cddef6361babd)
```
use std::cmp::Ordering;
fn heaviest_subseq(in_list: &[i32]) -> i32 {
let mut best_subseq = vec![(0, 0)];
for new_elem in in_list {
let insert_loc = match best_subseq
.binary_search_by(|&(key, _)| if key < *new_elem { Ordering::Less } else { Ordering::Greater })
{
Ok(index) => index,
Err(index) => index,
};
let best_pred_subseq_val = best_subseq[insert_loc - 1].1;
let new_subseq_val = new_elem + best_pred_subseq_val;
let mut num_deleted = 0;
while num_deleted + insert_loc < best_subseq.len() && best_subseq[insert_loc].1 <= new_subseq_val {
best_subseq.remove(insert_loc);
num_deleted += 1;
}
best_subseq.insert(insert_loc, (*new_elem, new_subseq_val));
}
best_subseq.into_iter().map(|(_, val)| val).max().unwrap()
}
fn main() {
let tests = [
&[][..],
&[3][..],
&[3, 2, 1][..],
&[3, 2, 5, 6][..],
&[9, 3, 2, 1, 4][..],
&[3, 4, 1, 4, 1][..],
&[9, 1, 2, 3, 4][..],
&[1, 2, 4, 3, 4][..],
&[9, 1, 2, 3, 4, 5, 10][..],
&[3, 2, 1, 2, 3][..],
];
for test in &tests {
println!("{:?} {:?}", test, heaviest_subseq(test));
}
}
```
] |
[Question]
[
An *acyclical grid* is a mapping of an acyclical graph (that is, a tree) where each node has no more than four edges onto a toroidal rectangular grid such that each cell of the grid is occupied by a node. Here is an example of an acyclical grid:
```
┴─┐╵╵│└┘└╴╶┴┬
╴╷╵┌┐│╷┌┬┐╶┐├
╷│╷╵│├┘│╵└╴│╵
┘└┴┐│└┬┤┌─┬┴─
╷╶─┤│╷╵├┤╶┘╶┐
│╶┐└┤└┬┤╵╷╶─┤
┤╷└─┴┬┤└┐└┬┬┴
│├──┐│├╴├─┤├╴
┘└┐┌┴┤└┐├╴╵╵┌
┌┬┘╵┌┴┐╵└─┐╶┘
┤└─┐│╷│┌┬╴╵╷╶
```
Some browser fonts have trouble rendering this in a properly monospaced way. If the grid looks off, please copy-paste it into a text editor of your choice.
Notice that this grid is toroidal: the left and right, as well as the top and bottom are connected preserving the axis you are moving along. For example, if you move left in the third row you eventually end up on the right of the third row and vice versa.
This grid is composed of box-drawing characters which fall into four classes:
1. The characters `╵` , `╶`, `╷`, and `╴` denote leaves (nodes with one edge)
2. The characters `│` and `─` denote nodes with two edges in a collinear arrangement
3. The characters `┴`, `├`, `┬`, and `┤` denote nodes with three edges
4. The characters `└`, `┌`, `┐`, and `┘` denote nodes with two edges in a perpendicular arrangement
The *characteristic matrix* of an acyclical grid is a matrix comprising for each cell in the acyclical grid the class of the node positioned there. For instance, the characteristic matrix of the aforementioned grid is this:
```
3241124441133
1114424232123
1211234214121
4434243342332
1123211331414
2144343311123
3142333444333
2322423131331
4444334431114
4341434142414
3424212431111
```
A *net puzzle* is an *n* × *m* matrix of integers in the range from 1 to 4 such that it is the characteristic matrix of exactly one acyclical grid.
If you want to gain an intuitive understanding about net puzzles, you can play [net](http://www.chiark.greenend.org.uk/~sgtatham/puzzles/js/net.html) from Simon Tatham's puzzle collection. Make sure that “wrapping” and “ensure unique solution” are both checked and that “barrier probability” is set to 0.
## The challenge
Write a function or program that given two integers *n* and *m* in the range from 3 to 1023 generates a net puzzle of dimension *n* × *m.* You may optionally receive a third integer *p* in the range from 1 to 1023.
If you implement the variant with two arguments (the non-deterministic variant), then your submission shall with great probability return a different puzzle each time it is called. If you implement the variant with three arguments (the deterministic variant), then the set of puzzles generated for all *p* for a given pair (*n, m*) shall contain at least four different puzzles for each pair (*n, m*).
There are no further restrictions with respect to input and output.
## Scoring
This challenge is code golf. The solution with the least number of octets wins.
[Answer]
# [K (ngn/k)](https://codeberg.org/ngn/k), 38 bytes
```
{((x,y)#&(0;y;y*x-2;y-2;2))z|:/x!z+!x}
```
[Try it online!](https://ngn.bitbucket.io/k#eJxLs6rW0KjQqdRUVtMwsK60rtSq0DWyrgRiI03Nqhor/QrFKm3FilourrRoU2sza8NYKMMIxjCGMUxgDNNYkGpja2OIahDDCMYwhjFMYAzTWADunyGU)
I can't believe that it went unanswered for, like, six and a half years?
Implements the three-argument version. It is a function that takes `n m p` as three separate parameters and builds a valid net puzzle deterministically.
Basically what it does is to build one asymmetric and easily constructible net puzzle of size `n m`, and then permute its rows based on `p`.
### What it builds & Why it is valid for this challenge
The result for `f[5;6;0]` is this:
```
1 1 1 1 1 1
2 2 2 2 2 2
2 2 2 2 2 2
2 2 2 2 2 2
3 3 3 3 4 4
```
In box drawing chars:
```
1 1 1 1 1 1 : ╷╷╷╷╷╷
2 2 2 2 2 2 : ││││││
2 2 2 2 2 2 : ││││││
2 2 2 2 2 2 : ││││││
3 3 3 3 4 4 : ┴┴┴┴┘└
```
And it has a unique solution, as well as its reflections and rotations (as in APL sense; cyclically moving rows and columns).
Why unique solution? First, the solution is an unrooted tree (in graph-theoretical sense); if a configuration has a cycle, then it is not a solution because it necessarily has two or more disjoint parts. Then, the 2's must be all aligned either horizontally or vertically, but if they're horizontal then they form one or more cycles of their own. So they must be vertical. Then the orientation of 1's are fixed (downwards), and then the 3's (disconnected to the lower side). Finally the orientations for 4's are fixed in order to connect everything.
The code is easy:
```
&(0;y;y*x-2;y-2;2) Create an array of:
m copies of 1's, m*(n-2) copies of 2's,
(m-2) copies of 3's, and 2 copies of 4's
(x,y)# Reshape into n-row, m-col matrix
```
For "at least four distinct puzzles" part, I had to use two different permuting methods because of the 3x3 grid (single reflection gives at most 2; stepwise rotation gives at most either `n` or `m`). I went for pure row permutation because applying two separate transforms was too long.
For code, `!x` creates the identity permutation vector `0 1 2 ... (n-1)`, `x!z+` rotates it by `p` steps, and `z|:/` reverses it `p` times. This creates `lcm(2, n)` unique grids, which is always at least 4.
I know, it's likely against the original intent of the challenge, but [this is not the first time I exploited "generate at least x distinct grids"](https://codegolf.stackexchange.com/a/197156/78410) :P
] |
[Question]
[
In Conway's Game of Life, a cell is in a state of either on or off, depending on the on-and-off state of the eight cells surrounding it.
We can simulate this using a logic gate network with some sort of clock signal that updates every cell all at once. Your task in this problem is to build the logic gate network for a single cell that will update the new state of the cell given the state of its neighbours.
This cell is a logic gate network that takes eight neighbour-cell inputs `N1, N2, ..., N8`, the current on/off state of its own cell `L`, and 18 "rule" inputs `B0, B1, B2, ..., B8` and `S0, S1, S2, ..., S8`, and evaluates a new `L` value (to an output `L'`) as follows:
* if `L` is currently `0` and `Bn` is on where `n` is the number of `N1, N2, ..., N8` that are currently set at `1`, then `L'` is set to `1`. Otherwise, it stays `0`.
* if `L` is currently `1` and `Sn` is off where `n` is the number of `N1, N2, ..., N8` that are currently set at `1`, then `L'` is set to `0`. Otherwise, it stays `1`.
In the example of Conway's Game of Life, `B3`, `S3`, and `S2` are on, while the rest of them are all off.
Unlike my previous logic gate tasks, for this task you may use any two-input logic gates you want, not just NAND gates. This includes exotic gates such as `if A then B`, `A or not B`, or simply `A`, a gate that takes two inputs and always returns the first one (although I'm not sure why you'd want to use that one, you are allowed to). You are allowed unlimited constants, splits, and ground wires.
The network to use the fewest logic gates to achieve this wins.
[Answer]
## ~~114~~ 107 gates
A diagram of the setup, with example inputs ([link to full-sized image](https://i.stack.imgur.com/QPe6f.png)):

*Created in [Logisim](http://www.cburch.com/logisim/)*
This uses a simple approach; first it counts the number of live neighbouring cells, and then checks if that number fulfills a birth/survival condition.
[Answer]
## 89 gates using sorting network
I think the basic structure pretty much has to be a sum unit and a demultiplexer which uses the output of the sum unit and `L` to select the appropriate `B_i` or `S_i`. So there's one decision which is definitely interesting, and one dependent decision which may be interesting.
The definitely interesting decision is the output format of the sum. The dependent decision is whether to structure the 18-value demux as two 9-value demuxes (switched by the sum) feeding into a 2-value demux (switched by `L`) or as 9 2-value demuxes feeding into a 9-value demux.
I'm choosing to have the sum output in unary, so the 9-value demux is just 8 2-input demuxes in a chain, and the dependent decision is uninteresting.
### Counting in unary via sorting network
`AND` and `OR` gates can be considered instead to be `MIN` and `MAX` gates, giving a two-gate way of sorting two bits:

These pairwise sorting operators can be combined to sort any number of bits (and, if generalised to `MIN` and `MAX` operations over any total order, to sort any number of elements of that order) in a [sorting network](http://en.wikipedia.org/wiki/Sorting_network). The standard notation shows just which lines are sorted at each step, and drawing the gates would be quite messy. The best possible sorting network for 8 inputs requires 19 pairwise sorters, which can be arranged as so:

So for a total of 38 gates, the inputs `N1` to `N8` are transformed into 8 intermediate values `T1 = MAX(N1, ..., N8)` to `T8 = MIN(N1, ..., N8)`. Effectively `Ti` is true iff at least `i` of the inputs are true.
### Demultiplexing
A 2-value demultiplexer can be done with 3 gates in many many ways. E.g.

An `n`-value demux taking unary input `S_i` and selecting between values `V_i` can be built up recursively from `n-1` 2-value demuxes as follows:
```
d_0 = V_0
d_{i+1} = S_{i+1} ? V_{i+1} : d_i
```
So two 9-value demuxes and a 2-value demux takes 17 demuxes; so does 9 2-value demuxes and a single 9-value demux.
So the grand total gate count is 38 for the sorting network + 17\*3 for the demuxes, giving 89.
] |
[Question]
[
# The Challenge
For a given set of n integers, write a program which will output its lexicographic index.
# The Rules
* The input must only be a set of unique non-negative integers separated by spaces.
* You should output the lexicographic index (range 0 to n!-1 inclusive) of the permutation.
* No permutation libraries or permutation built-ins may be used.
* You may not generate the set of permutations or any subset of permutations of the input to help you find the index.
* You also can't increment or decrement the given permutation to the next/previous(lexicographically) permutation.
* Bonus points (-10 bytes) if you find some way to complete this without using factorials.
* Runtime should be less than 1 minute for n = 100
* Shortest code by byte count wins
* Winner chosen Tuesday (July 22, 2014)
# More About Permutations
* <http://www.monkeyphysics.com/articles/read/26/numbering_permutations.html>
* [Permutation group operation](https://codegolf.stackexchange.com/questions/1490/permutation-group-operation)
* <http://lin-ear-th-inking.blogspot.com/2012/11/enumerating-permutations-using.html>
# Examples
```
0 1 2 --> 0
0 2 1 --> 1
1 0 2 --> 2
1 2 0 --> 3
2 0 1 --> 4
2 1 0 --> 5
0 1 2 3 4 5 6 7 --> 0
0 1 2 3 4 5 7 6 --> 1
0 1 2 3 4 6 5 7 --> 2
1 3 5 17 --> 0
781 780 779 13 --> 23
81 62 19 12 11 8 2 0 --> 40319
195 124 719 1 51 6 3 --> 4181
```
[Answer]
### GolfScript, 12 (22 characters - 10 bonus)
```
~]0\.,{.,@*\.(@$?@+\}*
```
Bonus points for not using factorials. Input must be given on STDIN in the format desriped in the question. You can try the code [online](http://golfscript.apphb.com/?c=OyIxOTUgMTI0IDcxOSAxIDUxIDYgMyIKCn5dMFwuLHsuLEAqXC4oQCQ%2FQCtcfSo%3D&run=true).
[Answer]
# CJam, 31, with factorials
```
q~]{__(f<0+:+\,,(;1+:**\(;}h]:+
```
[Answer]
# Python 2 (77 = 87-10)
```
p=map(int,raw_input().split())
s=0
while p:s=s*len(p)+sorted(p).index(p.pop(0))
print s
```
Such readable. Much built-in. Wow.
We use the fact that the lexicographic index of a permutation is the sum over the elements of the permutations of the number of inversions above that element (values after it but below it) multiplied by the factorial of the number of elements after it. Rather than evaluate this polynomial-like expression term by term, we use something akin to [Horner's method](http://en.wikipedia.org/wiki/Horner's_method).
Rather then looping over array indices, we repeatedly remove the first element of the list and process the remaining elements. The expression `sorted(p).index(p.pop(0))` counts the number of inversions past the first index by taking its position in the sorted list, while at the same time doing the removal.
Sadly, I had to use Python 2 and take 4 more characters for `raw_input` (though -1 for `print`) because in Python 3 the `map(int,...)` produces a map object, which doesn't support list operations,
[Answer]
# [Pyth](https://github.com/isaacg1/pyth/blob/master/pyth.py) (13 = 23-10)
```
JVPwdWJ=Z+*ZlJXovNJ;J)Z
```
A port of [my Python answer](https://codegolf.stackexchange.com/a/34912/20260).
A Python translation (with some irrelevant stuff filtered out):
```
Z=0
J=rev(split(input()," "))
while J:
Z=plus(times(Z,len(J)),index(order(lambda N:eval(N),J),J.pop()))
print(Z)
```
The input numbers stay strings but are sorted as ints by using eval as the key. The list is reversed so that `pop` takes the the front rather than the back.
[Answer]
# Cobra - 202
Obviously Cobra isn't really competing in this one.
```
class P
var n=0
var t=CobraCore.commandLineArgs[1:]
def main
.f(.t[0:0])
def f(l as List<of String>)
if.t.count==l.count,print if(.t<>l,'',.n+=1)
else,for i in.t.sorted,if i not in l,.f(l+[i])
```
[Answer]
# J, 5 bytes (15 - 10)
```
#\.#.+/@(<{.)\.
```
This runs in *O*(*n*2) time and is able to handle *n* = 100 easily.
## Usage
```
f =: #\.#.+/@(<{.)\.
f 0 1 2
0
f 0 2 1
1
f 1 0 2
2
f 1 2 0
3
f 2 0 1
4
f 2 1 0
5
f 0 1 2 3 4 5 6 7
0
f 0 1 2 3 4 5 7 6
1
f 0 1 2 3 4 6 5 7
2
f 1 3 5 17
0
f 781 780 779 13
23
f 81 62 19 12 11 8 2 0
40319
f 195 124 719 1 51 6 3
4181
NB. A. is the builtin for permutation indexing
timex 'r =: f 927 A. i. 100'
0.000161
r
927
```
## Explanation
```
#\.#.+/@(<{.)\. Input: array P
\. For each suffix of P
{. Take the head
< Test if it is greater than each of that suffix
+/@ Sum, count the number of times it is greater
#\. Get the length of each suffix of P
#. Convert to decimal using a mixed radix
```
] |
[Question]
[
**Problem:**
You must make a program that does the following:
* takes a large string of lowercase text, and counts all the occurrences of each letter.
* then you put the letters in order from greatest to least occurences.
* then you take that list and turns it into an encoder/decoder for the text.
* then encodes the text with that cipher.
Hard to understand? See this example:
**Example:**
Input text:
>
> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed dui at nisi euismod pellentesque ac sed enim. Nullam auctor justo quis diam faucibus, eu fringilla est porttitor. Pellentesque vel pharetra nisl. Vestibulum congue ultrices magna a fringilla. Quisque porttitor, risus suscipit pellentesque tristique, orci lorem accumsan nisi, scelerisque viverra turpis metus sit amet sapien. Fusce facilisis diam turpis, nec lobortis dui blandit nec. Vestibulum ac urna ut lacus commodo sollicitudin nec non velit. Nulla cursus urna sem, at tincidunt sem molestie vel. Nullam fringilla ante eu dolor bibendum, posuere iaculis nunc lacinia. Sed ac pretium est, vel scelerisque nisl. Phasellus lobortis dolor sodales sapien mollis hendrerit. Integer scelerisque tempor tellus, viverra varius neque mattis in. Integer porta vestibulum nisl, et feugiat tortor tincidunt vel. Aenean dignissim eleifend faucibus. Morbi nec neque vel ante pulvinar mollis eu in ipsum.
>
>
>
Convert to lowercase.
Char count (per letter. spaces and punctuation ignored):
>
> [('a', 49), ('b', 11), ('c', 34), ('d', 22), ('e', 93), ('f', 9), ('g', 10), ('h', 3), ('i', 89), ('j', 1), ('k', 0), ('l', 61), ('m', 31), ('n', 56), ('o', 37), ('p', 20), ('q', 12), ('r', 47), ('s', 71), ('t', 59), ('u', 65), ('v', 15), ('w', 0), ('x', 0), ('y', 0), ('z', 0)]
>
>
>
Ordered char count:
>
> [('e', 93), ('i', 89), ('s', 71), ('u', 65), ('l', 61), ('t', 59), ('n', 56), ('a', 49), ('r', 47), ('o', 37), ('c', 34), ('m', 31), ('d', 22), ('p', 20), ('v', 15), ('q', 12), ('b', 11), ('g', 10), ('f', 9), ('h', 3), ('j', 1), ('k', 0), ('w', 0), ('x', 0), ('y', 0), ('z', 0)]
>
>
>
Then create a lookup table using the original and sorted lists:
```
abcdefghijklmnopqrstuvwxyz
||||||||||||||||||||||||||
eisultnarocmdpvqbgfhjkwxyz
```
Python dictionary:
```
{'o': 'v', 'n': 'p', 'm': 'd', 'l': 'm', 'k': 'c', 'j': 'o', 'i': 'r', 'h': 'a', 'g': 'n', 'f': 't', 'e': 'l', 'd': 'u', 'c': 's', 'b': 'i', 'a': 'e', 'z': 'z', 'y': 'y', 'x': 'x', 'w': 'w', 'v': 'k', 'u': 'j', 't': 'h', 's': 'f', 'r': 'g', 'q': 'b', 'p': 'q'}
```
And now encode the original text with this lookup table:
>
> 'Lvgld rqfjd uvmvg frh edlh, svpflshlhjg eurqrfsrpn lmrh. Njps flu ujr eh prfr ljrfdvu qlmmlphlfbjl es flu lprd. Njmmed ejshvg ojfhv bjrf ured tejsrijf, lj tgrpnrmme lfh qvghhrhvg. Plmmlphlfbjl klm qaeglhge prfm. Vlfhrijmjd svpnjl jmhgrslf denpe e tgrpnrmme. Qjrfbjl qvghhrhvg, grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl, vgsr mvgld essjdfep prfr, fslmlgrfbjl krklgge hjgqrf dlhjf frh edlh feqrlp. Fjfsl tesrmrfrf ured hjgqrf, pls mvivghrf ujr imepurh pls. Vlfhrijmjd es jgpe jh mesjf svddvuv fvmmrsrhjurp pls pvp klmrh. Njmme sjgfjf jgpe fld, eh hrpsrujph fld dvmlfhrl klm. Njmmed tgrpnrmme ephl lj uvmvg irilpujd, qvfjlgl resjmrf pjps mesrpre. Slu es qglhrjd lfh, klm fslmlgrfbjl prfm. Paeflmmjf mvivghrf uvmvg fvuemlf feqrlp dvmmrf alpuglgrh. Iphlnlg fslmlgrfbjl hldqvg hlmmjf, krklgge kegrjf plbjl dehhrf rp. Iphlnlg qvghe klfhrijmjd prfm, lh tljnreh hvghvg hrpsrujph klm. Alplep urnprffrd lmlrtlpu tejsrijf. Mvgir pls plbjl klm ephl qjmkrpeg dvmmrf lj rp rqfjd.'
>
>
>
I love python!
**Rules:**
* Your program will accept a string and output one.
* Convert all input to lowercase before doing anything
* I don't care how you do the list sorting, but only count lowercase letters
* Bonus points (-30) for making a decryptor (no copying the decryption list, do it from scratch
* This is [code-golf](/questions/tagged/code-golf "show questions tagged 'code-golf'"), so the shortest code wins!
* Have fun!
[Answer]
### GolfScript, 39 characters
```
:I{97,26,{97+}%{[.32-]I\-,}$+'{|}~'+=}%
```
[Online version](http://golfscript.apphb.com/?c=OyJMb3JlbSBpcHN1bSBkb2xvciBzaXQgYW1ldCwgY29uc2VjdGV0dXIgYWRpcGlzY2luZyBlbGl0LiIKCjpJezk3LDI2LHs5Nyt9JXtbLjMyLV1JXC0sfSQrJ3t8fX4nKz19JQ%3D%3D&run=true) for testing. Note that the sorting is not defined if multiple characters have the same count in the input string.
*Example output*
>
> Lvgld rqfjd uvmvg frh edlh, svpflshlhjg eurqrfsrpn lmrh. Njps flu ujr
> eh prfr ljrfdvu qlmmlphlfbjl es flu lprd. Njmmed ejshvg ojfhv bjrf
> ured tejsrijf, lj tgrpnrmme lfh qvghhrhvg. Plmmlphlfbjl wlm qaeglhge
> prfm. Vlfhrijmjd svpnjl jmhgrslf denpe e tgrpnrmme. Qjrfbjl qvghhrhvg,
> grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl, vgsr mvgld essjdfep prfr,
> fslmlgrfbjl wrwlgge hjgqrf dlhjf frh edlh feqrlp. Fjfsl tesrmrfrf ured
> hjgqrf, pls mvivghrf ujr imepurh pls. Vlfhrijmjd es jgpe jh mesjf
> svddvuv fvmmrsrhjurp pls pvp wlmrh. Njmme sjgfjf jgpe fld, eh
> hrpsrujph fld dvmlfhrl wlm. Njmmed tgrpnrmme ephl lj uvmvg irilpujd,
> qvfjlgl resjmrf pjps mesrpre. Slu es qglhrjd lfh, wlm fslmlgrfbjl
> prfm. Paeflmmjf mvivghrf uvmvg fvuemlf feqrlp dvmmrf alpuglgrh.
> Iphlnlg fslmlgrfbjl hldqvg hlmmjf, wrwlgge wegrjf plbjl dehhrf rp.
> Iphlnlg qvghe wlfhrijmjd prfm, lh tljnreh hvghvg hrpsrujph wlm. Alplep
> urnprffrd lmlrtlpu tejsrijf. Mvgir pls plbjl wlm ephl qjmwrpeg dvmmrf
> lj rp rqfjd.
>
>
>
[Answer]
# Bash/coreutils, 91 chars
```
tr a-z `echo {a..z} $1|fold -w1|grep '[a-z]'|sort|uniq -c|sort -rn|awk '{printf $2}'`<<<$1
```
Save as `cipher.sh`, chmod +x it and run:
```
$ ./cipher.sh "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed dui at nisi euismod pellentesque ac sed enim. Nullam auctor justo quis diam faucibus, eu fringilla est porttitor. Pellentesque vel pharetra nisl. Vestibulum congue ultrices magna a fringilla. Quisque porttitor, risus suscipit pellentesque tristique, orci lorem accumsan nisi, scelerisque viverra turpis metus sit amet sapien. Fusce facilisis diam turpis, nec lobortis dui blandit nec. Vestibulum ac urna ut lacus commodo sollicitudin nec non velit. Nulla cursus urna sem, at tincidunt sem molestie vel. Nullam fringilla ante eu dolor bibendum, posuere iaculis nunc lacinia. Sed ac pretium est, vel scelerisque nisl. Phasellus lobortis dolor sodales sapien mollis hendrerit. Integer scelerisque tempor tellus, viverra varius neque mattis in. Integer porta vestibulum nisl, et feugiat tortor tincidunt vel. Aenean dignissim eleifend faucibus. Morbi nec neque vel ante pulvinar mollis eu in ipsum."
Lvgld rqfjd uvmvg frh edlh, svpflshlhjg eurqrfsrpn lmrh. Njps flu ujr eh prfr ljrfdvu qlmmlphlfbjl es flu lprd. Njmmed ejshvg ojfhv bjrf ured tejsrijf, lj tgrpnrmme lfh qvghhrhvg. Plmmlphlfbjl jlm qaeglhge prfm. Vlfhrijmjd svpnjl jmhgrslf denpe e tgrpnrmme. Qjrfbjl qvghhrhvg, grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl, vgsr mvgld essjdfep prfr, fslmlgrfbjl jrjlgge hjgqrf dlhjf frh edlh feqrlp. Fjfsl tesrmrfrf ured hjgqrf, pls mvivghrf ujr imepurh pls. Vlfhrijmjd es jgpe jh mesjf svddvuv fvmmrsrhjurp pls pvp jlmrh. Njmme sjgfjf jgpe fld, eh hrpsrujph fld dvmlfhrl jlm. Njmmed tgrpnrmme ephl lj uvmvg irilpujd, qvfjlgl resjmrf pjps mesrpre. Slu es qglhrjd lfh, jlm fslmlgrfbjl prfm. Paeflmmjf mvivghrf uvmvg fvuemlf feqrlp dvmmrf alpuglgrh. Iphlnlg fslmlgrfbjl hldqvg hlmmjf, jrjlgge jegrjf plbjl dehhrf rp. Iphlnlg qvghe jlfhrijmjd prfm, lh tljnreh hvghvg hrpsrujph jlm. Alplep urnprffrd lmlrtlpu tejsrijf. Mvgir pls plbjl jlm ephl qjmjrpeg dvmmrf lj rp rqfjd.
$
```
[Answer]
### Ruby, ~~104~~ ~~92~~ 91 characters
Saved quite a few characters thanks to @Chron
```
f=->(s){m=[*?a..?z];l=m.map{|x|[-s.downcase.count(x),x]};s.tr(m*'',l.sort.transpose[1]*'')}
```
[Online Version](http://ideone.com/q3MlPm) here. Sorting of characters with the same count is not defined, as mentioned in another answer. With the input "asdf", each answer has another output so far.
In other words: all answers have the same behaviour (thus represent a decodable encoding) when the input contains the whole alphabet with each letter having a unique count.
[Answer]
# Mathematica 171
```
f@m_:=StringReplace[m,Thread[(CharacterRange["a",
FromCharacterCode[96+Length@(l=Reverse@SortBy[Tally[Select[Characters@m,
(LetterQ@#\[And]LowerCaseQ@#)&]],Last][[All,1]])]])->l ]]
```
Assuming `t` is the Lorem ipsum text.
```
f[t]
```
>
> "Lvgld rqfjd uvmvg frh edlh,svpflshlhjg eurqrfsrpn lmrh.Njps flu ujr
> eh prfr ljrfdvu qlmmlphlfbjl es flu lprd.Njmmed ejshvg ojfhv bjrf
> ured tejsrijf,lj tgrpnrmme lfh qvghhrhvg.Plmmlphlfbjl vlm qaeglhge
> prfm.Vlfhrijmjd svpnjl jmhgrslf denpe e tgrpnrmme.Qjrfbjl
> qvghhrhvg,grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl,vgsr mvgld essjdfep
> prfr,fslmlgrfbjl vrvlgge hjgqrf dlhjf frh edlh feqrlp.Fjfsl tesrmrfrf
> ured hjgqrf,pls mvivghrf ujr imepurh pls.Vlfhrijmjd es jgpe jh mesjf
> svddvuv fvmmrsrhjurp pls pvp vlmrh.Njmme sjgfjf jgpe fld,eh hrpsrujph
> fld dvmlfhrl vlm.Njmmed tgrpnrmme ephl lj uvmvg irilpujd,qvfjlgl
> resjmrf pjps mesrpre.Slu es qglhrjd lfh,vlm fslmlgrfbjl
> prfm.Paeflmmjf mvivghrf uvmvg fvuemlf feqrlp dvmmrf alpuglgrh.Iphlnlg
> fslmlgrfbjl hldqvg hlmmjf,vrvlgge vegrjf plbjl dehhrf rp.Iphlnlg
> qvghe vlfhrijmjd prfm,lh tljnreh hvghvg hrpsrujph vlm.Alplep
> urnprffrd lmlrtlpu tejsrijf.Mvgir pls plbjl vlm ephl qjmvrpeg dvmmrf
> lj rp rqfjd."
>
>
>
The replacement rules generated by `Thread…-> l` were:
>
> {"a" -> "e", "b" -> "i", "c" -> "s", "d" -> "u", "e" -> "l",
> "f" -> "t", "g" -> "n", "h" -> "a", "i" -> "r", "j" -> "o",
> "k" -> "c", "l" -> "m", "m" -> "d", "n" -> "p", "o" -> "v",
> "p" -> "q", "q" -> "b", "r" -> "g", "s" -> "f", "t" -> "h",
> "u" -> "j"}
>
>
>
[Answer]
# K, 43
```
{x^(b!b^26$>#:'=a@&(a:_x)in b:"c"$97+!26)x}
```
[Answer]
**C# 386**
```
using System.Collections.Generic;using System.Linq;namespace N{class P{static void Main(string[]a){char[] f="abcdefghijklmnopqrstuvwxyz".ToCharArray();Dictionary<char,int>l=new Dictionary<char,int>();foreach (char c in f) l.Add(c, "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed dui at nisi euismod pellentesque ac sed enim. Nullam auctor justo quis diam faucibus, eu fringilla est porttitor. Pellentesque vel pharetra nisl. Vestibulum congue ultrices magna a fringilla. Quisque porttitor, risus suscipit pellentesque tristique, orci lorem accumsan nisi, scelerisque viverra turpis metus sit amet sapien. Fusce facilisis diam turpis, nec lobortis dui blandit nec. Vestibulum ac urna ut lacus commodo sollicitudin nec non velit. Nulla cursus urna sem, at tincidunt sem molestie vel. Nullam fringilla ante eu dolor bibendum, posuere iaculis nunc lacinia. Sed ac pretium est, vel scelerisque nisl. Phasellus lobortis dolor sodales sapien mollis hendrerit. Integer scelerisque tempor tellus, viverra varius neque mattis in. Integer porta vestibulum nisl, et feugiat tortor tincidunt vel. Aenean dignissim eleifend faucibus. Morbi nec neque vel ante pulvinar mollis eu in ipsum.".ToLower().Trim().Count(v => v == c));foreach (KeyValuePair<char, int> i in l.OrderByDescending(p => p.Value))System.Console.Write(i.Key +""+i.Value);}}}
```
Uncompressed.
```
using System.Collections.Generic;
using System.Linq;
namespace N {
class P {
static void Main(string[]a){
char[] f="abcdefghijklmnopqrstuvwxyz".ToCharArray();
Dictionary<char,int>l=new Dictionary<char,int>();
foreach (char c in f)
l.Add(c, "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc sed dui at nisi euismod pellentesque ac sed enim. Nullam auctor justo quis diam faucibus, eu fringilla est porttitor. Pellentesque vel pharetra nisl. Vestibulum congue ultrices magna a fringilla. Quisque porttitor, risus suscipit pellentesque tristique, orci lorem accumsan nisi, scelerisque viverra turpis metus sit amet sapien. Fusce facilisis diam turpis, nec lobortis dui blandit nec. Vestibulum ac urna ut lacus commodo sollicitudin nec non velit. Nulla cursus urna sem, at tincidunt sem molestie vel. Nullam fringilla ante eu dolor bibendum, posuere iaculis nunc lacinia. Sed ac pretium est, vel scelerisque nisl. Phasellus lobortis dolor sodales sapien mollis hendrerit. Integer scelerisque tempor tellus, viverra varius neque mattis in. Integer porta vestibulum nisl, et feugiat tortor tincidunt vel. Aenean dignissim eleifend faucibus. Morbi nec neque vel ante pulvinar mollis eu in ipsum.".ToLower().Trim().Count(v => v == c));
foreach (KeyValuePair<char, int> i in l.OrderByDescending(p => p.Value))
System.Console.Write(i.Key +""+i.Value);
}
}
}
```
[Answer]
# PHP, 151
*(with setting `short_open_tag = On`)*
```
<?$c=array_slice(count_chars(strtolower($s=$argv[1])),97,26,1);arsort($c);echo strtr($s,array_combine(range('a','z'),array_map('chr',array_keys($c))));
```
This expects the text as the first argument to the script. Like so:
```
php cypher.php "Lorem ipsum [...]"
```
[Answer]
## R, 137
```
l=letters;s=strsplit(readline(),"")[[1]];g=grep("[a-z]",s);s[g]=names(sort(table(factor(tolower(s),l)),d=T))[match(s[g],l)];cat(s,sep="")
```
Output (based on example in question):
>
> Lvgld rqfjd uvmvg frh edlh, svpflshlhjg eurqrfsrpn lmrh. Njps flu ujr eh prfr ljrfdvu qlmmlphlfbjl es flu lprd. Njmmed ejshvg ojfhv bjrf ured tejsrijf, lj tgrpnrmme lfh qvghhrhvg. Plmmlphlfbjl klm qaeglhge prfm. Vlfhrijmjd svpnjl jmhgrslf denpe e tgrpnrmme. Qjrfbjl qvghhrhvg, grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl, vgsr mvgld essjdfep prfr, fslmlgrfbjl krklgge hjgqrf dlhjf frh edlh feqrlp. Fjfsl tesrmrfrf ured hjgqrf, pls mvivghrf ujr imepurh pls. Vlfhrijmjd es jgpe jh mesjf svddvuv fvmmrsrhjurp pls pvp klmrh. Njmme sjgfjf jgpe fld, eh hrpsrujph fld dvmlfhrl klm. Njmmed tgrpnrmme ephl lj uvmvg irilpujd, qvfjlgl resjmrf pjps mesrpre. Slu es qglhrjd lfh, klm fslmlgrfbjl prfm. Paeflmmjf mvivghrf uvmvg fvuemlf feqrlp dvmmrf alpuglgrh. Iphlnlg fslmlgrfbjl hldqvg hlmmjf, krklgge kegrjf plbjl dehhrf rp. Iphlnlg qvghe klfhrijmjd prfm, lh tljnreh hvghvg hrpsrujph klm. Alplep urnprffrd lmlrtlpu tejsrijf. Mvgir pls plbjl klm ephl qjmkrpeg dvmmrf lj rp rqfjd.
>
>
>
[Answer]
# Smalltalk, 138
input in s:
```
m:=(s select:[:c|cisLetter])asLowercase asBag sortedCounts map:#value.
i:=($ato:$z).m:=m,(i copyWithoutAll:m).
s copyTransliterating:i to:m
```
the decoder is:
```
s copyTransliterating:m to:i
```
but as (if I understand correctly) I may not reuse "i" and "m", I'll golf without it. Code above has two additional CRs inserted for readability, which were uncounted in the char count.
[Answer]
# Clojure, 135
(Assuming the input text is contained in the var `s`)
```
(let[a(map char(range 97 123))m(->> s .toLowerCase frequencies(sort-by val >)keys(filter(set a))(zipmap a))](apply str(map #(m % %)s)))
```
[Answer]
# Python 2.7 (147)
Not the shortest code at all but as Python is not yet represented and as I see "I love python!" in the problem setting, here I go,
```
import sys;s=sys.argv[1];a=map(chr,range(97,123));print"".join([sorted(a,key=lambda x:-s.lower().count(x))[ord(c)-97]if c in a else c for c in s])
```
Expects the input string to be passed via the command line. (number of characters are reduced to **122** if the input string was magically inserted into the variable "s")
```
a=map(chr,range(97,123));print"".join([sorted(a,key=lambda x:-s.lower().count(x))[ord(c)-97]if c in a else c for c in s])
```
## Ouput
>
> Lvgld rqfjd uvmvg frh edlh, svpflshlhjg eurqrfsrpn lmrh. Njps flu ujr eh prfr ljrfdvu qlmmlphlfbjl es flu lprd. Njmmed ejshvg ojfhv bjrf ured tejsrijf, lj tgrpnrmme lfh qvghhrhvg. Plmmlphlfbjl klm qaeglhge prfm. Vlfhrijmjd svpnjl jmhgrslf denpe e tgrpnrmme. Qjrfbjl qvghhrhvg, grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl, vgsr mvgld essjdfep prfr, fslmlgrfbjl krklgge hjgqrf dlhjf frh edlh feqrlp. Fjfsl tesrmrfrf ured hjgqrf, pls mvivghrf ujr imepurh pls. Vlfhrijmjd es jgpe jh mesjf svddvuv fvmmrsrhjurp pls pvp klmrh. Njmme sjgfjf jgpe fld, eh hrpsrujph fld dvmlfhrl klm. Njmmed tgrpnrmme ephl lj uvmvg irilpujd, qvfjlgl resjmrf pjps mesrpre. Slu es qglhrjd lfh, klm fslmlgrfbjl prfm. Paeflmmjf mvivghrf uvmvg fvuemlf feqrlp dvmmrf alpuglgrh. Iphlnlg fslmlgrfbjl hldqvg hlmmjf, krklgge kegrjf plbjl dehhrf rp. Iphlnlg qvghe klfhrijmjd prfm, lh tljnreh hvghvg hrpsrujph klm. Alplep urnprffrd lmlrtlpu tejsrijf. Mvgir pls plbjl klm ephl qjmkrpeg dvmmrf lj rp rqfjd.
>
>
>
[Answer]
## Perl, 84
```
$c{$_}++for lc($_=<>)=~/./g;@h{a..z}=sort{$c{$b}-$c{$a}}a..z;s/[a-z]/$h{$&}/ge;print
```
.
>
> perl cipher.pl
>
>
> .. input skipped ..
>
>
> Lvgld rqfjd uvmvg frh edlh, svpflshlhjg eurqrfsrpn lmrh. Njps flu ujr
> eh prfr lj rfdvu qlmmlphlfbjl es flu lprd. Njmmed ejshvg ojfhv bjrf
> ured tejsrijf, lj tgrpn rmme lfh qvghhrhvg. Plmmlphlfbjl klm qaeglhge
> prfm. Vlfhrijmjd svpnjl jmhgrslf d enpe e tgrpnrmme. Qjrfbjl
> qvghhrhvg, grfjf fjfsrqrh qlmmlphlfbjl hgrfhrbjl, vgsr mvgld essjdfep
> prfr, fslmlgrfbjl krklgge hjgqrf dlhjf frh edlh feqrlp. Fjfsl te
> srmrfrf ured hjgqrf, pls mvivghrf ujr imepurh pls. Vlfhrijmjd es jgpe
> jh mesjf s vddvuv fvmmrsrhjurp pls pvp klmrh. Njmme sjgfjf jgpe fld,
> eh hrpsrujph fld dvmlf hrl klm. Njmmed tgrpnrmme ephl lj uvmvg
> irilpujd, qvfjlgl resjmrf pjps mesrpre. Slu es qglhrjd lfh, klm
> fslmlgrfbjl prfm. Paeflmmjf mvivghrf uvmvg fvuemlf feqrl p dvmmrf
> alpuglgrh. Iphlnlg fslmlgrfbjl hldqvg hlmmjf, krklgge kegrjf plbjl
> dehh rf rp. Iphlnlg qvghe klfhrijmjd prfm, lh tljnreh hvghvg hrpsrujph
> klm. Alplep ur nprffrd lmlrtlpu tejsrijf. Mvgir pls plbjl klm ephl
> qjmkrpeg dvmmrf lj rp rqfjd.
>
>
>
P.S. Was it a joke, about decipher? Or should I claim 30 bonus for proving it impossible? Is `aab` deciphered to `aab` or `bba`? Or `babaca`, was it `cacaba` or `ababcb` in original, or `babaca` itself, literally?
[Answer]
# C# – 393 bytes
```
string e(string i){char[] f="abcdefghijklmnopqrstuvwxyz".ToCharArray();Dictionary<char,int>l=new Dictionary<char,int>();foreach (char c in f) l.Add(c, i.ToLower().Count(v => v == c));var w = (l.OrderByDescending(p => p.Value)).ToDictionary(q=>q.Key, y=>y.Value);var z = w.Keys.ToList();string r = "";foreach(char c in i) {if((int)c <=97 || (int)c>=122)r+=c;else r += z[((int)c-97)];}return r;}
```
The extended version of [@PauloHDSousa’s answer](https://codegolf.stackexchange.com/a/21575/8765)…
] |
[Question]
[
**This question already has answers here**:
[Get the decimal!](/questions/117440/get-the-decimal)
(28 answers)
Closed 6 years ago.
Given three integers N,D,R write a program to output Rth digit after the decimal point in the decimal expansion for a given proper fraction N/D.
[Answer]
## GolfScript 17
```
10\?@abs*\abs/10%
```
GolfScript can't handle real numbers well, but multiplying by powers of 10 is equivalent.
Here's an explanation and walkthrough with sample input, for any of you who are new to GolfScript, since I think this is a nice simple introduction:
```
59 -17 5
10\ #Place 10 on the stack and then switch the top 2 elements
-> 59 -17 10 5
? #Exponentiate
-> 59 -17 100000
@ #Rotate top 3 elements
-> -17 100000 59
abs #Take absolute value of top element
-> -17 100000 59
* #Multiply the top 2 elements
-> -17 5900000
\ #Switch top 2 elements
-> 5900000 -17
abs #Take absolute value of top element
-> 5900000 17
/ #Do integer division
-> 347058
10% #Place 10 on the stack and then take modulo
-> 8
```
[Answer]
## Java
```
static int digit(int N, int D, int R) {
if (D < 0) D = -D;
if (N < 0) N = -N;
int Q=0;
while (R-- > 0) {
while (N >=D) N -=D;
int P=N = ((N+N)<<1)+N;
for (Q=P^P; N >D; N -=D) Q++;
while (P >=D) P -=D;
N = P<<1;
}
for (; N >= 0; N -=D) R++;
return (Q<<1) + R;
}
```
This code
* avoids multiplication and division
* splits decimal digit in 5- and 2-digit (Q and final R) internally
---
*Explanation*
When dividing manually you get digits by multiplying remainders by 10 and comparing the results to multiples of the divisor
```
10 / 17 = Digit 0, Remainder 10 (x 10)
100 / 17 = Digit 5, Remainder 15 (x 10)
150 / 17 = Digit 8, Remainder 14 (x 10)
140 / 17 = Digit 8, Remainder 4 (x 10)
etc.
```
So the basic code (ignoring all digits except the R-th) would be
```
static int digitA(int N, int D, int R) {
while (R-- > 0) {
N = N % D;
N = N * 10;
}
return N / D;
}
```
Replacing multiplications and divisions by adding/subtracting and shifting results in
```
while (R-- > 0) {
while (N >= D) N = N - D;
N = ((N << 2) + N) << 1;
}
int digit = 0;
while (N > D) { digit++; N = N - D; }
return digit;
```
As `R` is `-1` after the first loop, it can be used to replace `digit` afterwards.
With avoiding shifting by more than 1 and introducing intermediate `P` the code becomes
```
while (R-- > 0) {
while (N >= D) N = N - D;
int P = ((N + N) << 1) + N;
N = P << 1;
}
for ( ; N >= D; N = N - D) R++;
return R;
```
The number of loop runs can be reduced by "splitting the decimal digit into two digits with base 5 and 2".
The above manual division schema would become something like
```
10 / 17 = 2-Digit 0, Remainder 10 (x 5)
50 / 17 = 5-Digit 2, Remainder 16 (x 2)
32 / 17 = 2-Digit 1, Remainder 15 (x 5) --> 10-digit = 2*2 + 1
75 / 17 = 5-Digit 4, Remainder 7 (x 2)
14 / 17 = 2-Digit 0, Remainder 14 (x 5) --> 10-digit = 4*2 + 0
70 / 17 = 5-Digit 4, Remainder 2 (x 2)
4 / 17 = 2-Digit 0, Remainder 4 (x 5) --> 10-digit = 4*2 + 0
etc.
```
As only the R-th decimal digit is to be returned, only the R-th 5-digit before the R-th 2-digit is required to compose the R-th decimal digit.
```
int P=N = ((N+N)<<1)+N; // N = N * 5
for (Q=P^P; N >D; N -=D) Q++; // Q=digit(5)
//...
return (Q<<1) + R;
```
The rest is some "obfuscation"
* `P^P` is zero - inspired by machine code where XORing may be the most efficient way to set a register to zero :-)
* The line `while (P >=D) P -=D;` is the same as `P=N;` - but is more "smiling" :-)
[Answer]
## Mathematica: 36 chars
```
f = RealDigits[#1/#2, 10, 1, -#3][[1, 1]] &
```
Test case:
```
f[1, 70000, 5]
```
>
> 1
>
>
>
[Answer]
# Python: 96 bytes
The following code counts the number of digits after the decimal point, e.g. for `N = 3` and `D = 17`, `fracnum(N,D,7) = 5` since N/D = 0.176470588235.
```
def fracnum(N,D,R):
v, d = abs(N)*10, abs(D)
while R:
(v, r, R) = (v*10, v, R-1) if v < d else ((v%d)*10, v//d, R-1)
return r
```
This function can be written more compact as:
```
def f(N,D,R):
v,d=abs(N)*10,abs(D)
while R:v,r=(((v%d)*10,v//d),(v*10,v))[v<d];R-=1
return r
```
[Answer]
## Awk: 38
```
BEGIN{b=n/d"";print substr(b,r+2,1)}
```
Called by the slightly cumbersome `awk -f division.awk -v n=? -v d=? -v r=?` where `?` represents the variable you want in there. Note that this is limited by precision, so choice of `1 4 3` would result in a blank line.
[Answer]
## PHP — 54 (Exact precision)
```
echo bcdiv(bcmul(bcpow(10,$r+1),abs($n)),abs($d))[$r];
```
## PHP — 41 (Not so exact precision (eventual floating point errors))
```
echo strval(abs(pow(10,$r+1)*$n/$d))[$r];
```
[Answer]
# Mathematica ~~63~~ 65
This now handles rational numbers close to zero.
Should work to (one million places - no. places to the left of decimal point).
```
f[n_,d_,r_]:=({w,z}=RealDigits[N[n/d,10^6]];If[z+r<1,0,w[[z+r]]])
```
**Testing**
The following returns the digits at positions `min` through `max`, allowing for easy checking of results.
```
g[n_, d_, {min_, max_}] := Grid@{{"num", "den", "decimal", "digits " <> ToString@min <>
" to " <> ToString@max}, {n, d, N[n/d, max], Table[f[n, d, k], {k, min, max}]}}
```
Verify the digits of 1/7 from 3 to 7 places to the right of the decimal point.
```
g[1, 7, {3, 7}]
```

---
```
g[1, 7000, {3, 6}]
```

---
[Answer]
## Python: 69 bytes
```
def f(N,D,R):
return ('%.{0}f'.format(R+1)%(float(N)/float(D)))[-2]
```
(first time posting here, please be gentle for any formatting/misc errors :D)
[Answer]
## JavaScript - 40
```
function f(n,d,r){return(n/d%1+'')[r+1]}
```
[Answer]
# BASH - 52
```
f=$(echo "scale=$R; $N/$D"|bc -l)
n=${f:$((${#f}-1))}
```
] |
Subsets and Splits