일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 11054
- lcm
- expo
- 파이썬
- 11기
- 11057
- 최소공배수
- 코틀린
- Python
- permutation
- itertools
- Android
- 1260
- 괄호
- 11053
- 안드로이드
- 나머지
- 순열
- Combination
- 홈화면
- 코테
- LCS
- 1182
- 매일11시
- Kotlin
- 백준
- 9095
- 뒤로가기
- 6603
- 앱
Archives
- Today
- Total
황소개발자
백준 17088 파이썬 python : 등차수열 변환 @@황소처럼 우직하게@@ 졸려뒤지것네 본문
반응형
지금시각 새벽 3시 53분
앞에 두 숫자를 조작해준다 그 경우의 수는 9가지.
import sys
input = sys.stdin.readline
n = int(input())
B = list(map(int, input().split()))
if n == 1:
print(0)
exit()
def check(first, second, b):
diff = second - first
new = [first + diff * i for i in range(len(b))]
flag = True
change = 0
for i in range(2, len(b)):
if abs(new[i] - b[i]) > 1:
return [False, change]
if new[i] == b[i]:
pass
else:
change += 1
return [True, change]
ans = 999999999
for k in [-1, 0, 1]:
for u in [-1, 0, 1]:
flag, change = check(B[0] + k, B[1] + u, B)
if flag:
if k != 0:
change += 1
if u != 0:
change += 1
ans = min(ans, change)
print(ans if ans != 999999999 else -1)
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 2210 파이썬 python : 숫자판 점프 @@황소처럼 우직하게@@ 좋은사람만나 사랑받고 (0) | 2020.04.23 |
---|---|
백준 15686 파이썬 python : 치킨 배달 @@황소처럼 우직하게@@ 치킨 먹고싶어 (0) | 2020.04.23 |
백준 16637 파이썬 python : 괄호 추가하기 @@황소처럼 우직하게@@ 요샌풀면 "이게 되네" (0) | 2020.04.22 |
python permutations combinations 파이썬 순열 조합 itertools 모듈 사용. 사용법 정리. 문제점과 한계. 그리고 해결책 (0) | 2020.04.22 |
백준 16943 파이썬 python : 숫자 재배치 @@황소처럼 우직하게@@ permutations 사용해부려 (0) | 2020.04.22 |
Comments