반응형
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
- Docker
- Kafka
- 성적평가
- OFFSET
- 6987
- upper_bound
- 소프티어
- boj #19237 #어른 상어
- @P0
- 백트래킹
- softeer
- BOJ
- 13908
- 경력
- msSQL
- compose
- dfs
- 이분탐색
- 기술면접
- 백준
- 오퍼레터
- 물채우기
- 파라메트릭
- 처우산정
- 처우협의
- 매개변수탐색
- BFS
- incr
- 퇴사통보
- 연결요소
Archives
- Today
- Total
기술 블로그
소수 찾기 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/42839
틀린 개수가 2개로 나오길래 어디가 틀렸나 했더니,
배열 범위를 잘못 선언했었다.
7자리 이하길래
"일십백천만십만백만.... 1,000,000"
으로 생각하여, 멍청하게 1000001으로 선언했었다.
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 63 64 65 66 67 68 69 70 71 72 | #include <iostream> #include <string> #include <string.h> #include <vector> #include <math.h> #include <algorithm> #include <set> using namespace std; int cnt = 0; bool Prime[10000000] = { false, }, use[10000000] = { false, }; set<int> sc; void prime() { for (int i = 2; i <= sqrt(10000000); i++) for (int j = 2 * i; j <= 10000000; j += i) // j = i가 아니라, j = 2 * i { if (!Prime[j]) continue; Prime[j] = false; } } void simulation(string numbers, string s) // 백트래킹 { if (!s.empty() && s.at(0) != '0') if (Prime[stoi(s)]) sc.insert(stoi(s)); for (int i = 0; i < numbers.length(); i++) if (!use[i]) { s += numbers.at(i); use[i] = true; simulation(numbers, s); s = s.substr(0, s.length() - 1); use[i] = false; } } int solution(string numbers) { int answer = 0; memset(Prime, true, sizeof(Prime)); // 일단 모두 소수라고 가정 prime(); Prime[1] = false; // 1은 소수가 아니다 simulation(numbers, ""); answer = sc.size(); return answer; } int main(void) { string input_example; cin >> input_example; cout << solution(input_example) << '\n'; return 0; } | cs |
728x90
반응형
'알고리즘 문제 > Programmers' 카테고리의 다른 글
가장 먼 노드 (0) | 2019.05.11 |
---|---|
압축 (0) | 2019.05.11 |
뉴스 클러스터링 (0) | 2019.05.11 |
이상한 문자 만들기 (0) | 2019.05.05 |
단어 변환 (0) | 2019.05.03 |