일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- graph #최단경로
- 백준
- c++ #boj #
- 최소 #공배수 #최대 #공약수 #유클리드 #호제법 #lcm #gcd #c++ #boj #3343 #백준 #장미
- 레드아보
- 쌤쌤쌤
- hcpc
- BOJ
- 줄어드는수
- 20117
- C++
- 이분탐색 #dp #11053
- 16202
- 3D #Reconstruction #computer #vision #volume #metric #tsdf #kinect #fusion
- c++ #입출력 #속도 #ios #sync_with_stdio #cin #cout #tie
- 30870
- 22869
- 3343
- 사이클 없는 그래프
- 백준 #다익스트라 #dijkstra #9370 #c++
- 투포인터 #백준 #boj #20922 #22862
- 1174
- N번째큰수
- 진법변환 #2to10 #10to2 #이진법 #십진법 #변환 #bitset #c++
- 호반우 상인
- graph
- backtracking #codetree #디버깅 #삼성코테
- boj #백준
- 코딩
- LIS #가장긴증가하는부분수열 #
- Today
- Total
목록알고리즘 연습/코드업 (11)
hyunjin
[1093] vector 사용 #include using namespace std; int main(){ int cnt,num; vector snum(23); cin>>cnt; for(int i = 0 ; i >num; snum[num-1]++; } for(int elem : snum) coutnum; snum.push(num); } while(!snum.empty()){ cout>num; if(num n; for(int i = 0 ; i >x>>y; b[x-1][y-1] = 1 ; } for(int j = 0 ; j < 19 ;j++){ for(int i = 0 ; i < 19 ; i++) cout
[1080] 입력한 수보다 누적 합이 같거나 커졌을 때, 마지막으로 더한 정수 출력 #include using namespace std; int main(){ int cut,n=0,sum=0; cin >>cut; while(sumb>>c>>s; printf("%.1f MB", ((h*b*c*s)/(8*1024*1024 ) ) ); return 0; } 출력할때 계산되는 식이면 () 괄호로 꼭 묶어주기. 왜인지는 모르겠지만 묶지 않으면 이상한 수가 출력된다. 드디어 앞에서 쓴 것 활용. 소숫점 2번째 자리에서 반올림해 첫 번째 자리까지 출력 => .1f 데이터 단위 8 bit = 1 byte 1024 byte = 1KB 1024 KB = 1 MB 1024 MB = 1GB 1024 GB = 1TB [1087..
[1071] goto를 사용해서 풀기 #include using namespace std; int main(){ int a; reload: cin >> a; if(a != 0){ cout
[1068] #include using namespace std; int main(){ int a; cin >> a; switch(a/10){ case 10 : case 9 : cout
[1064]세 수 중 가장 작은 수 출력 #include #include using namespace std; int main(){ int a,b,c; cin >> a>>b>>c; cout b ? b : a) > c )? c : (a>b ? b : a) ) ; return 0; } #include using namespace std; int main(){ int a,b,c; cin >> a>>b>>c; cout
[1059] 비트단위 연산자로 NOT하여 출력 #include using namespace std; int main(){ int a; scanf("%d",&a); cout
[1053] #include using namespace std; int main(){ int a; scanf("%d %d",&a); cout 0이면 1로 1이면 0으로 출력하기 [1055] #include using namespace std; int main(){ int a,b; scanf("%d %d",&a,&b); cout