0_0_28678745_19874.cpp: In function 'void dijkstra(int)':
0_0_28678745_19874.cpp:23:9: error: 'mark' was not declared in this scope
memset(mark,0,sizeof(mark));
^
0_0_28678745_19874.cpp:25:3: error: 'ans' was not declared in this scope
ans[i]=mapp[start][i];
^
0_0_28678745_19874.cpp:25:10: error: 'mapp' was not declared in this scope
ans[i]=mapp[start][i];
^
0_0_28678745_19874.cpp:27:2: error: 'ans' was not declared in this scope
ans[start]=0;
^
0_0_28678745_19874.cpp:39:14: error: 'mapp' was not declared in this scope
if(ans[j]>mapp[loca][j]+ans[loca]){
^
0_0_28678745_19874.cpp: In function 'int main()':
0_0_28678745_19874.cpp:55:4: error: 'mapp' was not declared in this scope
mapp[i][j]=INF;
^
0_0_28678745_19874.cpp:63:7: error: 'mapp' was not declared in this scope
if(mapp[q][p]>t){
^
0_0_28678745_19874.cpp:74:16: error: 'ans' was not declared in this scope
if(shortest>ans[s]){
^
|