| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 3 초 (추가 시간 없음) | 1024 MB | 250 | 90 | 77 | 49.045% |
For two nonnegative integers $a, b$, let $a \wedge b$ be their bitwise AND, and $a \vee b$ be their bitwise OR.
You are given an array $A_0, A_1, \ldots, A_{2^N - 1}$ of length $2^N$ consisting of nonnegative integers. Please find a pair of indices $0 \le i, j \le 2^N - 1$ such that $A_{i} + A_{j} < A_{i \wedge j} + A_{i \vee j}$, or state that no such pair exists. If there is more than one such pair, print any.
The first line contains an integer $N$.
The second line contains $2^N$ integers, the array $A$ given in order.
If there is an answer, output two integers $i, j$ denoting the answer, separated by spaces. $i, j$ should be in the range $[0, 2^N - 1]$. Otherwise, output -1.
This subtask has an additional constraint.
This subtask has an additional constraint.
This subtask has no additional constraints.
2 0 1 1 2
-1
2 0 1 1 3
1 2
University > KAIST > KAIST RUN Spring Contest > 2021 KAIST RUN Spring Contest F번
Camp > Petrozavodsk Programming Camp > Winter 2022 > Day 2: Grand Prix of Daejeon C번
Contest > Open Cup > 2021/2022 Season > Stage 11: Grand Prix of Daejeon C번