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
- Unreal Engine 5
- VR
- 자료구조
- 그리디 알고리즘
- 그래프
- 문자열
- BFS
- 백준
- XR Interaction Toolkit
- 트리
- 백트래킹
- 우선순위 큐
- 구현
- 스택
- 다이나믹 프로그래밍
- 유니온 파인드
- 브루트포스
- 정렬
- 누적 합
- ue5
- 다익스트라
- 재귀
- 수학
- c++
- DFS
- 유니티
- Team Fortress 2
- 시뮬레이션
- 투 포인터
- 알고리즘
Archives
- Today
- Total
1일1알
백준 1515번 수 이어 쓰기 C++ 본문
처음 주어진 문자열을 추적하는 포인터를 하나 두고 1부터 늘려가면서 비교하면서 포인터가 문자열의 끝을 넘어가면 그 수를 출력하였다.
#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 <unordered_map>
#include <unordered_set>
#include <iomanip>
using namespace std;
using ll = long long;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
string str;
cin >> str;
int num = 1;
int idx = 0;
while (true) {
string comp = to_string(num);
for (int i = 0; i < comp.length(); i++) {
if (str[idx] == comp[i]) idx++;
if (idx == str.length()) break;
}
if (idx == str.length()) break;
num++;
}
cout << num;
};
'알고리즘' 카테고리의 다른 글
백준 1544번 사이클 단어 C++ (0) | 2022.05.02 |
---|---|
백준 1531번 투명 C++ (0) | 2022.04.30 |
백준 1417번 국회의원 선거 C++ (0) | 2022.04.28 |
백준 1421번 나무꾼 이다솜 C++ (0) | 2022.04.27 |
백준 1385번 벌집 C++ (0) | 2022.04.26 |