반응형
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
- 6987
- dfs
- BOJ
- msSQL
- BFS
- 처우협의
- boj #19237 #어른 상어
- 연결요소
- @P0
- softeer
- 13908
- 백준
- 소프티어
- 백트래킹
- incr
- 오퍼레터
- 이분탐색
- compose
- 퇴사통보
- 처우산정
- upper_bound
- Kafka
- 물채우기
- 성적평가
- 기술면접
- 파라메트릭
- Docker
- OFFSET
- 매개변수탐색
- 경력
Archives
- Today
- Total
기술 블로그
1157번 단어 공부 본문
728x90
반응형
https://www.acmicpc.net/problem/1157
생각보다 어려웠다.
값을 비교할 때,
가장 많이 나온 값이랑 다른 값이랑 같은지를 비교했었야 했다.
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> using namespace std; char s[1000010]; // A = 65, a = 97 int alpha[123] = { 0, }; // 65 ~ 90 int main(void) { scanf("%s", s); int len = strlen(s); // 단어 길이 for (int i = 0; i < len; i++) { if ('a' <= s[i] && s[i] <= 'z') { /* 어차피 출력은 대문자이므로, 대문자 아스키 코드로 변환 */ ++alpha[s[i] - 32]; } else if ('A' <= s[i] && s[i] <= 'Z') { ++alpha[s[i]]; } } int MAX = 'A'; // 초기 int isSame = -1; int cnt = alpha['A']; // 초기 for (int i = 'A'; i <= 'Z'; i++) { if (alpha[i] != 0) // 그 알파벳의 수가 한 번이라도 나타났으면 { // 초깃값 설정 MAX = i; cnt = alpha[i]; break; // 발견했으면,바로 탈출 } } for (int i = 'A'; i <= 'Z'; i++) { if (alpha[i] == 0) continue; // 안 나온 알파벳은 무시 for (int j = i + 1; j <= 'Z'; j++) // 하나씩 비교 { if (cnt < alpha[j]) // 나온 횟수가 초깃값보다 더 많다면 { MAX = j; // 갱신 cnt = alpha[j]; // 초깃값 갱신 } } } for (int i = 'A'; i <= 'Z'; i++) { if (i == MAX || alpha[i] == 0) continue; // 위에서 구한 가장 많이 나온 아스키 코드를 제외하고 // 나머지 아스키코드(배열인덱스)일 때 같은지 비교 if (cnt == alpha[i]) // 같은 것이 있다면 { isSame = 1; break; } } if (isSame == 1) printf("?\n"); else printf("%c\n", MAX); return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
2473번 세 용액 (0) | 2018.10.11 |
---|---|
10871번 X보다 작은 수 (0) | 2018.10.10 |
15686번 치킨 배달 (0) | 2018.10.08 |
1743번 음식물 피하기 (0) | 2018.10.06 |
1427번 소트인사이드 (0) | 2018.10.04 |