Skip to content

Commit

Permalink
Update UVa10943_How do you add?.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Huixxi authored Jan 16, 2020
1 parent a53a719 commit eca9b16
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Week13-TSP旅行商&区间DP/UVa10943_How do you add?.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ int main() {
dp[k][n] = (dp[k-1][n] + dp[k][n-1]) % MODN;
}
}

int N, K;
while(cin >> N >> K && N + K) {
cout << dp[K][N] << endl;
Expand Down

0 comments on commit eca9b16

Please sign in to comment.