| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- using value
- changing value
- FOR ALL ENTRIES IN
- Data Browser
- NEW-PAGE PRINT ON
- SAP GUI
- APPENDING
- qfieldname
- DP - 무한배낭
- BOJ_Gold
- transporting
- 필드카탈로그
- 날짜 계산 함수
- DP - 유한배낭
- Dictionary Search Help
- READ TABLE
- SAP
- MONAT_F4
- cfieldname
- batch job
- ABAP
- ALV Output Setting
- DP - 무한배낭(순서)
- CTS #CTS 이관 #SAP #ABAP
- ZPL
- Union-Find
- boole_d
- APPENDING CORRESPONDING
- SM36
- java
- Today
- Total
목록Algorithm - Java (41)
Jin's Library
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_1717 { 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 voi..
package BOJ.Silver;import java.util.*;// 실버 3 풍선 터뜨리기public class BOJ_2346 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int N = sc.nextInt(); List balloon = new ArrayList(); StringBuffer answer = new StringBuffer(); for(int i=1;i= N) cursor = 0; else if(cursor
import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.StringTokenizer;public class BOJ_1976 { 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(St..
package BOJ.Silver;import java.util.*;// 실버 5 크로아티아 알파벳// Stringpublic class BOJ_2941 { public static void main(String[] args) { int answer = 0, idx = 0; Scanner sc = new Scanner(System.in); String str = sc.next(), tmp = ""; String[] cro = {"dz=","c=","c-","d-","lj","nj","s=","z="}; while(true){ int t = str.length()-1, min = str.length()-1; idx = ..
package BOJ.Silver;import java.io.BufferedReader;import java.io.InputStreamReader;import java.util.*;// 실버 5 회사에 있는 사람// HashMappublic class BOJ_7785 { public static void main(String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(br.readLine()); StringBuilder sb = new StringBuilder(); St..