Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
more
Archives
Today
Total
관리 메뉴

main

[백준 - 2675번] 문자열 반복 본문

Algorithm

[백준 - 2675번] 문자열 반복

1984 2022. 1. 22. 17:37
  • 너무 복잡하게 짰다. 2차원 배열 활용할 수 있을 듯
  • vector subscript out of range

 

#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main(void)
{
	int case_n;
	cin >> case_n;
	vector<int> num_v;
	vector<string> str_v;

	for (int i = 0; i < case_n; i++)
	{
		int num;
		string str;
		cin >> num >> str;
		num_v.push_back(num);
		str_v.push_back(str);
	}

	for (int i = 0; i < case_n; i++)
	{
		string result;

		for (char& c : str_v.at(i))
		{
			for (int j = 0; j < num_v.at(i); j++)
			{
				result += c;
			}
		}
		cout << result << endl;
	}

	return 0;
}

 

[참고 자료]

728x90

'Algorithm' 카테고리의 다른 글

[백준 - 10818번] 최소, 최대  (0) 2022.01.22
[백준 - 1018번] 체스판 다시 칠하기  (0) 2022.01.22
[백준 - 2577번] 숫자의 개수  (0) 2022.01.22
[백준 - 2562번] 최댓값  (0) 2022.01.22
[백준 - 1157번] 단어 공부  (0) 2022.01.21
Comments