일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 28 |
29 | 30 | 31 |
Tags
- 앱
- 11053
- 홈화면
- permutation
- 파이썬
- 6603
- 1260
- Kotlin
- 11054
- 매일11시
- 코테
- 최소공배수
- 11057
- Python
- 9095
- lcm
- 나머지
- 11기
- expo
- Combination
- 코틀린
- Android
- 1182
- itertools
- 백준
- LCS
- 뒤로가기
- 순열
- 안드로이드
- 괄호
Archives
- Today
- Total
황소개발자
백준 16924 파이썬 python : 십자가 찾기 @@황소처럼 우직하게@@ 코테에 잘나옴 은근 본문
반응형
채점하는데 오래걸려서 유튭보고 왓넹
import sys
input = sys.stdin.readline
h, w = map(int, input().split())
check = [[0 for i in range(w)] for j in range(h)]
mat = []
ans = [] # x, y, s
dx = [1, -1, 0, 0]
dy = [0, 0, 1, -1]
def checks(y, x):
for s in range(1, w):
flag = True
for i in range(4):
ny = y + dy[i] * s
nx = x + dx[i] * s
if 0 <= nx < w and 0 <= ny < h and mat[ny][nx] == '*':
pass
else:
# exit
flag = False
break
if flag:
ans.append([y + 1, x + 1, s])
for i in range(4):
ny = y + dy[i] * s
nx = x + dx[i] * s
check[ny][nx] = 0
check[y][x] = 0
else:
break
for i in range(h):
mat.append(input().strip())
for i in range(h):
for j in range(w):
if mat[i][j] == '*':
check[i][j] = 1
for i in range(h):
for j in range(w):
if mat[i][j] == '*':
checks(i, j)
total = 0
for i in range(h):
for j in range(w):
total += check[i][j]
if total == 0:
print(len(ans))
for ss in ans:
print(*ss)
else:
print(-1)
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 16937 파이썬 python : 두 스티커 @@황소처럼 우직하게@@ 갓포스트말론 (0) | 2020.04.22 |
---|---|
백준 16936 파이썬 python : 나3곱2 @@황소처럼 우직하게@@ 재밌어 이런문제, 방법 2가지 제시 (0) | 2020.04.22 |
백준 16922 파이썬 python : 로마 숫자 만들기 @@황소처럼 우직하게@@ 최적화 연습하기 좋지~ (0) | 2020.04.22 |
백준 16968 파이썬 python : 차량 번호판 1 @@황소처럼 우직하게@@ 수학으로 푸는거라구 이건 (0) | 2020.04.22 |
백준 1764 파이썬 python : 듣보잡 @@황소처럼 우직하게@@ strip 을 일상화하자^^ (0) | 2020.04.21 |
Comments