boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:36:18: warning: declaration of 'n' shadows a global declaration [-Wshadow]
ll best = inf, n = N, myL = L, k = K;
^
boxes.cpp:15:4: note: shadowed declaration is here
ll n,cur,res,myL,k;
^
boxes.cpp:36:25: warning: declaration of 'myL' shadows a global declaration [-Wshadow]
ll best = inf, n = N, myL = L, k = K;
^~~
boxes.cpp:15:14: note: shadowed declaration is here
ll n,cur,res,myL,k;
^~~
boxes.cpp:36:34: warning: declaration of 'k' shadows a global declaration [-Wshadow]
ll best = inf, n = N, myL = L, k = K;
^
boxes.cpp:15:18: note: shadowed declaration is here
ll n,cur,res,myL,k;
^
boxes.cpp:36:25: warning: unused variable 'myL' [-Wunused-variable]
ll best = inf, n = N, myL = L, k = K;
^~~
boxes.cpp:36:34: warning: unused variable 'k' [-Wunused-variable]
ll best = inf, n = N, myL = L, k = K;
^