본문 바로가기

분류 전체보기

14888번 연산자 끼워넣기 백준 BOJ #include#includeusing namespace std;int N, arr[11],i,pl,minu,mul,divi,mn=1000000001,mx=-1000000001,cnt,result;void calc(int cnt, int result, int pl, int minu, int mul, int divi) {if (cnt == N) { //연산을 다 했다면, 10억,-10억과 비교해서 최대 최소값 구함mx=max(mx, result);mn=min(mn, result);return;}//cnt로 횟수를 세며 계산 결과에 각 연산자로 피연산자를 연산. 사용한 연산자 개수 하나 줄이기//각 cnt에서 모든 경우를 따짐if (pl) calc(cnt + 1, result + arr[cnt], pl - ..
백준 2589번 보물섬 https://www.acmicpc.net/problem/2589 #include#include#include using namespace std;queue qx;queue qy;int height, width, i, j, map[51][51], len[51][51], mx, fx[4] = {0,1,0,-1}, fy[4] = { -1,0,1,0 },tmpX,tmpY,x,y;bool visited[51][51];char alpha; void bfs(int i, int j){visited[i][j] = true;qx.push(i); qy.push(j);while (!qx.empty() && !qy.empty()) {tmpX = qx.front(); qx.pop();tmpY = qy.front(); qy.po..
논리에 관해 유용한 사이트 논리 기호 http://rigvedawiki.net/w/%EC%88%98%EB%A6%AC%20%EB%85%BC%EB%A6%AC%ED%95%99 논리학 용어 http://www.aistudy.co.kr 또는 http://www.aistudy.co.kr/logic/logic_term.htm
청와대 청원 링크 https://www1.president.go.kr/petitions/174292?navigation=best-petitions
초간단 python BFS Breadth First Search 너비 우선 탐색 graph={ 1:[2,3], 2:[1,4,5,7], 3:[1,5,9], 4:[2,6], 5:[2,3,7,8], 6:[4], 7:[5,2], 8:[5], 9:[3], } def BFS(graph,root): visited=[] queue=[root] while queue:#while queue is not empty n = queue.pop(0) if n not in visited:#if n is not in visited list. visited.append(n)#put the n to the visited list. for i in graph[n]:#the numbers i connected with n if i not in visited:#i is not in visited list. queue.a..
내가 한 일들 2006.2~ 운동을 꾸준히 하고 있다.2013~ 레오 동아리에서 토론을 하고 친목을 다진다.2014.4~2016.1 인천국제공항에서 의경 근무2016.1 생동성 알바 - 신체검사 하고 며칠 누워서 약먹고 피뽑음2016.1 전단지 알바 - 아파트 돌면서 전단지 붙임. 경비 아저씨가 쫓아와서 기지를 발휘해 도망쳐나옴2016.4 근로장학생 - 교내에 있는 입주 기업에 가서 홈페이지에 정보 올리는 잡일 함2016.5 레오 엔티2016.여름 국립중앙 과학관에서 아이디어 지원금 받아서 시제품 제작2016.8 러시아 헝가리 체코 등 동유럽 여행 + 부다왕궁 언덕에서 내려오다가 넘어져 무릎이 반으로 쪼개짐.2016.9~2016 창조경제타운(현 아이디어 마루)에서 지원받아 아이디어 제품 특허 출원을 위해 멘토링 받음...
가만 생각해보면 참 이상한 출석 교수님은 30분이상 늦으면 그낭 집에서 쉬라고 한다.수업에 와도 지각처리가 아닌 결석 처리가 되니까 그냥 쉬라고.수업에 출석하러 나오나?그러는 애들도 많이 있긴 하다.
Can not access the server. Tizen project, it does not work. Local project not for tizen. It works well.