RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
USACO0421 파일 입출력

Equilateral Triangles

Platinum I 플래티넘 I
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Farmer John's pasture can be represented by a \(N\times N\) square grid
\((1\le N\le 300)\) consisting of positions \((i,j)\) for all \(1\le i,j\le N\). For
each square of the grid, the corresponding character in the input is equal to
'*' if there exists a single cow at that position and '.' if there does not
exist a cow at that position.

FJ believes that the beauty of his pasture is directly proportional to the
number of triples of cows such that their positions are equidistant from each
other. In other words, they form an equilateral triangle. Unfortunately, it was
only quite recently that FJ realized that since all of his cows are located at
integer coordinates, no beautiful triples can possibly exist if Euclidean
distance is used! Thus, FJ has decided to switch to use "Manhattan" distance
instead. Formally, the Manhattan distance between two positions \((x_0,y_0)\) and
\((x_1,y_1)\) is equal to \(|x_0-x_1|+|y_0-y_1|\).

Given the grid representing the positions of the cows, compute the number of
equilateral triples.

Problem credits: Benjamin Qi

제약

SCORING

There will be fourteen test cases aside from the sample, one for each of
\(N\in \{50,75,100,125,150,175,200,225,250,275,300,300,300,300\}.\)

Problem credits: Benjamin Qi

입력 형식

The first line contains a single integer \(N.\)

For each \(1\le i\le N,\) line \(i+1\) of the input contains a string of length \(N\)
consisting solely of the characters '*' and '.'. The \(j\)th character
describes whether there exists a cow at position \((i,j)\) or not.

출력 형식

Output a single integer containing the answer. It can be shown that it fits into
a signed 32-bit integer.

파일 입력 / 출력
이 문제는 표준 입출력을 사용하지 않습니다. 프로그램은 다음 파일을 읽고 써야 합니다:
입력을 읽을 파일 triangles.in
출력을 쓸 파일 triangles.out
예제 1
입력
3
*..
.*.
*..
출력
1
설명

There are three cows, and they form an equilateral triple because the Manhattan
distance between each pair of cows is equal to two.

문제 정보

riseoj 작성

출처 올림피아드 > USACO > 2019-2020 > February > Platinum

태그

평가 및 의견

Equilateral Triangles

개요
출제자 난이도 Platinum I 플래티넘 I 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

Equilateral Triangles

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8