반응형
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
- 연결요소
- BOJ
- OFFSET
- BFS
- @P0
- 경력
- boj #19237 #어른 상어
- 13908
- 소프티어
- 물채우기
- 백트래킹
- 백준
- msSQL
- incr
- 성적평가
- dfs
- Kafka
- upper_bound
- Docker
- 오퍼레터
- softeer
- 매개변수탐색
- 기술면접
- compose
- 처우산정
- 처우협의
Archives
- Today
- Total
기술 블로그
16968번 차량 번호판 1 본문
728x90
반응형
https://www.acmicpc.net/problem/16968
수학 문제이다.
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 | #include <iostream> #include <queue> #include <stack> #include <cstdio> #include <vector> #include <cstring> #include <string> #include <math.h> #include <algorithm> #include <map> #include <set> #include <sstream> #include <tuple> #pragma warning(disable:4996) #pragma comment(linker, "/STACK:336777216") using namespace std; string s; int calc() { int ret = 1, c = 26, d = 10; for (int i = 0; i < s.length(); i++) { if (s.at(i) == 'c') { if (i - 1 >= 0 && s.at(i - 1) == s.at(i)) --c; ret *= c; } if (s.at(i) == 'd') { if (i - 1 >= 0 && s.at(i - 1) == s.at(i)) --d; ret *= d; } c = 26; d = 10; } return ret; } int main(void) { cin >> s; cout << calc() << '\n'; return 0; } | cs |
728x90
반응형
'알고리즘 문제 > BOJ' 카테고리의 다른 글
16953번 A → B (0) | 2019.04.22 |
---|---|
16969번 차량 번호판 2 (0) | 2019.04.22 |
16973번 직사각형 탈출 (0) | 2019.04.22 |
2252번 줄 세우기 (0) | 2019.04.21 |
16971번 배열 B의 값 (0) | 2019.04.21 |