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
- ALS
- TTS
- 논문리뷰
- 부스트캠프 AI Tech
- Tacotron2
- Tacotron
- SGNS
- Ai
- word2vec
- Dilated convolution
- 추천시스템
- Item2Vec
- Noise Contrastive Estimation
- CF
- Implicit feedback
- Negative Sampling
- matrix factorization
- Skip-gram
- RecSys
- ANNOY
- Recommender System
- BOJ
- NEG
- FastSpeech2
- CV
- wavenet
- FastSpeech
- Neural Collaborative Filtering
- Collaborative Filtering
- 백준
Archives
- Today
- Total
목록알고리즘/CodeForces (1)
devmoon

1. 문제 출처 https://codeforces.com/contest/1594 Dashboard - Codeforces Round #747 (Div. 2) - Codeforces codeforces.com 2. 문제 A. Consecutive Sum Riddle / solved 정수 $n \; (1 \leq n \leq 10^{18})$이 주어졌을 때, $l$부터 $r$까지의 합이 $n$이 되는 $l$과 $r$을 출력하는 문제. $-k + k + (k + 1) = k + 1$ 인 점을 이용해서 문제를 해결할 수 있다. #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(..
알고리즘/CodeForces
2021. 10. 9. 12:27