Submission #567094

#TimeUsernameProblemLanguageResultExecution timeMemory
567094jamezzzSightseeing in Kyoto (JOI22_kyoto)C++17
10 / 100
17 ms8352 KiB
#include <bits/stdc++.h>
using namespace std;

#ifdef DEBUG
#define dbg(...) printf(__VA_ARGS__);
#define getchar_unlocked getchar
#else
#define dbg(...)
#endif
#define sf scanf
#define pf printf
#define fi first
#define se second
#define pb push_back
#define sz(x) (int)x.size()
#define mnto(x,y) x=min(x,(__typeof__(x))y)
#define mxto(x,y) x=max(x,(__typeof__(x))y)
#define INF 1023456789
#define LINF 1023456789123456789
#define all(x) x.begin(), x.end()
#define disc(x) sort(all(x));x.resize(unique(all(x))-x.begin());
typedef long long ll;
typedef long double ld;
typedef pair<int, int> ii;
typedef pair<ll, ll> pll;
typedef tuple<int, int, int> iii;
typedef tuple<int, int, int, int> iiii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<pll> vll;
mt19937 rng(time(0));

#define mod 1000000007

inline int add(int a,int b){
	int r=a+b;
	while(r>=mod)r-=mod;
	while(r<0)r+=mod;
	return r;
}

inline int mult(int a,int b){
	return (int)(((ll)(a*b))%mod);
}

inline int rd(){
	int x=0;
	char ch=getchar_unlocked();
	while(!(ch&16))ch=getchar();//keep reading while current character is whitespace
    while(ch&16){//this will break when ‘\n’ or ‘ ‘ is encountered
		x=(x<<3)+(x<<1)+(ch&15);
		ch=getchar_unlocked();
	}
	return x;
}

#define maxn 1005

int h,w,a[maxn],b[maxn];
ll memo[maxn][maxn];

ll dp(int i,int j){
	if(i==h&&j==w)return 0;
	if(i>h||j>w)return LINF;
	if(memo[i][j]!=-1)return memo[i][j];
	return memo[i][j]=min(dp(i+1,j)+b[j],dp(i,j+1)+a[i]);
}

int main(){
	sf("%d%d",&h,&w);
	for(int i=1;i<=h;++i)sf("%d",&a[i]);
	for(int i=1;i<=w;++i)sf("%d",&b[i]);
	memset(memo,-1,sizeof memo);
	/*
	for(int i=1;i<=h;++i){
		for(int j=1;j<=w;++j){
			pf("%3d ",dp(i,j));
		}
		pf("\n");
	}
	*/
	pf("%lld\n",dp(1,1));
}

Compilation message (stderr)

kyoto.cpp: In function 'int main()':
kyoto.cpp:70:4: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   70 |  sf("%d%d",&h,&w);
      |    ^
kyoto.cpp:71:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   71 |  for(int i=1;i<=h;++i)sf("%d",&a[i]);
      |                         ^
kyoto.cpp:72:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   72 |  for(int i=1;i<=w;++i)sf("%d",&b[i]);
      |                         ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...