반응형
Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준
- neo4j 스키마 정의
- 알고리즘
- 백준 2470
- GET REQUESTS
- 플로이드워셜
- pandas-profiling
- cs50
- nodemon babel
- gensim
- 첫서버
- 텍스트전처리
- gensim_models
- 그랜빌의 법칙
- BFS
- 백준 7795
- 파이썬
- spring-boot3
- UnsatisfiedDependencyException
- 투포인터
- express
- 백준 회전초밥
- neo4j
- neo4j 인덱스 사용
- PREFECT
- spring-boot2
- 워드 임베딩
- gensim size
- neo4j 제약조건
- Sequenial
Archives
- Today
- Total
목록백준 7795 (1)
정리정돈
[백준 7795] 먹을 것인가 먹힐 것인가 (Python)
https://www.acmicpc.net/problem/7795 7795번: 먹을 것인가 먹힐 것인가 심해에는 두 종류의 생명체 A와 B가 존재한다. A는 B를 먹는다. A는 자기보다 크기가 작은 먹이만 먹을 수 있다. 예를 들어, A의 크기가 {8, 1, 7, 3, 1}이고, B의 크기가 {3, 6, 1}인 경우에 A가 B를 먹을 www.acmicpc.net 나의 풀이 import sys input = sys.stdin.readline t = int(input()) for _ in range(t): n, m = map(int,input().split()) a = map(int,input().split()) b = map(int,input().split()) a = sorted(a) b = sorted..
알고리즘/백준
2022. 3. 25. 17:45