There are $N$ seats in a row, numbered $1, 2, \ldots, N$.
The state of the seats is given by a string $S$ of length $N$ consisting of # and .. If the $i$-th character of $S$ is #, it means seat $i$ is occupied; if it is ., seat $i$ is unoccupied.
Find the number of integers $i$ between $1$ and $N - 2$, inclusive, that satisfy the following condition:
Seats $i$ and $i + 2$ are occupied, and seat $i + 1$ is unoccupied.
Takahashi is at the origin on a two-dimensional coordinate plane.
The cost for him to move from point $(a, b)$ to point $(c, d)$ is $\sqrt{(a - c)^2 + (b - d)^2}$.
Find the total cost when he starts at the origin, visits $N$ points $(X_1, Y_1), \ldots, (X_N, Y_N)$ in this order, and then returns to the origin.
#define int long long #define endl '\n' #define pii std::pair<int ,int> #define fix(x) std::fixed << std::setprecision(x) constint inf = 1e17 + 50, MAX_N = 1e5 + 50, mod = 1e9 + 7;
voidsolve(){ double s = 0; int n; std::cin >> n; int x = 0, y = 0; for(int i = 0; i < n; i++) { int u, v; std::cin >> u >> v; s += std::hypot(u - x, y - v); x = u, y = v; } s += std::hypot(x, y); std::cout << fix(16) << s << endl; }
You are given a grid with $N$ rows and $N$ columns, where $N$ is an even number. Let $(i, j)$ denote the cell at the $i$-th row from the top and $j$-th column from the left.
Each cell is painted black or white. If $A_{i, j} =$ #, cell $(i, j)$ is black; if $A_{i, j} =$ ., it is white.
Find the color of each cell after performing the following operation for $i = 1, 2, \ldots, \frac{N}{2}$ in this order.
For all pairs of integers $x, y$ between $i$ and $N + 1 - i$, inclusive, replace the color of cell $(y, N + 1 - x)$ with the color of cell $(x, y)$. Perform these replacements simultaneously for all such pairs $x, y$.
You are given a string $S$ consisting of uppercase English letters.
Find the number of integer triples $(i, j, k)$ satisfying both of the following conditions:
$1 \leq i < j < k \leq |S|$
The length-$3$ string formed by concatenating $S_i$, $S_j$, and $S_k$ in this order is a palindrome.
Here, $|S|$ denotes the length of $S$, and $S_x$ denotes the $x$-th character of $S$.