점수에 따라 등수를 정하는 법이 많이 있다. A=10, B=9, C=9, D=8 인 경우를 생각해보자. 1. Standard competition ranking ("1224" ranking)A=1, B=2, C=2, D=4 가 된다. 2. Modified competition ranking ("1334" ranking)A=1, B=3, C=3, D=4 가 된다. 3. Dense ranking ("1223" ranking)A=1, B=2, C=2, D=3 가 된다. 4. Ordinal ranking ("1234" ranking)같은 점수의 경우 B=3, C=2가 될 수도 있다. A=1, B=2, C=2, D=4 가 된다. 5. Fractional ranking ("1 2.5 2.5 4" ranking)A=..
Operating System운영체제로 윈도우나 리눅스 같은 SW. 시스템 모니터링, 관리, 운영, 컴퓨터 HW들의 논리적 연결, 제어.임베디드 시스템의 핵심요소로 실시간 처리를 위한 운영체제를 RTOS라 한다.주요 기능은 작업의 스케쥴링 기능, 파일 및 장치의 관리, 인터럽트, 시그날, 프로세스간의 통신 관리, 가상메모리를 포함한 메모리 관리.이러한 기능들을 처리하는 운영체제 내의 코드를 커널이라고 한다. Instruction Set그 processor가 인식할 수 있는 구조의 언어들로 어루어진 집합. processor 개발을 ISA (Instruction Set Architecture)라 한다. Compiler프로그램을 받아서 processor가 식별해서 수행할 수 있는 언어로 변환하는 기능. Loc..
출처 : https://www.hackerrank.com/challenges/time-conversion/problem #include using namespace std; string timeConversion(string s) { if(s.substr(8,2)=="PM") { string ss = s.substr(0,2); int tmp = atoi(ss.c_str()); if(tmp==12) tmp=0; s.replace(0,2,to_string(tmp+12)); s.erase(8,2); } else { if(s.substr(0,2)=="12") s.replace(0,2,"00"); s.erase(8,2); } return s;} int main(){ ofstream fout(getenv("OUTP..
출처 : https://www.hackerrank.com/challenges/birthday-cake-candles/problem #include using namespace std; vector split_string(string); int birthdayCakeCandles(vector ar) { int ans=1; sort(ar.begin(),ar.end()); int tmp = ar[ar.size()-1]; if(ar.size()>2) { for(int i=ar.size()-2;i>=0;i--) { if(tmp==ar[i]) ans++; else break; } } else if(ar.size()==2) { if(tmp==ar[0]) ans++; } return ans;} int main(){ o..
출처 : https://www.hackerrank.com/challenges/diagonal-difference/problem #include using namespace std; int diagonalDifference(vector arr) { int ans1=0; int ans2=0; int s = arr.size(); for(int i=0,j=0; i>=0 && i> n; cin.ignore(numeric_limits::max(), '\n'); vector arr(n); for (int i = 0; i > arr[i][j]; } cin.ignore(numeric_limits::max(..
출처 : https://www.hackerrank.com/challenges/a-very-big-sum/problem #include using namespace std; vector split_string(string); long aVeryBigSum(vector ar) { long ans=0; for(int i=0; i> ar_count; cin.ignore(numeric_limits::max(), '\n'); string ar_temp_temp; getline(cin, ar_temp_temp); vector ar_temp = split_string(ar_temp_temp); vector ar(ar_count); for (int i = 0; i < ar_count; i++) { long ar_item..
출처 : https://www.hackerrank.com/challenges/compare-the-triplets/problem #include using namespace std; string ltrim(const string &);string rtrim(const string &);vector split(const string &); vector compareTriplets(vector a, vector b) { vector v(2); for(int i=0; ib[i]) v[0]++; else if(a[i]
- Total
- Today
- Yesterday
- 삼성
- 백준
- DFS
- 시간 복잡도
- boj
- 연구소 3
- 17143
- 17837
- STL
- 알고리즘
- 2018 KAKAO BLIND RECRUITMENT
- scanf
- 게리맨더링 2
- 2018 카카오 블라인드 채용
- hackerrank
- 이차원 배열과 연산
- SWEA
- 입출력
- DP
- 17142
- 팁
- 17144
- 17779
- 역량 테스트
- 17140
- 트렌드
- 미세먼지 안녕!
- SW Expert Academy
- string
- 새로운 게임 2
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |