naan.cpp: In function 'int main()':
naan.cpp:67:42: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
for (i = 1; i <= n; i++)printf("%d ", i);
^
naan.cpp:71:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < aa.size(); i++)printf("%lld %lld\n", aa[i], ab[i]);
~~^~~~~~~~~~~
naan.cpp:72:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int i = 0; i < ans.size(); i++)printf("%d ", ans[i]);
~~^~~~~~~~~~~~
naan.cpp:16:29: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
long long n, l, i, j; scanf("%lld%lld", &n, &l);
~~~~~^~~~~~~~~~~~~~~~~~~~
naan.cpp:19:32: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
for (j = 1; j <= l; j++)scanf("%lld", &v[i][j]);
~~~~~^~~~~~~~~~~~~~~~~~
naan.cpp:31:45: warning: 'mnw' may be used uninitialized in this function [-Wmaybe-uninitialized]
long long mnx = 1e9;double mny; long long mnw;
^~~
naan.cpp:43:43: warning: 'mny' may be used uninitialized in this function [-Wmaybe-uninitialized]
if (mnx > L[who].x || (mnx == L[who].x && mny > L[who].y)) {
~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~