일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- stl
- 소수
- Photoshop
- Gap
- c
- pandas
- align-items
- CSS
- 통신사할인
- Prefix Sums
- Codility
- grid
- 포토샵
- 확률
- skt membership
- 강화학습
- 알고리즘
- spring
- margin
- c++
- SK바이오사이언스
- 백준
- Flexbox
- Javascript
- 에라토스테네스의 체
- series
- 상태
- dataframe
- Design Pattern
- 수학
- Today
- Total
목록stl (4)
sliver__

https://www.acmicpc.net/problem/3009 3009번: 네 번째 점 세 점이 주어졌을 때, 축에 평행한 직사각형을 만들기 위해서 필요한 네 번째 점을 찾는 프로그램을 작성하시오. www.acmicpc.net 세 개의 점이 주어지고 나머지 한 점을 찾는 문제입니다. (a,b) (a,c), (d,c), (d, b)가 존재한다고 했을 때 한 가지 점이 없으면 홀수인 개수의 점을 찾으면 됩니다. 제출한 코드는 아래와 같습니다 #include #include using namespace std; int main() { int x, y, resX, resY; map xMap, yMap; map::iterator xIter, yIter; for (int i = 0; i < 3; i++) { c..

안녕하세요~ 디벨로퍼입니다~~ 오늘은 GenomicRangeQuery 문제 풀이하도록 하겠습니다. 문제풀이 하실분들은 아래 링크 참조해주세요. ======================================================================== https://app.codility.com/programmers/lessons/5-prefix_sums/genomic_range_query/ GenomicRangeQuery coding task - Learn to Code - Codility Find the minimal nucleotide from a range of sequence DNA. app.codility.com =================================..

안녕하세요~~ 디벨롭퍼입니다~~~ https://app.codility.com/programmers/lessons/4-counting_elements/frog_river_one/ FrogRiverOne coding task - Learn to Code - Codility Find the earliest time when a frog can jump to the other side of a river. app.codility.com *********************************************************************** 풀어보실 분들을 위해서 링크 걸어두었습니다. **********************************************************..

안녕하세요~~ 디벨롭퍼입니다~~~ 오늘은 Lesson2 (Array) : OddOccurrencesInArray 문제를 풀어보았습니다. https://app.codility.com/programmers/lessons/2-arrays/odd_occurrences_in_array/ OddOccurrencesInArray coding task - Learn to Code - Codility Find value that occurs in odd number of elements. app.codility.com *********************************************************************** 풀어보실 분들을 위해서 링크 걸어두었습니다. *****************..