diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-26 21:46:50 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-26 21:46:50 +0100 |
commit | 0cb72c21cff158fc85a2055d056bdcbb45b1eb21 (patch) | |
tree | 2e13bd3bd5da4c830afa96086efce31330aa78db /05-advanced_algorithms_and_complexity/04-np-completeness/04-reschedule_exams | |
parent | 2412c08dcd6cb50e56355a2997e9f21d70da97b7 (diff) | |
download | coursera-0cb72c21cff158fc85a2055d056bdcbb45b1eb21.zip coursera-0cb72c21cff158fc85a2055d056bdcbb45b1eb21.tar.gz |
Algorithms : add 05-advanced_algorithms_and_complexity 04-np-completeness
Diffstat (limited to '05-advanced_algorithms_and_complexity/04-np-completeness/04-reschedule_exams')
-rw-r--r-- | 05-advanced_algorithms_and_complexity/04-np-completeness/04-reschedule_exams/reschedule_exams.cpp | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/05-advanced_algorithms_and_complexity/04-np-completeness/04-reschedule_exams/reschedule_exams.cpp b/05-advanced_algorithms_and_complexity/04-np-completeness/04-reschedule_exams/reschedule_exams.cpp new file mode 100644 index 0000000..b3ff8eb --- /dev/null +++ b/05-advanced_algorithms_and_complexity/04-np-completeness/04-reschedule_exams/reschedule_exams.cpp @@ -0,0 +1,45 @@ +#include <iostream> +#include <vector> +#include <string> +using namespace std; + +/* + Arguments: + * `n` - the number of vertices. + * `edges` - list of edges, each edge is a pair (u, v), 1 <= u, v <= n. + * `colors` - string consisting of `n` characters, each belonging to the set {'R', 'G', 'B'}. + Return value: + * If there exists a proper recoloring, return value is a string containing new colors, similar to the `colors` argument. + * Otherwise, return value is an empty string. +*/ +string assign_new_colors(int n, vector<pair<int, int>> edges, string colors) { + // Insert your code here. + if (n % 3 == 0) { + string new_colors; + for (int i = 0; i < n; i++) { + new_colors.push_back("RGB"[i % 3]); + } + return new_colors; + } else { + return ""; + } +} + +int main() { + int n, m; + cin >> n >> m; + string colors; + cin >> colors; + vector<pair<int, int> > edges; + for (int i = 0; i < m; i++) { + int u, v; + cin >> u >> v; + edges.push_back(make_pair(u, v)); + } + string new_colors = assign_new_colors(n, edges, colors); + if (new_colors.empty()) { + cout << "Impossible"; + } else { + cout << new_colors << endl; + } +} |