Problem A

Statement
Copy Copied
Description:
You are given a 4x4 grid. You play a game — there is a sequence of tiles, each of them is either 2x1 or 1x2. Your task is to consequently place all tiles from the given sequence in the grid. When tile is placed, each cell which is located in fully occupied row or column is deleted (cells are deleted at the same time independently). You can place tile in the grid at any position, the only condition is that tiles (and tile parts) should not overlap. Your goal is to proceed all given figures and avoid crossing at any time.

Input Format:
The only line contains a string $$$s$$$ consisting of zeroes and ones ($$$1 \le |s| \le 1000$$$). Zero describes vertical tile, one describes horizontal tile.

Output Format:
Output $$$|s|$$$ lines — for each tile you should output two positive integers $$$r,c$$$, not exceeding $$$4$$$, representing numbers of smallest row and column intersecting with it.

If there exist multiple solutions, print any of them.

Note:
Following image illustrates the example after placing all three tiles:

Submissions

IDLanguageExit CodeTimestampCodeStdoutStderrRetry
4887 cpp 0 2026-03-05T11:35:29.12463Z View View View Retry
4886 go 1 2026-03-05T05:43:03.877158Z View View View Retry
4882 go 1 2026-03-05T05:20:43.05603Z View View View Retry

Evaluations

Eval IDRun IDProviderModelLangSuccessTimestampPromptResponseStdoutStderrRetry
1365 20260302-072902 openai gpt-5 go false 2026-03-02T07:42:57.767505Z View View View View Retry