結果

問題 No.614 壊れたキャンパス
ユーザー maimai
提出日時 2017-12-14 10:32:56
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 842 ms / 2,000 ms
コード長 6,654 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 242,680 KB
実行使用メモリ 78,968 KB
最終ジャッジ日時 2023-08-21 04:08:19
合計ジャッジ時間 11,872 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
12,792 KB
testcase_01 AC 6 ms
12,732 KB
testcase_02 AC 7 ms
12,692 KB
testcase_03 AC 7 ms
12,892 KB
testcase_04 AC 7 ms
12,676 KB
testcase_05 AC 6 ms
12,672 KB
testcase_06 AC 6 ms
12,676 KB
testcase_07 AC 7 ms
12,892 KB
testcase_08 AC 671 ms
77,292 KB
testcase_09 AC 842 ms
77,056 KB
testcase_10 AC 490 ms
77,476 KB
testcase_11 AC 774 ms
78,144 KB
testcase_12 AC 778 ms
78,100 KB
testcase_13 AC 763 ms
78,968 KB
testcase_14 AC 693 ms
78,536 KB
testcase_15 AC 511 ms
77,548 KB
testcase_16 AC 592 ms
77,520 KB
testcase_17 AC 128 ms
76,544 KB
testcase_18 AC 263 ms
68,224 KB
testcase_19 AC 234 ms
64,524 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: メンバ関数 ‘{無名}::MaiScanner& {無名}::MaiScanner::operator>>(std::string&)’ 内:
main.cpp:58:9: 警告: 非 void を戻す関数内に return 文がありません [-Wreturn-type]
   58 |         }
      |         ^

ソースコード

diff #

#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#include "bits/stdc++.h" // define macro "/D__MAI"

using namespace std;
typedef long long int ll;

#define xprintf(fmt,...) fprintf(stderr,fmt,__VA_ARGS__)
#define debugv(v) {printf("L%d %s > ",__LINE__,#v);for(auto e:v){cout<<e<<" ";}cout<<endl;}
#define debuga(m,w) {printf("L%d %s > ",__LINE__,#m);for(int x=0;x<(w);x++){cout<<(m)[x]<<" ";}cout<<endl;}
#define debugaa(m,h,w) {printf("L%d %s >\n",__LINE__,#m);for(int y=0;y<(h);y++){for(int x=0;x<(w);x++){cout<<(m)[y][x]<<" ";}cout<<endl;}}
#define ALL(v) (v).begin(),(v).end()
#define repeat(cnt,l) for(auto cnt=0ll;(cnt)<(l);++(cnt))
#define iterate(cnt,b,e) for(auto cnt=(b);(cnt)!=(e);++(cnt))
#define MD 1000000007ll
#define PI 3.1415926535897932384626433832795
#define EPS 1e-12
template<typename T1, typename T2> ostream& operator <<(ostream &o, const pair<T1, T2> p) { o << "(" << p.first << ":" << p.second << ")"; return o; }
template<typename iterator> inline size_t argmin(iterator begin, iterator end) { return distance(begin, min_element(begin, end)); }
template<typename iterator> inline size_t argmax(iterator begin, iterator end) { return distance(begin, max_element(begin, end)); }
template<typename T> T& maxset(T& to, const T& val) { return to = max(to, val); }
template<typename T> T& minset(T& to, const T& val) { return to = min(to, val); }
void bye(string s, int code = 0) { cout << s << endl; exit(0); }
mt19937_64 randdev(8901016);
inline ll rand_range(ll l, ll h) {
    return uniform_int_distribution<ll>(l, h)(randdev);
}

#if defined(_WIN32) || defined(_WIN64)
#define getchar_unlocked _getchar_nolock
#define putchar_unlocked _putchar_nolock
#elif __GNUC__
#else
#define getchar_unlocked getchar
#define putchar_unlocked putchar
#endif
namespace {
#define isvisiblechar(c) (0x21<=(c)&&(c)<=0x7E)
    class MaiScanner {
    public:
        template<typename T> void input_integer(T& var) {
            var = 0; T sign = 1;
            int cc = getchar_unlocked();
            for (; cc<'0' || '9'<cc; cc = getchar_unlocked())
                if (cc == '-') sign = -1;
            for (; '0' <= cc&&cc <= '9'; cc = getchar_unlocked())
                var = (var << 3) + (var << 1) + cc - '0';
            var = var*sign;
        }
        inline int c() { return getchar_unlocked(); }
        inline MaiScanner& operator>>(int& var) { input_integer<int>(var); return *this; }
        inline MaiScanner& operator>>(long long& var) { input_integer<long long>(var); return *this; }
        inline MaiScanner& operator>>(string& var) {
            int cc = getchar_unlocked();
            for (; !isvisiblechar(cc); cc = getchar_unlocked());
            for (; isvisiblechar(cc); cc = getchar_unlocked())
                var.push_back(cc);
        }
        template<typename IT> void in(IT begin, IT end) { for (auto it = begin; it != end; ++it) *this >> *it; }
    };
    class MaiPrinter {
    public:
        template<typename T>
        void output_integer(T var) {
            if (var == 0) { putchar_unlocked('0'); return; }
            if (var < 0)
                putchar_unlocked('-'),
                var = -var;
            char stack[32]; int stack_p = 0;
            while (var)
                stack[stack_p++] = '0' + (var % 10),
                var /= 10;
            while (stack_p)
                putchar_unlocked(stack[--stack_p]);
        }
        inline MaiPrinter& operator<<(char c) { putchar_unlocked(c); return *this; }
        inline MaiPrinter& operator<<(int var) { output_integer<int>(var); return *this; }
        inline MaiPrinter& operator<<(long long var) { output_integer<long long>(var); return *this; }
        inline MaiPrinter& operator<<(char* str_p) { while (*str_p) putchar_unlocked(*(str_p++)); return *this; }
        inline MaiPrinter& operator<<(const string& str) {
            const char* p = str.c_str();
            const char* l = p + str.size();
            while (p < l) putchar_unlocked(*p++);
            return *this;
        }
        template<typename IT> void join(IT begin, IT end, char sep = '\n') { for (auto it = begin; it != end; ++it) *this << *it << sep; }
    };
}
MaiScanner scanner;
MaiPrinter printer;


class DGraphE {
public:
    typedef int W_T;
    struct Arc {
        int u, v;
        W_T value;
        Arc(int f = 0, int t = 0, W_T value = 0) :u(f), v(t), value(value) {}
        inline int to(int _v) const { return _v == v ? u : v; }
    };
    size_t n;
    vector<vector<int>> vertex_to;
    //vector<vector<int>> vertex_from;
    vector<Arc> arcs;

    DGraphE(int n = 1) :n(n), vertex_to(n){ }

    void resize(size_t _n) {
        n = _n;
        vertex_to.resize(_n);
    }
    void connect(int from, int to, W_T val = 0) {
        vertex_to[(size_t)from].push_back((int)arcs.size());
        //vertex_from[(size_t)to].push_back((int)edges.size());
        arcs.emplace_back(from, to, val);
    }
};


ll n, m, kei, ss, tt;

map<ll, ll> zip[200010];// [tower][floor] = zipped_floor;
vector<array<ll,3>> paths;

int main() {

    scanner >> n >> m >> kei >> ss >> tt;

    paths.reserve(m);

    repeat(i, m) {
        int a, b, c;
        scanner >> a >> b >> c;
        --a;
        zip[a][b] = 0;
        zip[a+1][c] = 0;
        paths.push_back({ a,b,c });
    }

    zip[0][ss] = 0;
    zip[n-1][tt] = 0;

    ll n_v = 0;
    repeat(i, n) {
        for (auto& p : zip[i]) {
            p.second = n_v++;
        }
    }
    DGraphE g(n_v);

    repeat(i, n) {
        ll last = -1;
        for (auto& p : zip[i]) {
            if (last >= 0) {
                g.connect(p.second, p.second - 1, p.first - last);
                g.connect(p.second - 1, p.second, p.first - last);
            }
            last = p.first;
        }
    }
    for (auto& a : paths) {
        g.connect(zip[a[0]][a[1]], zip[a[0] + 1][a[2]], 0);
    }

    ll start = zip[0][ss];
    ll goal = zip[n - 1][tt];

    priority_queue<pair<ll, int>, vector<pair<ll, int>>, greater<pair<ll, int>>> pq;
    vector<ll> visited(n_v, (ll)1e18);
    pq.emplace(0, start);
    visited[start] = 0;


    while (!pq.empty()) {
        auto p = pq.top(); pq.pop();
        ll dist = p.first;
        int idx = p.second;

        if (visited[idx] < dist) continue;
        if (idx == goal) {
            cout << dist << endl;
            return 0;
        }
        for (int ei : g.vertex_to[idx]) {
            auto arc = g.arcs[ei];
            if (visited[arc.v] > dist + arc.value) {
                pq.emplace(dist + arc.value, arc.v);
                visited[arc.v] = dist + arc.value;
            }
        }
    }

    cout << -1 << endl;


    return 0;
}
0