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

Reorder Routes to Make All Paths Lead to the City Zero #125

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

Reorder Routes to Make All Paths Lead to the City Zero #125

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

Comments

@fkdl0048
Copy link
Owner

fkdl0048 commented Oct 17, 2024

class Solution {
public:
    int count = 0;
    void dfs(int node, int parent, vector<vector<pair<int, int>>>& adj) {
        for (auto& [neighbor, sign] : adj[node]) {
            if (neighbor != parent) {
                count += sign;
                dfs(neighbor, node, adj);
            }
        }
    }
    int minReorder(int n, vector<vector<int>>& connections) {
        vector<vector<pair<int, int>>> adj(n);

        for (auto& connection : connections) {
            adj[connection[0]].push_back({connection[1], 1});
            adj[connection[1]].push_back({connection[0], 0});
        }
        dfs(0, -1, adj);

        return count;
    }
};
  • 너무 어려웠던 문제..
@fkdl0048 fkdl0048 mentioned this issue Oct 17, 2024
75 tasks
@fkdl0048 fkdl0048 self-assigned this Oct 17, 2024
@fkdl0048 fkdl0048 added this to Todo Oct 17, 2024
@github-project-automation github-project-automation bot moved this to Todo in Todo Oct 17, 2024
@fkdl0048 fkdl0048 added this to the LeetCode milestone Oct 17, 2024
@fkdl0048 fkdl0048 moved this from Todo to In Progress in Todo Oct 17, 2024
@github-project-automation github-project-automation bot moved this from In Progress to Done in Todo Oct 24, 2024
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