Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- pep8
- Kubernetes
- NLP
- 백준
- 프로그래머스
- 알고리즘
- Matplotlib
- NaverAItech
- datascience
- rnn
- PytorchLightning
- FastAPI
- GIT
- wandb
- vscode
- DeepLearning
- torchserve
- FDS
- GitHub Action
- autoencoder
- 네이버AItech
- GCP
- 코딩테스트
- python
- pytorch
- github
- 완전탐색
- leetcode
- docker
- Kaggle
Archives
- Today
- Total
Sangmun
투포인터 본문
https://www.acmicpc.net/problem/3273
import sys
input = sys.stdin.readline
N = int(input())
arr_list = list(map(int, input().split()))
X = int(input())
arr_list.sort()
left, right = 0, N -1
result = 0
while left < right:
tmp = arr_list[left] + arr_list[right]
if tmp == X:
result += 1
if tmp < X:
left +=1
else:
right -=1
print(result)
'알고리즘 > 알고리즘(초급)' 카테고리의 다른 글
python queue 구현 (0) | 2022.12.04 |
---|---|
python 으로 stack 직접 구현하기 (0) | 2022.12.04 |
백트래킹을 이용한 부분 집합을 구하는 알고리즘 (0) | 2022.11.21 |
유클리드 호제법(최대공약수), 최소공배수 (0) | 2022.11.18 |
에라토스테네스의 체 (0) | 2022.11.17 |
Comments