File tree 4 files changed +92
-0
lines changed
4 files changed +92
-0
lines changed Original file line number Diff line number Diff line change 237
237
| 27 | | [ Baekjoon-1699 ์ ๊ณฑ์์ ํฉ] ( src/DP/P1699 ) | |
238
238
| 28 | | [ Baekjoon-2225 ํฉ๋ถํด] ( src/DP/P2225 ) | |
239
239
240
+ ## String
241
+
242
+ | # | โ | Problem | Note |
243
+ | :-: | :-: | :------------------------------------------------- | :----- |
244
+ | 01 | | [ Baekjoon-14425 ๋ฌธ์์ด ์งํฉ] ( ./src/String/P14425 ) | |
245
+
240
246
---
241
247
242
248
## 2020 KAKAO BLIND RECRUITMENT
Original file line number Diff line number Diff line change
1
+ package String .P14425 ;
2
+
3
+ import java .io .*;
4
+ import java .util .*;
5
+
6
+ public class Main {
7
+
8
+ static int N , M ;
9
+
10
+ public static void main (String [] args ) throws Exception {
11
+ System .setIn (new FileInputStream ("src/String/P14425/input.txt" ));
12
+ BufferedReader br = new BufferedReader (new InputStreamReader (System .in ));
13
+ StringTokenizer st = new StringTokenizer (br .readLine ());
14
+
15
+ N = Integer .parseInt (st .nextToken ());
16
+ M = Integer .parseInt (st .nextToken ());
17
+
18
+ HashSet <String > hs = new HashSet <>();
19
+ while (N -- > 0 ) hs .add (br .readLine ());
20
+
21
+ int ans = 0 ;
22
+ for (int i = 0 ; i < M ; i ++)
23
+ if (hs .contains (br .readLine ())) ans ++;
24
+
25
+ System .out .println (ans );
26
+ }
27
+ }
Original file line number Diff line number Diff line change
1
+ ## [ baekjoon-14425] ๋ฌธ์์ด ์งํฉ
2
+
3
+ ![ image] ( https://user-images.githubusercontent.com/22045163/102742413-2e8cc700-4398-11eb-8039-00a6f1aaa102.png )
4
+
5
+ ### ๋ ํจ์จ์ ์ธ ์๊ณ ๋ฆฌ์ฆ ์๊ฐํ๊ธฐ
6
+
7
+ ๋ณธ ๋ฌธ์ ๋ ๋์ ๋ฌธ์์ด์ด ๋ฌธ์์ด ์งํฉ ๋ด์ ์๋์ง ์ผ์ผ์ด ๊ฒ์ฌํด๋ณด๋ ์๋ฐ์ ์๋ค.
8
+
9
+ ์ฒ์์๋ ๋ค์๊ณผ ๊ฐ์ด ` O(N*M) ` ์ผ๋ก ํ์๋ค. ์๊ฐ ์ ํ์ด 2์ด์ด๊ณ ,
10
+ ` N ` ๊ณผ ` M ` ์ ์ต๋๊ฐ์ ` 10000 ` ์ด๊ธฐ ๋๋ฌธ์ ๋ฌธ์ ์์๋ค.
11
+
12
+ ``` java
13
+ String S = new String [N ];
14
+ for (int i = 0 ; i < N ; i++ ) S [i] = br. readLine();
15
+
16
+ int ans = 0 ;
17
+ for (int i = 0 ; i < M ; i++ ) {
18
+ String s = br. readLine();
19
+ for (int j = 0 ; j < N ; j++ ) {
20
+ if (s. equals(S [j])) ans ++ ;
21
+ }
22
+ }
23
+ ```
24
+
25
+ ์ด ๋ ๋ต์ ๋ง์์ผ๋ ์๊ฐ ํจ์จ์ด ์ข์ง ์์ ๊ฒ ๊ฐ์ ๋ค๋ฅธ ์ฝ๋๋ฅผ ์ฐธ๊ณ ํ์๊ณ ,
26
+ Java Collections์ ** HashSet** ์ ์ด์ฉํ๋ฉด ์๊ฐ ๋ณต์ก๋๋ฅผ ํฌ๊ฒ ์ค์ผ ์ ์๋ค๋ ๊ฒ์ ์๊ฒ ๋์๋ค.
27
+
28
+ ** HashSet** ์ ` Add ` , ` Contains ` ์ฐ์ฐ์ ์๊ฐ ๋ณต์ก๋๋ ๋ชจ๋ ** O(1)** ์ด๋ค.
29
+ ๋ฐ๋ผ์ ๋ค์๊ณผ ๊ฐ์ด ์ฝ๋๋ฅผ ์์ฑํ๋ฉด ๋ ์ข์ ์ฝ๋๊ฐ ๋ ์ ์๊ฒ ์ง !!
30
+
31
+ ``` java
32
+ HashSet<String > hs = new HashSet<> ();
33
+ while (N -- > 0 ) hs. add(br. readLine());
34
+
35
+ int ans = 0 ;
36
+ for (int i = 0 ; i < M ; i++ )
37
+ if (hs. contains(br. readLine())) ans ++ ;
38
+ ```
39
+
40
+ ![ image] ( https://user-images.githubusercontent.com/22045163/102742722-ec17ba00-4398-11eb-8bc9-479a07214da8.png )
41
+
42
+ ์๊ฐ ๋ณต์ก๋๋ฅผ ` 2648ms ` ์์ ` 424ms ` ๋ก ์ค์ผ ์ ์๋ค.
Original file line number Diff line number Diff line change
1
+ 5 11
2
+ baekjoononlinejudge
3
+ startlink
4
+ codeplus
5
+ sundaycoding
6
+ codingsh
7
+ baekjoon
8
+ codeplus
9
+ codeminus
10
+ startlink
11
+ starlink
12
+ sundaycoding
13
+ codingsh
14
+ codinghs
15
+ sondaycoding
16
+ startrink
17
+ icerink
You canโt perform that action at this time.
0 commit comments