본문 바로가기

스터디/알고리즘4

[ 프로그래머스 ] 전화번호 목록 사용 언어 : C++ 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 #include #include #include #include using namespace std; bool length_sort(const string a, const string b) { return a.length() 2020. 2. 11.
[ 프로그래머스 ] 완주하지 못한 선수 사용 언어 : C++ 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 #include #include using namespace std; string solution(vector participant, vector completion) { vector::iterator temp; string answer = ""; for (auto it = participant.begin(); it != participant.end();) { temp = find(completion.begin(), completion.end(), *it); if (temp != completion.end()) { completion.erase(.. 2020. 2. 11.
[ 프로그래머스 ] [1차] 추석 트래픽 사용 언어 : C++ 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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 #include #include #include using namespace std; vector Split(string str, char delimiter) { vector internal; stringstream ss(str); string temp; while (ge.. 2020. 2. 6.
[ 프로그래머스 ] 종이 접기 사용 언어 : C++ 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 31 32 33 34 35 36 37 38 39 40 41 42 #include #include #include using namespace std; vector solution(int n) { vector temp; vector answer; for (int i = 0; i 1 { temp.clear(); int size = answer.size();// 본래 크기 for (int j = 0; j 2020. 2. 4.