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 | 31 |
Tags
- 자료구조 목차
- 3273
- 탄막 스킬 범위
- 원형
- 2020 KAKAO BLIND RECRUITMENT
- 유니티
- 윈도우
- 수 만들기
- 마우스 따라다니기
- 알고리즘 목차
- 영상 프레임 추출
- 18249
- 백준
- 그리디알고리즘
- 단어 수학
- 걷는건귀찮아
- c#
- 토글 그룹
- 우분투
- SWEA
- AI Hub
- 탄막 이동
- 강의실2
- 3344
- MySQL
- 회의실 배정
- 문자열 압축
- mysqld.sock
- 탄막
- 알고리즘
Archives
- Today
- Total
와이유스토리
[문자열] 프로그래머스 개인정보 수집 유효기간 C++, Python 본문
https://school.programmers.co.kr/learn/courses/30/lessons/150370
#include <string>
#include <vector>
#include <unordered_map>
using namespace std;
vector<int> solution(string today, vector<string> terms, vector<string> privacies) {
vector<int> answer;
unordered_map<char, int> mp;
for(auto t : terms) mp[t[0]] = stoi(t.substr(2, t.length() - 1));
int year = stoi(today.substr(0, 4));
int month = stoi(today.substr(5, 7));
int date = stoi(today.substr(8, 10));
int num = year * 12 * 28 + month * 28 + date;
for(int i=0; i<privacies.size(); i++) {
int y = stoi(privacies[i].substr(0, 4));
int m = stoi(privacies[i].substr(5, 7));
int d = stoi(privacies[i].substr(8, 10));
char t = privacies[i][11];
int n = y * 12 * 28 + m * 28 + d + mp[t] * 28 - 1;
if (n < num) answer.push_back(i+1);
}
return answer;
}
#include <string>
#include <vector>
#include <unordered_map>
#include <sstream>
using namespace std;
vector<int> solution(string today, vector<string> terms, vector<string> privacies) {
vector<int> answer;
unordered_map<char, int> mp;
for(auto t : terms) {
stringstream ss(t);
char type;
int period;
ss >> type >> period;
mp[type] = period;
}
int year = stoi(today.substr(0, 4));
int month = stoi(today.substr(5, 7));
int date = stoi(today.substr(8, 10));
for(int i=0; i<privacies.size(); i++) {
int y = stoi(privacies[i].substr(0, 4));
int m = stoi(privacies[i].substr(5, 7));
int d = stoi(privacies[i].substr(8, 10));
char t = privacies[i][11];
m += mp[t];
d--;
if (m > 12) {
y += m/12;
m = m%12;
}
if (d == 0) {
m--;
d = 28;
}
if (m == 0) {
m = 12;
y--;
}
if (y < year) answer.push_back(i+1);
else if (y == year){
if (m < month) answer.push_back(i+1);
else if (m == month) {
if (d < date) answer.push_back(i+1);
}
}
}
return answer;
}
def solution(today, terms, privacies):
answer = []
period = int(today[2:4])*12*28+int(today[5:7])*28+int(today[8:10])
dic = {i[0] : int(i[2:]) for i in terms}
for i, p in enumerate(privacies):
comp = int(p[2:4])*12*28+int(p[5:7])*28+int(p[8:10])
if comp+dic[p[-1]]*28 <= period:
answer.append(i+1)
return answer
'코딩테스트 > 문자열' 카테고리의 다른 글
[문자열] 프로그래머스 주차 요금 Python (0) | 2023.01.21 |
---|---|
[문자열] 프로그래머스 시저 암호 Java (0) | 2022.12.16 |
[문자열] 프로그래머스 후보키 Python (0) | 2022.03.03 |
[문자열, 이진탐색] 프로그래머스 순위 검색 Python (0) | 2022.02.04 |
[딕셔너리] 프로그래머스 오픈채팅방 Python (0) | 2022.02.04 |
Comments