HOME (207) 썸네일형 리스트형 [Leetcode/C++] 496. Next Greater Element 1 class Solution { public: vector nextGreaterElement(vector& nums1, vector& nums2) { vector answer; for(int i = 0; i nums1[i]) {temp = *it; break;} } temp == 0 ? answer.push_back(-1) : answer.push_back(temp); } else { answer.push_back(-1); c.. [Leetcode/C++] 1021. Remove Outermost Parentheses class Solution { public: string removeOuterParentheses(string s) { int idx= 0; string answer = ""; for(int i = 0; i 1) answer.push_back(s[i]); idx--; } } return answer; } }; 그냥 O(n)으로 최대한 처리하고 싶어서 처음 괄호와 끝나는 괄호를 제외하고 모두 담도록 구현을 해보았습니다. 문제: https://leetcode.com/problems/remove-outermost-parenthes.. [백준/C++] 10828번 스택 #include #include #include using namespace std; int main() { int N, temp; cin >> N; string action; vector arr; for(int i = 0; i > action; if(action == "push") { cin >> temp; arr.push_back(temp); } else if(action == "top") { arr.empty() ? cout [백준/C++] 8958번 OX퀴즈 #include using namespace std; int main() { int N, count = 0, answer = 0; string str; cin >> N; for(int i = 0; i > str; count = 0; answer = 0; for(int j = 0; j < str.length(); j++) { if(str[j] == 'O') count++; else count = 0; answer += count; } cout [백준/C++] 5622번 다이얼 #include using namespace std; int main() { string answer = "ADGJMPTW"; string str; int count = 0; cin >> str; for(int i = 0; i < str.length(); i++) { for(int j = 0; j < answer.length(); j++) { if(str[i] < answer[j]) break; count++; } count+=2; } cout [백준/C++] 5598번 카이사르 암호 #include using namespace std; int main() { string answer; cin >> answer; for(int i = 0; i < answer.length(); i++) { answer[i] < 'D' ? answer[i]+=23 : answer[i]-=3; } cout [백준/C++] 4659번 비밀번호 발음하기 #include #include #include #include #include #include #include using namespace std; int main() { int answer = 0; while(true) { int is_vowel = 0, novowel = 0, vowel = 0, idx = 0, j = 0; string str = ""; cin >> str; if(str == "end") break; for(j = 0; j < str.length(); j++) { switch(str[j]) { case 'a' : case 'e' : case 'i' : case 'u' : case 'o' : is_vowel++; vowel++; novowel = 0; break; default : v.. [백준/C++] 1331번 그룹 단어 체커 #include using namespace std; int main() { int N; cin >> N; int answer = 0; for(int i = 0; i > str; int idx = 1, j = 0; if(str.empty()) continue; else arr[str[0] % 26]++; for(j = 1; j < str.length(); j++) { if(str[j] != str[j-1]) idx = 0; if(arr[str[j] % 26] != idx) break; else { arr[str[j] % 26]++; idx++;} } if(j == str.length()) answer++; } cout 이전 1 ··· 17 18 19 20 21 22 23 ··· 26 다음