알파벳 개수2 [BOJ]10808번: 알파벳 개수(c++) https://www.acmicpc.net/problem/10808 10808번: 알파벳 개수단어에 포함되어 있는 a의 개수, b의 개수, …, z의 개수를 공백으로 구분해서 출력한다.www.acmicpc.net 방법 1: 라이브러리 사용X12345678910111213141516171819202122232425262728#include iostream>#include vector> using namespace std; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); string s; cin >> s; vectorint> alpha(26, 0); for (int i = 0; i s.size.. 2020. 4. 24. [BOJ]10809번: 알파벳 찾기(c++) https://www.acmicpc.net/problem/10809 10809번: 알파벳 찾기각각의 알파벳에 대해서, a가 처음 등장하는 위치, b가 처음 등장하는 위치, ... z가 처음 등장하는 위치를 공백으로 구분해서 출력한다. 만약, 어떤 알파벳이 단어에 포함되어 있지 않다면 -1을 출력한다. 단어의 첫 번째 글자는 0번째 위치이고, 두 번째 글자는 1번째 위치이다.www.acmicpc.net 방법 1: 라이브러리 사용X1234567891011121314151617181920212223242526272829303132#include iostream>#include vector> using namespace std; int main() { ios_base::sync_with_stdio(0);.. 2020. 4. 24. 이전 1 다음