Don't use bits/stdc++.h

This commit is contained in:
stepfencurryxiao
2020-04-18 10:43:43 +08:00
parent f51c5e11ef
commit f659bcc9fc
16 changed files with 18 additions and 16 deletions

View File

@@ -3,7 +3,7 @@ contains prices of all pieces of size smaller than n. Determine
the maximum value obtainable by cutting up the rod and selling
the pieces.*/
#include <bits/stdc++.h>
#include <iostream>
using namespace std;
int cutrod(int p[], int n)
{