답안 #497248

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
497248 2021-12-22T20:44:23 Z FerThugGato12500 악어의 지하 도시 (IOI11_crocodile) C++17
0 / 100
2 ms 2656 KB
#include<bits/stdc++.h>
using namespace std;
#include "crocodile.h"
const int lmt = 100005;

struct wer{
    int i, x;
};

bool operator < (const wer &a, const wer &b){
    return a.x > b.x;
}

bool mark[lmt];
bool vis[lmt];
vector< pair<int, int> > ed[lmt];
int travel_plan(int N, int M, int R[][2], int L[], int K, int P[])
{
    for(int i = 0; i < N; i++){
        ed[R[i][0]].push_back({R[i][1],L[i]});
        ed[R[i][1]].push_back({R[i][0],L[i]});
    }
    priority_queue<wer> mqun;
    for(int i = 0; i < K; i++){
        mqun.push({P[i],0});
        mark[P[i]] = true;
    }
    while(mqun.size()){
        int ind = mqun.top().i, v = mqun.top().x; mqun.pop();
 //       cout<<ind<<" "<<v<<" : ";
        if(mark[ind]){
        //    cout<<"a\n";
            if(ind==0){
                return v;
            }
            vis[ind] = true;
            for(int i = 0; i < ed[ind].size(); i++){
                int to = ed[ind][i].first, vs = v+ed[ind][i].second;
                if(!vis[to]){
                    mqun.push({to,vs});
                }
            }
        }else {
            mark[ind] = true;
   //         cout<<"b\n";
        }
    }
}


Compilation message

crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:37:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   37 |             for(int i = 0; i < ed[ind].size(); i++){
      |                            ~~^~~~~~~~~~~~~~~~
crocodile.cpp:23:25: warning: control reaches end of non-void function [-Wreturn-type]
   23 |     priority_queue<wer> mqun;
      |                         ^~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 2636 KB Output is correct
2 Correct 2 ms 2656 KB Output is correct
3 Incorrect 2 ms 2636 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 2636 KB Output is correct
2 Correct 2 ms 2656 KB Output is correct
3 Incorrect 2 ms 2636 KB Output isn't correct
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 2636 KB Output is correct
2 Correct 2 ms 2656 KB Output is correct
3 Incorrect 2 ms 2636 KB Output isn't correct
4 Halted 0 ms 0 KB -