Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 라인트레이서
- queue
- directx
- html
- 아두이노 컴파일러
- 자료구조
- Deque
- 아두이노 소스
- C언어
- 컴퓨터 그래픽스
- LineTracer
- set
- WinAPI
- Visual Micro
- c++
- Algorithm
- 운영체제
- stl
- list
- Stack
- Array
- 시스템프로그래밍
- Arduino
- priority_queue
- 통계학
- 수광 소자
- 아두이노
- vector
- arduino compiler
- map
Archives
- Today
- Total
Kim's Programming
1946. 간단한 압축 풀기 본문
1946. 간단한 압축 풀기
풀이 방법
<코드>
#include<iostream> using namespace std; int main(int argc, char** argv) { int test_case; int T; cin >> T; for (test_case = 1; test_case <= T; ++test_case) { int count{ 0 }; int index{ 0 }; std::cin >> count; char* result = new char[(count * 10) + 1]{ 0, }; for (int i = 0; i < count; i++) { char str; int strCount; std::cin >> str >> strCount; for (int i = 0; i < strCount; i++) { result[index] = str; index++; } } std::cout << "#" << test_case << "\n";// << a << " " << b << " " << c << " " << d << " " << e << "\n"; for (int i = 0; i < index / 10; i++) { for (int j = 0; j < 10; j++) std::cout << result[i * 10 + j]; std::cout << "\n"; } for (int i = (10 * (index / 10)); i < index; i++) std::cout << result[i]; std::cout << "\n"; } return 0;//정상종료시 반드시 0을 리턴해야합니다. }
'SW ExpertAcademy > D2' 카테고리의 다른 글
1954. 달팽이 숫자 (0) | 2018.12.01 |
---|---|
1948. 날짜 계산기 (0) | 2018.12.01 |
1945. 간단한 소인수분해 (0) | 2018.12.01 |
1940. 가랏! RC카! (0) | 2018.12.01 |
1928. Base64 Decoder (0) | 2018.12.01 |