Submission #341958

# Submission time Handle Problem Language Result Execution time Memory
341958 2020-12-31T19:31:46 Z Hazem Maja (COCI18_maja) C++14
Compilation error
0 ms 0 KB
/*
ID: tmhazem1
LANG: C++14
TASK: pprime
*/

#include <bits/stdc++.h>
using namespace std;

#define S second
#define F first
#define LL long long

const int N = 2e2 + 10;


LL LINF = 100000000000000000;
LL INF = 1000000000;
int MOD = 1e9+7;

LL dp[N][N][N*N];
LL vals[N][N];

int main()
{
    // freopen("out.txt","w",stdout);
    int n,m,a,b,k;
    scanf("%d%d%d%d%d",&n,&m,&a,&b,&k);

    for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
        scanf("%lld",&vals[i][j]),dp[i][j][0] = -INF;

    dp[a][b][0] = 0;
    for(int k1=1;k1<=k;k1++)
        for(int i=1;i<=n;i++)
            for(int j=1;j<=m;j++)
            dp[i][j][k1] = max({dp[i-1][j][k1-1],dp[i+1][j][k1-1],dp[i][j-1][k1-1],dp[i][j+1][k1-1]})+vals[i][j];

    printf("%lld\n",dp[a][b][k]);
}       

Compilation message

maja.cpp: In function 'int main()':
maja.cpp:28:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   28 |     scanf("%d%d%d%d%d",&n,&m,&a,&b,&k);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
maja.cpp:32:14: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   32 |         scanf("%lld",&vals[i][j]),dp[i][j][0] = -INF;
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~
/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status