biochips.cpp: In function 'void dfs(int)':
biochips.cpp:29:24: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if(dp[y].size()<=z) continue;
^
biochips.cpp: In function 'int main()':
biochips.cpp:41:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d",&n,&m);
^
biochips.cpp:45:31: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d%d",&p,val+i);
^
biochips.cpp:50:28: warning: 'r' may be used uninitialized in this function [-Wmaybe-uninitialized]
printf("%d\n",dp[r][m-1]);
^