commuter_pass.cpp: In function 'int main()':
commuter_pass.cpp:10:15: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'int*' [-Wformat=]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~^ ~~
| | |
| long long int* int*
| %d
commuter_pass.cpp:10:20: warning: format '%lld' expects argument of type 'long long int*', but argument 3 has type 'int*' [-Wformat=]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~^ ~~
| | |
| long long int* int*
| %d
commuter_pass.cpp:10:25: warning: format '%lld' expects argument of type 'long long int*', but argument 4 has type 'int*' [-Wformat=]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~^ ~~
| | |
| long long int* int*
| %d
commuter_pass.cpp:10:30: warning: format '%lld' expects argument of type 'long long int*', but argument 5 has type 'int*' [-Wformat=]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~^ ~~
| | |
| long long int* int*
| %d
commuter_pass.cpp:10:35: warning: format '%lld' expects argument of type 'long long int*', but argument 6 has type 'int*' [-Wformat=]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~^ ~~~
| | |
| long long int* int*
| %d
commuter_pass.cpp:10:40: warning: format '%lld' expects argument of type 'long long int*', but argument 7 has type 'int*' [-Wformat=]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~^ ~~~
| | |
| long long int* int*
| %d
commuter_pass.cpp:12:27: warning: format '%lld' expects argument of type 'long long int*', but argument 2 has type 'int*' [-Wformat=]
12 | while (m--) scanf("%lld %lld %lld", &x, &y, &z), v[x].emplace_back(y, z), v[y].emplace_back(x, z);
| ~~~^ ~~
| | |
| | int*
| long long int*
| %d
commuter_pass.cpp:12:32: warning: format '%lld' expects argument of type 'long long int*', but argument 3 has type 'int*' [-Wformat=]
12 | while (m--) scanf("%lld %lld %lld", &x, &y, &z), v[x].emplace_back(y, z), v[y].emplace_back(x, z);
| ~~~^ ~~
| | |
| | int*
| long long int*
| %d
commuter_pass.cpp:12:37: warning: format '%lld' expects argument of type 'long long int*', but argument 4 has type 'int*' [-Wformat=]
12 | while (m--) scanf("%lld %lld %lld", &x, &y, &z), v[x].emplace_back(y, z), v[y].emplace_back(x, z);
| ~~~^ ~~
| | |
| | int*
| long long int*
| %d
commuter_pass.cpp:10:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | scanf("%lld %lld %lld %lld %lld %lld", &n, &m, &s, &t, &cs, &ct);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
commuter_pass.cpp:12:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | while (m--) scanf("%lld %lld %lld", &x, &y, &z), v[x].emplace_back(y, z), v[y].emplace_back(x, z);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~