Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Asteroid Collision #93

Closed
Tracked by #101
fkdl0048 opened this issue Oct 15, 2024 · 0 comments
Closed
Tracked by #101

Asteroid Collision #93

fkdl0048 opened this issue Oct 15, 2024 · 0 comments
Assignees
Labels
Milestone

Comments

@fkdl0048
Copy link
Owner

fkdl0048 commented Oct 15, 2024

// 마찬가지로 스택 문제
// 양수를 넣고 음수가 나오면 top을 비교하여 크다면 pop아니라면 넘어감
// 이후 stack을 vector로 변환 후 반환

class Solution {
public:
    vector<int> asteroidCollision(vector<int>& asteroids) {
        stack<int> s;
        vector<int> result;

        for (int asteroid : asteroids) {
            if (asteroid > 0) {
                s.push(asteroid);
            }
            else {
                while (!s.empty() && s.top() > 0 && s.top() < abs(asteroid)) {
                    s.pop();
                }

                if (s.empty() || s.top() < 0) {
                    s.push(asteroid);
                }

                if (!s.empty() && s.top() == abs(asteroid)) {
                    s.pop();
                }
            }
        }

        while(!s.empty()) {
            result.push_back(s.top());
            s.pop();
        }

        reverse(result.begin(), result.end());

        return result;
    }
};
  • 연속 충돌을 생각하지 못해서 조금 애먹었던 문제..
@fkdl0048 fkdl0048 mentioned this issue Oct 15, 2024
7 tasks
@fkdl0048 fkdl0048 self-assigned this Oct 15, 2024
@fkdl0048 fkdl0048 added this to Todo Oct 15, 2024
@github-project-automation github-project-automation bot moved this to Todo in Todo Oct 15, 2024
@fkdl0048 fkdl0048 moved this from Todo to In Progress in Todo Oct 15, 2024
@fkdl0048 fkdl0048 added this to the LeetCode milestone Oct 15, 2024
@github-project-automation github-project-automation bot moved this from In Progress to Done in Todo Oct 15, 2024
@fkdl0048 fkdl0048 reopened this Oct 15, 2024
@github-project-automation github-project-automation bot moved this from Done to Todo in Todo Oct 15, 2024
@github-project-automation github-project-automation bot moved this from Todo to Done in Todo Oct 15, 2024
@fkdl0048 fkdl0048 mentioned this issue Oct 15, 2024
75 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Status: Done
Development

No branches or pull requests

1 participant