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