일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- intent
- Android
- activity
- 두 동전
- Jenknis
- IntelliJ
- 프로그래머스
- mysql
- ubuntu
- 백준
- service
- 16197
- 제어반전
- spring
- 데이터
- 단축키
- goland
- vscode
- 큐빙
- git
- 안드로이드
- broadcastreceiver
- 알고리즘
- 데이터전달
- Java
- insert
- 17837
- data
- Algorithm
- github
- Today
- Total
목록전체 글 (87)
해보자
maven 패키징한 파일을 실행하는 중에 `*.jar에 기본 Manifest속성이 없습니다.`라는 에러를 만났을 때. plugin에 manifest을 포함해야 한다. org.apache.maven.plugins maven-jar-plugin 3.1.0 true HelloWorld 테스트한 파일의 구조는 아래와 같다. 다시 아래 명령으로 실행하면 정상적으로 jar파일이 실행된다. java -jar .\\target\\HelloWorld-1.0-SNAPSHOT.jarReference https://wikidocs.net/18338 https://pythonq.com/so/java/1237
#include using namespace std; int N; int main() { cin >> N; int child, parent; int num = 0; int i = 0; bool flag = true; while(flag){ num++; for (child = 1, parent = num; child = N) { flag = false; break; } } } if (num%2 == 0) cout
#include #include #include #include #include #define INF 98765421 using namespace std; struct pos { int y, x; bool operator < (const pos &rhs) const { bool b = y < rhs.y || (y == rhs.y && x < rhs.x); return (b); } }; int N, M; char board[21][21]; int dy[4] = {1,0,0,-1}; int dx[4] = {0,1,-1,0}; int min_cnt = INF; vector coins; map m; void dfs(pos coin1, pos coin2, int move_cnt) { bool flag1 = fal..
#include using namespace std; bool sosu[1000001] = { false }; int M, N; int main() { cin >> M >> N; for (int i = 2; i
#include #include #include #include using namespace std; const int CASE = 10; const int END = 99; //goal struct Target{ int pos; int dir; }; vector square[4]; Target target[4] = { 0 }; // 말의 위치 int dice[10] = { 0 }; int maxVal = 0; int idx = 1; void dfs(vector res) { if( res.size() == CASE ) { int total = res[0] + res[1] + res[2] + res[3] + res[4] + res[5] + res[6] + res[7] + res[8] + res[9]; if..
#include using namespace std; int N, M; int map[20][20]; int main() { int dice[6] = { 0 }; int t_dice[6] = { 0 }; int diceMap[4][6] = { { 4, 2, 1, 6, 5, 3}, { 3, 2, 6, 1, 5, 4}, { 5, 1, 3, 4, 6, 2}, { 2, 6, 3, 4, 1, 5} }; pair dir[4] = { {0,1}, {0,-1} ,{-1,0}, {1,0} }; int x, y, K; // 입력 cin >> N >> M >> y >> x >> K; for (int i = 0; i > map[i][j]; for..
#include #include #include #include using namespace std; typedef struct pos { int pid; int did; }Pos; typedef struct plane{ char d[9]; // 9개의 점 }Plane; Plane cube[6];// 6개의 면. // 위 - 0 - 흰 & 아래 - 1- 노 & 앞 - 2 - 빨 & 뒤 - 3 - 오 & 왼 - 4 - 초 & 오 - 5 - 파 Pos dat[6][12] = { {{3,7},{3,8},{3,9},{5,1},{5,4},{5,7},{2,3},{2,2},{2,1},{4,9},{4,6},{4,3}}, // 위 {{2,7},{2,8},{2,9},{5,9},{5,6},{5,3},{3,3},{3,2},{..
문제 포인트 각 색깔별로 어떤 행동을 취하는지? BLUE : 벽과 같은 역할, 방향 변경(변경후에도 문제가 있으면 방향만 변경한 상태로 둠) 벽에 대한 함수를 만들고 BLUE에 대해서도 동일하게 처리하자 RED : 뒤집어줌 reverse WHITE : 가만히 이동할 타겟의 위에 얹어진 타겟과 함께 이동한다. iterator, find 소스코드 #include #include #include #include #define WHITE 0 #define RED 1 #define BLUE 2 using namespace std; struct target { int y, x; int d; }; int N, K; int board[13][13]; target targets[11]; vector tv[13][13];..