In file included from /usr/include/c++/5/unordered_map:35:0,
from UV.cpp:2:
/usr/include/c++/5/bits/c++0x_warning.h:32:2: error: #error This file requires compiler and library support for the ISO C++ 2011 standard. This support must be enabled with the -std=c++11 or -std=gnu++11 compiler options.
#error This file requires compiler and library support \
^
UV.cpp:10:1: error: 'unordered_map' does not name a type
unordered_map<lli,int> d[10000];
^
UV.cpp: In function 'int main()':
UV.cpp:20:3: error: 'd' was not declared in this scope
d[i][s]=1;
^
UV.cpp:26:7: error: 'd' was not declared in this scope
if(d[i-1].count(sum)) d[j][sum]+=d[i-1][sum];
^
UV.cpp:27:7: error: 'd' was not declared in this scope
if(d[j][sum]>=MOD) d[j][sum]-=MOD;
^
UV.cpp:31:6: error: 'unordered_map' was not declared in this scope
for(unordered_map<lli,int>::iterator it=d[n-1].begin();it!=d[n-1].end();it++) {
^
UV.cpp:31:23: error: expected primary-expression before ',' token
for(unordered_map<lli,int>::iterator it=d[n-1].begin();it!=d[n-1].end();it++) {
^
UV.cpp:31:24: error: expected primary-expression before 'int'
for(unordered_map<lli,int>::iterator it=d[n-1].begin();it!=d[n-1].end();it++) {
^
UV.cpp:31:57: error: 'it' was not declared in this scope
for(unordered_map<lli,int>::iterator it=d[n-1].begin();it!=d[n-1].end();it++) {
^
UV.cpp:31:61: error: 'd' was not declared in this scope
for(unordered_map<lli,int>::iterator it=d[n-1].begin();it!=d[n-1].end();it++) {
^
UV.cpp:15:16: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d",&n);
^
UV.cpp:18:22: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%lld",&a[i]);
^