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
- 그래프
- 누적 합
- 시뮬레이션
- 투 포인터
- 그리디 알고리즘
- 다익스트라
- 알고리즘
- XR Interaction Toolkit
- Team Fortress 2
- 유니티
- 정렬
- 스택
- 재귀
- BFS
- Unreal Engine 5
- c++
- 백트래킹
- 구현
- DFS
- ue5
- VR
- 브루트포스
- 우선순위 큐
- 수학
- 문자열
- 유니온 파인드
- 다이나믹 프로그래밍
- 트리
- 자료구조
- 백준
Archives
- Today
- Total
1일1알
백준 16139번 인간-컴퓨터 상호작용 C++ 본문
https://www.acmicpc.net/problem/16139
알파벳별로 누적합을 저장해서 풀었다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
vector<vector<int>> accSum;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
cin >> str;
accSum = vector<vector<int>>(26, vector<int>(str.length(), 0));
char firstC = str[0];
accSum[firstC - 'a'][0] = 1;
for (int i = 1; i < str.length(); i++) {
int idx = str[i] - 'a';
for (int j = 0; j < 26; j++) {
accSum[j][i] = accSum[j][i - 1];
if (idx == j) accSum[j][i]++;
}
}
int q;
cin >> q;
for (int i = 0; i < q; i++) {
char c;
int l, r;
cin >> c >> l >> r;
int idx = c - 'a';
int ans;
if (l == 0) {
ans = accSum[idx][r];
}
else {
ans = accSum[idx][r] - accSum[idx][l - 1];
}
cout << ans << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 2992번 크면서 작은 수 C++ (0) | 2022.12.04 |
---|---|
백준 21772번 가희의 고구마 먹방 C++ (0) | 2022.12.03 |
백준 17390번 이건 꼭 풀어야 해! C++ (0) | 2022.11.30 |
백준 13022번 늑대와 올바른 단어 C++ (0) | 2022.11.29 |
백준 22252번 정보 상인 호석 C++ (0) | 2022.11.27 |