제출 #284913

#제출 시각아이디문제언어결과실행 시간메모리
284913arnold518Žarulje (COI15_zarulje)C++14
22 / 100
13 ms1792 KiB
#include <bits/stdc++.h>
using namespace std;
 
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
 
const int MAXN = 2000;
const int MOD = 1e9+7;
 
int N, A[MAXN+10], Q;
map<pii, int> M;
 
int solve(int l, int r)
{
	while(A[l]!=A[r])
 	{
 		if(l==0) r++;
		else if(r==N+1) l--;
		else if(A[l]<A[r]) r++;
		else if(A[l]>A[r]) l--;
 	}

	if(l==0 && r==N+1) return 1;
	if(M.find({l, r})!=M.end()) return M[{l, r}];
	int &ret=M[{l, r}];

	return ret=(solve(l-1, r)+solve(l, r+1))%MOD;
}
 
int main()
{
	scanf("%d%d", &N, &Q);
	for(int i=1; i<=N; i++) scanf("%d", &A[i]);
 
	while(Q--)
	{
		int k;
		scanf("%d", &k);
		printf("%d\n", solve(k-1, k+1));
	}
}

컴파일 시 표준 에러 (stderr) 메시지

zarulje.cpp: In function 'int main()':
zarulje.cpp:33:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   33 |  scanf("%d%d", &N, &Q);
      |  ~~~~~^~~~~~~~~~~~~~~~
zarulje.cpp:34:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   34 |  for(int i=1; i<=N; i++) scanf("%d", &A[i]);
      |                          ~~~~~^~~~~~~~~~~~~
zarulje.cpp:39:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   39 |   scanf("%d", &k);
      |   ~~~~~^~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...