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