| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- DP - 유한배낭
- APPENDING CORRESPONDING
- transporting
- 날짜 계산 함수
- READ TABLE
- ZPL
- BOJ_Gold
- cfieldname
- SAP GUI
- boole_d
- Dictionary Search Help
- Data Browser
- NEW-PAGE PRINT ON
- DP - 무한배낭(순서)
- CTS #CTS 이관 #SAP #ABAP
- FOR ALL ENTRIES IN
- ABAP
- ALV Output Setting
- SM36
- DP - 무한배낭
- qfieldname
- SAP
- changing value
- java
- APPENDING
- MONAT_F4
- 필드카탈로그
- Union-Find
- batch job
- using value
- Today
- Total
목록Algorithm - Java (41)
Jin's Library
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;import java.util.Arrays;public class BOJ_1931 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); int s = 0, e = 0, cnt = 0, last = 0; int[][] meetin..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.Stack;public class BOJ_4949 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb = new StringBuilder(); String line; String result = "yes"; while ((line = br.readLine()) != null ) { ..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.Stack;public class BOJ_10799 { public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); char[] N = br.readLine().toCharArray(); Stack sk = new Stack(); char last = ' '; boolean flag = false; int iron..
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_1043 { static int[] parent; static int find(int x){ if(parent[x] == x) return x; return parent[x] = find(parent[x]); } static void union(int a, int b){ a = find(a); b = find(b); if(a != b) parent[b] = a; } public static void mai..
import java.io.BufferedReader;import java.io.InputStreamReader;public class BOJ_10775 { static int[] parent; static int find(int x){ if(parent[x] == x) return x; return parent[x] = find(parent[x]); } static void union(int a, int b){ a = find(a); b = find(b); if(a != b) parent[b] = a; } public static void main(String[] args) throws Exce..