일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오손데이터읽기
- command not found
- 백준
- Security
- 1967번
- 의미와 무의미의 경계에서
- 백준 1253번
- 트랜잭션 관리
- UActor
- 2단계로킹
- 셰그먼트트리
- FBX
- 1759번
- 1253번
- Linux
- UnrealMP
- 언리얼 커스텀 플러그인
- 데이터베이스 배움터
- OS
- objtofbx
- 민겸수
- SQL
- C++
- 5639
- hackerank
- Unreal
- 비재귀셰그먼트
- 실습
- 언리얼 플러그인
- oracle
- Today
- Total
목록코딩 인터뷰/Greedy (2)
fatalite
문제 문제 난이도 : 실버 2 문제 태그 : 그리디, 구현 문제 풀이 #include #include #include #include #include using namespace std; int main() { //Input string InputString; cin >> InputString; //Find Min string q = ""; string p = ""; int Mcount = 0; for (int i = 0; i < InputString.size(); ++i) { if (InputString[i] == 'K') { if (Mcount != 0) { string Tmp = ""; Tmp.push_back('1'); for (int j = 0; j < Mcount - 1; ++j) { Tmp...
문제 문제 난이도 : 실버 2 문제 분류 : 문자열, 그리디 문제 풀이 #include #include #include #include #include #include #include #include #include using namespace std; //Global Variable //Initializing for Optimization void Init() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); } int main() { Init(); //Input string InputString; cin >> InputString; //Main vector Nums; string Tmp; for (int i = 0; i < InputStri..