From 744a19fd4da6f22318332462d4db480919c43ec2 Mon Sep 17 00:00:00 2001 From: Kirito <1362050620@qq.com> Date: Thu, 11 Aug 2016 09:54:28 +0800 Subject: [PATCH] Create 1068_JeromeHuang.cpp From http://www.cnblogs.com/JeromeHuang/p/4472727.html --- hihoCoder/1068_JeromeHuang.cpp | 50 ++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 hihoCoder/1068_JeromeHuang.cpp diff --git a/hihoCoder/1068_JeromeHuang.cpp b/hihoCoder/1068_JeromeHuang.cpp new file mode 100644 index 0000000..25a92a5 --- /dev/null +++ b/hihoCoder/1068_JeromeHuang.cpp @@ -0,0 +1,50 @@ +#include +#include +#include +#include +using namespace std; + + +const int N = 10e6+10; +const int M = 30; +int arrayData[N]; +int rmqData[N][M]; +int n,m; +int min(int x, int y){ + return (x