일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode
- VUE
- git
- type
- dotenv
- JavaScript
- vuetify
- loop
- nginx
- Clone
- scss
- security
- condition
- AI
- vue.js
- bash
- BOJ
- Python
- 앙상블
- C#
- property
- TypeScript
- C++
- var
- docker
- npm
- generic
- webpack
- machine learning
- 보안
Archives
- Today
- Total
ice rabbit programming
[LeetCode] May Challenge 1 - First Bad Version 본문
https://leetcode.com/explore/featured/card/may-leetcoding-challenge/534/week-1-may-1st-may-7th/3316/
4월에 게을러서 하지 않았던 1일 1문제 챌린지를 5월에는 해보려고 한다. 요즘에 계속 하루에 한 두 문제씩 풀었어서..
첫 문제는 false에서 true가 되는 순간을 찾는 문제였다. 기본적인 로직은 맞게 생각했는데 포인터를 두 개 썼으면 더 간단하고 실행 시간을 짧게 풀었을 텐데, 포인터를 하나 사용해서 제대로 풀지 못한 느낌이다 ㅠㅠ
// The API isBadVersion is defined for you.
// bool isBadVersion(int version);
class Solution {
public:
int firstBadVersion(int n) {
if(n==1) {
return 1;
}
int temp=n/50*49;
while(true) {
if(isBadVersion(temp)) {
if(!isBadVersion(--temp))
return temp+1;
temp/=5;
temp*=4;
if(temp==0)
temp++;
}
else {
if(isBadVersion(++temp))
return temp;
temp++;
if(temp>n)
temp=n;
}
}
}
};
'PS > LeetCode' 카테고리의 다른 글
[LeetCode] May Challenge 2 - Jewels and Stones (0) | 2020.05.03 |
---|---|
[LeetCode] Second Highest Salary (0) | 2020.05.01 |
[LeetCode] Employees Earning More Than Their Manager (0) | 2020.05.01 |
[LeetCode] Symmetric Tree (0) | 2020.05.01 |
[LeetCode] Invert Binary Tree (0) | 2020.04.27 |