Skip to content

Commit c648e2b

Browse files
committed
Runtime: 95 ms (Top 78.34%) | Memory: 11.2 MB (Top 58.34%)
1 parent 5c4e557 commit c648e2b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/algorithms/P/Paint House III/Paint House III.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Runtime: 95 ms (Top 78.34%) | Memory: 11.2 MB (Top 58.34%)
12
class Solution {
23
int dp[101][22][101];
34
vector<int> h;//m
@@ -31,4 +32,4 @@ class Solution {
3132
int res=dfs(0,21,t);
3233
return res==INT_MAX?-1:res;
3334
}
34-
};
35+
};

0 commit comments

Comments
 (0)