-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolution_1194.java
More file actions
65 lines (65 loc) · 1.32 KB
/
Solution_1194.java
File metadata and controls
65 lines (65 loc) · 1.32 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//package baekjoon_1194;
//
//import java.util.*;
//import java.io.*;
//
//public class Solution_1194 {
//
// static int[] alpha_key= {0,0,0,0,0,0};
// static class Point {
// int x,y,count;
// Point(int x, int y,int count){
// this.x=x;
// this.y=y;
// this.count=count;
// }
// }
//
// public static void main(String[]args) throws IOException {
//
// BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
// StringTokenizer st;
// st=new StringTokenizer(br.readLine());
// int n,m;
//
// n=Integer.parseInt(st.nextToken());
// m=Integer.parseInt(st.nextToken());
//
// char [][] map= new char[m][n];
// Point start_point = null;
//
// for(int i=0;i<m;i++) {
// String str=br.readLine();
//
// for(int j=0;j<n;j++) {
// map[i][j]=str.charAt(j);
// if(map[i][j]=='0') {
// start_point= new Point(i,j,0);
// }
// }
// }
//
// bfs(start_point,map);
// }
//
// public static void map_key(char c){
// if(c>='a'&&c<='f') {
// alpha_key[c-'a']++;
// }
// else if(c>='A'||c<='F'){
// if(alpha_key[c-'A']==0) {
//
// }
// else alpha_key[c-'A']--;
// }
// }
//
// public static void bfs(Point start_point, char[][]map) {
// Queue<Point> que = new LinkedList<>();
// int []dx= {1,-1,0,0};
// int []dy= {0,0,1,-1};
//
// que.offer(start_point);
//
// }
//}