diff --git a/Template/CPTemp.cpp b/Template/CPTemp.cpp index 80ce87f..27a1c3d 100644 --- a/Template/CPTemp.cpp +++ b/Template/CPTemp.cpp @@ -51,7 +51,7 @@ template void _print(vector v) {cerr << "[ "; for (T i : v) {_prin template void _print(set v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} template void _print(multiset v) {cerr << "[ "; for (T i : v) {_print(i); cerr << " ";} cerr << "]";} template void _print(map v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} - +template void _print(multimap v) {cerr << "[ "; for (auto i : v) {_print(i); cerr << " ";} cerr << "]";} ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// @@ -65,6 +65,5 @@ int32_t main() FAST_IO; int TC = 1; //cin >> TC; - while (TC--) - solve(); + while (TC--) solve(); } \ No newline at end of file