반응형
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 | 31 |
Tags
- @P0
- 물채우기
- 기술면접
- 처우협의
- dfs
- compose
- 매개변수탐색
- BFS
- 6987
- 파라메트릭
- 연결요소
- 13908
- softeer
- 퇴사통보
- 백준
- 성적평가
- BOJ
- msSQL
- boj #19237 #어른 상어
- incr
- Kafka
- 백트래킹
- Docker
- OFFSET
- upper_bound
- 소프티어
- 처우산정
- 이분탐색
- 오퍼레터
- 경력
Archives
- Today
- Total
기술 블로그
배열 속 원소들 확인하기 본문
728x90
반응형
길이가 n인 배열에 1부터 n까지 숫자가 중복 없이 한 번씩 들어 있는지를 확인하려고 한다.
1부터 n까지 숫자가 중복 없이 한 번씩 들어 있는 경우 True를, 아닌 경우 False를 출력하도록 하는 프로그램을 작성하시오.
단, 배열의 길이는 100,000 이하, 배열의 원소는 1 이상 100,000 이하인 정수이다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; bool solution(vector<int> arr) { int m[100001] = { 0, }; int len = arr.size(); int min_num = 999999; int max_num = -1; sort(arr.begin(), arr.end()); for (int i = 0; i<len; i++) { ++m[arr[i]]; min_num = min(min_num, arr[i]); max_num = max(max_num, arr[i]); } for (int i = min_num; i <= max_num; i++) { if (m[i] >= 2) return false; if (m[i] == 0) return false; } return true; } int main(void) { int n = 0, x = 0; scanf("%d", &n); vector<int> v; for (int i = 0; i < n; i++) { scanf("%d", &x); v.push_back(x); } if (solution(v)) printf("True\n"); else printf("False\n"); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > 기타' 카테고리의 다른 글
Zero One Algorithm Contest 2018 (0) | 2019.01.03 |
---|---|
막대 그래프 그리기 (0) | 2018.10.27 |
길이가 N인 이진수 (0) | 2018.10.26 |
길 확인하기 (0) | 2018.09.28 |
[카카오 코드 페스티벌 2018 예선 A] 상금헌터 (0) | 2018.09.18 |