def solution(survey, choices): answer = '' l = len(survey) mbti = ['R','T','C','F','J','M','A','N'] result = [0]*4 idx = 0 for i in range(l): mul =1 if survey[i][0]=='R' or survey[i][0]=='T': if survey[i][0]=='T': mul*=-1 idx = 0 elif survey[i][0]=='C' or survey[i][0]=='F': if survey[i][0]=='F': mul*=-1 idx = 1 elif survey[i][0]=='J' or survey[i][0]=='M': if survey[i][0]=='M': mul*=-1 idx = 2 el..
https://www.acmicpc.net/problem/1189 1189번: 컴백홈 첫 줄에 정수 R(1 ≤ R ≤ 5), C(1 ≤ C ≤ 5), K(1 ≤ K ≤ R×C)가 공백으로 구분되어 주어진다. 두 번째부터 R+1번째 줄까지는 R×C 맵의 정보를 나타내는 '.'과 'T'로 구성된 길이가 C인 문자열이 주어진다 www.acmicpc.net r, c, k = map(int,input().split()) graph = [str(input()) for _ in range(r)] v = [[0]*c for _ in range(r)] ans=0 #상하좌우 방향 dx = [-1,1,0,0] dy = [0,0,-1,1] def dfs(x,y,direct): global ans # 종료위치이고 거리가 k일 ..
https://www.acmicpc.net/problem/17086 17086번: 아기 상어 2 첫째 줄에 공간의 크기 N과 M(2 ≤ N, M ≤ 50)이 주어진다. 둘째 줄부터 N개의 줄에 공간의 상태가 주어지며, 0은 빈 칸, 1은 아기 상어가 있는 칸이다. 빈 칸과 상어의 수가 각각 한 개 이상인 입력만 www.acmicpc.net from collections import deque n, m = map(int,input().split()) g = [list(map(int,input().split())) for _ in range(n)] #8방향 way = [[-1,-1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[1,-1],[0,-1]] ans = 0 #큐 생성 q = deque..
https://school.programmers.co.kr/learn/courses/30/lessons/77484 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(lottos, win_nums): answer = [] plus = 0 cnt = 0 dic = {} # 맞춘 개수에 따른 순위 저장 for i in range(7): if i
https://www.acmicpc.net/problem/1062 1062번: 가르침 첫째 줄에 단어의 개수 N과 K가 주어진다. N은 50보다 작거나 같은 자연수이고, K는 26보다 작거나 같은 자연수 또는 0이다. 둘째 줄부터 N개의 줄에 남극 언어의 단어가 주어진다. 단어는 영어 소문 www.acmicpc.net import sys n, k = map(int, input().split()) arr = [] # anta tica에 들어가는 알파벳 cur = ['a', 'n', 't', 'i', 'c'] #cur을 제외한 알파벳 alphabet = [ 'b', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm', 'o', 'p', 'q', 'r', 's', 'u', 'v', ..
https://www.acmicpc.net/problem/1806 1806번: 부분합 첫째 줄에 N (10 ≤ N < 100,000)과 S (0 < S ≤ 100,000,000)가 주어진다. 둘째 줄에는 수열이 주어진다. 수열의 각 원소는 공백으로 구분되어져 있으며, 10,000이하의 자연수이다. www.acmicpc.net n,s = map(int, input().split()) arr = list(map(int,input().split())) #투 포인터 사용 start,end = 0 ,0 sum = 0 len = 1e9 for start in range(n): #sum이 s보다 작거나 n이 end보다 크면, end+1(다음 원소를 더해줌) while sum < s and end=s이면 len값을 갱..
https://school.programmers.co.kr/learn/courses/30/lessons/1844 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr from collections import deque def solution(maps): answer = 0 n = len(maps) m = len(maps[0]) v = [[0]*m for _ in range(n)] move= [[-1,0],[1,0],[0,1],[0,-1]] def bfs(): q = deque() q.append([0,0,1]) while q: x,y,depth = q.popl..
https://school.programmers.co.kr/learn/courses/30/lessons/81301 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr def solution(s): answer = 0 dic = {} dic[0] ='zero' dic[1]='one' dic[2]='two' dic[3]='three' dic[4]='four' dic[5]='five' dic[6]='six' dic[7]='seven' dic[8]='eight' dic[9]='nine' for i in range(0,10): s = s.replace(dic[i],st..
https://www.acmicpc.net/problem/12869 12869번: 뮤탈리스크 1, 3, 2 순서대로 공격을 하면, 남은 체력은 (12-9, 10-1, 4-3) = (3, 9, 1)이다. 2, 1, 3 순서대로 공격을 하면, 남은 체력은 (0, 0, 0)이다. www.acmicpc.net n = int(input()) a = list(map(int,input().split())) scv = [0]*3 for i in range(n): scv[i] = a[i] result=1e9 def dfs(x,cnt): global result # 체력순으로 정렬 x.sort() if x[0]
- Total
- Today
- Yesterday
- 다이나믹 프로그래밍
- 프리프로젝트
- 프로그래머스
- dfs
- dictionary
- BFS
- 회고
- 프로젝트
- 기술면접
- SEB 43
- seb
- til
- 개인 프로젝트
- 브루드포스
- 감정일기장
- 코드스테이츠
- 백준
- 프론트엔드
- SEB43
- 스택오버플로우
- SEB43기
- SEB 43기
- 감정 일기장
- Python
- 코테
- 인적성
- React quill
- useContext
- Redux
- 그리디 알고리즘
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |