Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 우아한 테크 세미나
- n타일링2
- 이펙티브코틀린
- 에러핸들링
- HTTP
- 토마토
- Operating System.
- Four Squares
- Operating System
- 열혈 TCP/IP 소켓 프로그래밍
- 김영한
- inflearn
- C#
- 스프링 핵심 원리
- 10026번
- C++
- 우아한레디스
- FIFO paging
- 열혈 tcp/ip 프로그래밍
- Spring
- BOJ
- 제프리리처
- redis
- 운영체제
- Window-Via-c/c++
- 윤성우 저자
- 2475번
- 스프링 입문
- TCP/IP
- OS
Archives
- Today
- Total
나의 브을로오그으
[c++] 1107번 : 리모컨 본문
https://www.acmicpc.net/problem/1107
#include <iostream>
using namespace std;
#define MIN 0
#define MAX 500000
int Abs(int n)
{
return n < 0 ? ~n + 1 : n;
}
int CountOfInputNumber(int* bkNums, int N)
{
if (N <= 0)
{
return bkNums[0] == 0 && N == 0 ? 1 : -1;
}
int cnt = 0;
while (N > 0)
{
int btn = N % 10;
for (int i = 0; i < 10; ++i)
{
if (bkNums[i] > 0 && btn == i)
{
return -1;
}
}
N /= 10;
++cnt;
}
return cnt;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
int N, M;
int bkNums[10] = { 0, };
int signs[2] = { -1, +1 };
int num, cur = 100, cnt = 0;
cin >> N;
cin >> M;
for (int i = 0; i < M; ++i)
{
cin >> num;
++bkNums[num];
}
int offset = 0;
while (N - offset >= MIN || N + offset <= MAX)
{
for (int i = 0; i < 2; ++i)
{
cnt = CountOfInputNumber(bkNums, N + (signs[i] * offset));
if (cnt != -1)
{
cnt += offset;
break;
}
}
if (cnt != -1) break;
++offset;
}
int moveCnt = Abs(cur - N);
if (cnt == -1 || moveCnt < cnt)
cnt = moveCnt;
cout << cnt << '\n';
return 0;
}
'알고리즘 > BaekJoon' 카테고리의 다른 글
[c++] 1389번 : 케빈 베이컨의 6단계 법칙 (0) | 2022.06.02 |
---|---|
[c++] 1260번 : DFS와 BFS (0) | 2022.05.31 |
[c++] 1074번 : Z (0) | 2022.05.20 |
[c++] 1012번 : 유기농 배추 (0) | 2022.05.18 |
[c++] 1003번 : 피보나치 함수 (0) | 2022.05.18 |