-
[Python] ๋ฐฑ์ค 4358 ์ํํ (Counter)๐ป Algorithm/Python 2022. 7. 8. 19:35
๐ ๋ฌธ์
์ํํ์์ ๋๋ฌด์ ๋ถํฌ๋๋ฅผ ์ธก์ ํ๋ ๊ฒ์ ์ค์ํ๋ค. ๊ทธ๋ฌ๋ฏ๋ก ๋น์ ์ ๋ฏธ๊ตญ ์ ์ญ์ ๋๋ฌด๋ค์ด ์ฃผ์ด์ก์ ๋, ๊ฐ ์ข ์ด ์ ์ฒด์์ ๋ช %๋ฅผ ์ฐจ์งํ๋์ง ๊ตฌํ๋ ํ๋ก๊ทธ๋จ์ ๋ง๋ค์ด์ผ ํ๋ค.
์ ๋ ฅ
ํ๋ก๊ทธ๋จ์ ์ฌ๋ฌ ์ค๋ก ์ด๋ฃจ์ด์ ธ ์์ผ๋ฉฐ, ํ ์ค์ ํ๋์ ๋๋ฌด ์ข ์ด๋ฆ์ด ์ฃผ์ด์ง๋ค. ์ด๋ค ์ข ์ด๋ฆ๋ 30๊ธ์๋ฅผ ๋์ง ์์ผ๋ฉฐ, ์ ๋ ฅ์๋ ์ต๋ 10,000๊ฐ์ ์ข ์ด ์ฃผ์ด์ง๊ณ ์ต๋ 1,000,000๊ทธ๋ฃจ์ ๋๋ฌด๊ฐ ์ฃผ์ด์ง๋ค.
์ถ๋ ฅ
์ฃผ์ด์ง ๊ฐ ์ข ์ ์ด๋ฆ์ ์ฌ์ ์์ผ๋ก ์ถ๋ ฅํ๊ณ , ๊ทธ ์ข ์ด ์ฐจ์งํ๋ ๋น์จ์ ๋ฐฑ๋ถ์จ๋ก ์์์ 4์งธ์๋ฆฌ๊น์ง ๋ฐ์ฌ๋ฆผํด ํจ๊ป ์ถ๋ ฅํ๋ค.
์์ ์ ๋ ฅ 1
Red Alder
Ash
Aspen
Basswood
Ash
Beech
Yellow Birch
Ash
Cherry
Cottonwood
Ash
Cypress
Red Elm
Gum
Hackberry
White Oak
Hickory
Pecan
Hard Maple
White Oak
Soft Maple
Red Oak
Red Oak
White Oak
Poplan
Sassafras
Sycamore
Black Walnut
Willow์์ ์ถ๋ ฅ 1
Ash 13.7931
Aspen 3.4483
Basswood 3.4483
Beech 3.4483
Black Walnut 3.4483
Cherry 3.4483
Cottonwood 3.4483
Cypress 3.4483
Gum 3.4483
Hackberry 3.4483
Hard Maple 3.4483
Hickory 3.4483
Pecan 3.4483
Poplan 3.4483
Red Alder 3.4483
Red Elm 3.4483
Red Oak 6.8966
Sassafras 3.4483
Soft Maple 3.4483
Sycamore 3.4483
White Oak 10.3448
Willow 3.4483
Yellow Birch 3.4483
๐ ํ์ด
๐ฌ Code
import sys from collections import Counter input = sys.stdin.readline trees = [] cnt = 0 while True: name = input().rstrip() if not name: break trees.append(name) cnt += 1 trees = sorted(Counter(trees).items()) for i in range(len(trees)): print(trees[i][0], "{:.4f}".format(trees[i][1]/cnt*100))
๐ก Solution
์ ๋ ฅ์ ๊ฐ์๋ฅผ ๋ชจ๋ฅผ ๋ while-try-except๋ฌธ์ ์ผ์๋๋ฐ ์์ธ์ง ์ด ๋ฌธ์ ์์๋ ๊ทธ๊ฒ ์ ๋จนํ๊ธธ๋ ๊ตฌ๊ธ๋ง์ ํ์ ๋น๋ ค while-if not ์ธํธ๋ก ์ฌ์ฉํ์ต๋๋ค. ๋์ด์ input์ด ๋ค์ด์ค์ง ์์ ๋ break๋ฅผ ๊ฑธ์ด์ค๋๋ค.
input์ผ๋ก ๋ค์ด์ค๋ ๋๋ฌด ์ด๋ฆ๋ค์ trees ๋ฆฌ์คํธ์ ๋ฃ์ด์ฃผ๊ณ , Counter(trees)๋ก ๊ฐ ์ด๋ฆ์ ๋น๋๋ฅผ ์ธ์ด์ค๋๋ค. ๋ค๋ง ์ถ๋ ฅํ ๋ ๋น๋์์ด ์๋ ์ด๋ฆ ์ฌ์ ์์ผ๋ก ์ถ๋ ฅํด์ผ ํ๋ฏ๋ก ์ ๋ ฌ๋จ๊ณ๋ฅผ ๊ฑฐ์ณ์ผ ํฉ๋๋ค.
print(Counter(['hello', 'hello', 'goodbye', 'thanks'])) print(sorted(Counter(['hello', 'hello', 'goodbye', 'thanks']))) # Counter({'hello': 2, 'goodbye': 1, 'thanks': 1}) # ['goodbye', 'hello', 'thanks']
์ด๋ ๊ฒ Counter๋ฅผ ๋ฐ๋ก sorted ๊ตฌ์กฐ๋ก ๋ง๋ค์ด ๋ฒ๋ฆฌ๋ฉด key๋ง ์ ๋ ฌ๋๊ธฐ ๋๋ฌธ์
print(Counter(['hello', 'hello', 'goodbye', 'thanks']).items()) print(sorted(Counter(['hello', 'hello', 'goodbye', 'thanks']).items())) # dict_items([('hello', 2), ('goodbye', 1), ('thanks', 1)]) # [('goodbye', 1), ('hello', 2), ('thanks', 1)]
Counter.items()๋ก key, value์์ ํจ๊ป ๊ฐ์ ธ์์ sorted ๊ตฌ์กฐ๋ก ๋ง๋ค์ด์ฃผ์ด์ผ key, value์์ ํจ๊ป ์ ๋ ฌํ ์ ์์ต๋๋ค.
Counter
from collections import Counter print(Counter('hello world')) # Counter({'l': 3, 'o': 2, 'h': 1, 'e': 1, ' ': 1, 'w': 1, 'r': 1, 'd': 1})
Counter๋ฅผ ์ด์ฉํ๋ฉด ์ด์ ๊ฐ์ด ๊ฐ ์์์ ๊ฐ์๋ฅผ ์ธ๋ ๋์์ ์ฝ๊ฒ ์ํํ ์ ์์ต๋๋ค. ๋, Counter ํด๋์ค๋ ํ์ด์ฌ์ ๊ธฐ๋ณธ ์๋ฃ๊ตฌ์กฐ์ธ ์ฌ์ (dictionary)๋ฅผ ํ์ฅํ๊ณ ์๊ธฐ ๋๋ฌธ์ ์ฌ์ ์์ ์ ๊ณตํ๋ API๋ฅผ ๊ทธ๋๋ก ์ฌ์ฉํ ์ ์์ต๋๋ค.
์์์ ํํ๋ฒ
a = "example1 : {:.2f}".format(1.23456789) print(a) # example1 : 1.23 b = "example2 : {:.2f} / {:.3f}".format(1.23456789, 3.456789) print(b) # example2 : 1.23 / 3.457 c = "example3 : {0:.2f} / {1:.1f}".format(3.22521321, 10.123456) print(c) # example3 : 3.23 / 10.1 d = "example4 : {1:.2f} / {0:.1f}".format(3.22521321, 10.123456) print(d) # example4 : 10.12 / 3.2
'๐ป Algorithm > Python' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Python] ๋ฐฑ์ค 1012 ์ ๊ธฐ๋ ๋ฐฐ์ถ (BFS) (0) 2022.07.08 [Python] ๋ฐฑ์ค 16206 ๋กค์ผ์ดํฌ (Greedy) (0) 2022.07.08 [Python] ๋ฐฑ์ค 19637 IF๋ฌธ ์ข ๋์ ์จ์ค (Binary Search) (0) 2022.07.08 [Python] ๋ฐฑ์ค 16953 A โ B (Greedy/BFS) (0) 2022.07.08 [Python] ๋ฐฑ์ค 15787 ๊ธฐ์ฐจ๊ฐ ์ด๋ ์ ํค์น๊ณ ์ํ์๋ฅผ (๊ตฌํ) (0) 2022.07.08