Skip to content

Commit b33e369

Browse files
change int to double
1 parent 7361cfb commit b33e369

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

LIS.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
#include <bits/stdc++.h>
66

77
using namespace std;
8-
const int N = 1000, M = 2e6, OO = 1000000007, EPS = 0.00000001;
8+
const int N = 1000, M = 2e6, OO = 1000000007;
9+
const double EPS = 0.00000001;
910

1011
int n , A[N+9], mem[N+9][N+9];
1112

0 commit comments

Comments
 (0)