/in/foo.cc: In function 'int gi()':
/in/foo.cc:8:37: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
inline int gi(void) {int num=0,mk=0;for(;*S<48||*S>57;((*S=='-')&&(mk=1)),++S);
^~~
/in/foo.cc:9:2: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(;*S>47&&*S<58;num=(num<<3)+(num<<1)+(*S^48),++S);return mk?-num:num;
^~~
/in/foo.cc:9:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
/in/foo.cc:9:55: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'for'
for(;*S>47&&*S<58;num=(num<<3)+(num<<1)+(*S^48),++S);return mk?-num:num;
^~~~~~
/in/foo.cc: In function 'long long int dij()':
/in/foo.cc:13:2: warning: this 'while' clause does not guard... [-Wmisleading-indentation]
while (!q.empty()) q.pop();q.push(make_pair(dis[0]=0,0)),inq[0]=true;
^~~~~
/in/foo.cc:13:29: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'while'
while (!q.empty()) q.pop();q.push(make_pair(dis[0]=0,0)),inq[0]=true;
^
/in/foo.cc:16:4: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (dis[cur]+e[i].val>=dis[ot]) continue;dis[ot]=dis[cur]+e[i].val;
^~
/in/foo.cc:16:45: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (dis[cur]+e[i].val>=dis[ot]) continue;dis[ot]=dis[cur]+e[i].val;
^~~
/in/foo.cc: In function 'void sol()':
/in/foo.cc:25:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (!typ) return puts("1"),void();return printf("%lld\n",1-ans>>1),void();
^~
/in/foo.cc:25:36: note: ...this statement, but the latter is misleadingly indented as if it is guarded by the 'if'
if (!typ) return puts("1"),void();return printf("%lld\n",1-ans>>1),void();
^~~~~~
/in/foo.cc:25:60: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
if (!typ) return puts("1"),void();return printf("%lld\n",1-ans>>1),void();
~^~~~