aboutsummaryrefslogtreecommitdiff
path: root/DpWithPrefixSum
diff options
context:
space:
mode:
Diffstat (limited to 'DpWithPrefixSum')
-rw-r--r--DpWithPrefixSum/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/DpWithPrefixSum/main.cpp b/DpWithPrefixSum/main.cpp
new file mode 100644
index 0000000..ecc5aa5
--- /dev/null
+++ b/DpWithPrefixSum/main.cpp
@@ -0,0 +1,9 @@
+#include<bits/stdc++.h>
+
+using namespace std;
+
+int main () {
+ int n;
+ cin >> n;
+ vector<int> prefix(n);
+}