summaryrefslogtreecommitdiff
path: root/content/graph/TSP.cpp
diff options
context:
space:
mode:
authorGloria Mundi <gloria@gloria-mundi.eu>2024-11-16 21:17:29 +0100
committerGloria Mundi <gloria@gloria-mundi.eu>2024-11-16 21:17:29 +0100
commit1880ccb6d85c6eb79e724593457877bab431951c (patch)
tree23eddd5bd0b29b3024e170a5ef9023eda9226ab5 /content/graph/TSP.cpp
parente95f59debd69ee7d45d5c966ce466d23264e1c3c (diff)
get rid of all() and sz()
Diffstat (limited to 'content/graph/TSP.cpp')
-rw-r--r--content/graph/TSP.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/graph/TSP.cpp b/content/graph/TSP.cpp
index 6223858..4d2479c 100644
--- a/content/graph/TSP.cpp
+++ b/content/graph/TSP.cpp
@@ -1,7 +1,7 @@
vector<vector<ll>> dist; // Entfernung zwischen je zwei Punkten.
auto TSP() {
- int n = sz(dist), m = 1 << n;
+ int n = ssize(dist), m = 1 << n;
vector<vector<edge>> dp(n, vector<edge>(m, edge{INF, -1}));
for (int c = 0; c < n; c++)
@@ -21,7 +21,7 @@ auto TSP() {
vector<int> tour = {0};
int v = 0;
- while (tour.back() != 0 || sz(tour) == 1)
+ while (tour.back() != 0 || ssize(tour) == 1)
tour.push_back(dp[tour.back()]
[(v |= (1 << tour.back()))].to);
// Enthält Knoten 0 zweimal. An erster und letzter Position.