結果

問題 No.971 いたずらっ子
ユーザー Ogtsn99Ogtsn99
提出日時 2020-01-18 00:19:54
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 3,751 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 180,848 KB
実行使用メモリ 38,912 KB
最終ジャッジ日時 2024-04-25 02:05:51
合計ジャッジ時間 8,618 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 711 ms
38,784 KB
testcase_01 AC 717 ms
38,912 KB
testcase_02 AC 522 ms
29,952 KB
testcase_03 AC 559 ms
38,656 KB
testcase_04 AC 517 ms
36,736 KB
testcase_05 AC 563 ms
38,656 KB
testcase_06 AC 430 ms
30,720 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 133 ms
12,672 KB
testcase_09 AC 130 ms
12,032 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define rep(i,n) for(int (i)=0;(i)<(n);(i)++)
#define rrep(i,n) for(int (i)=((n)-1);(i)>=0;(i)--)
#define itn int
#define all(x) (x).begin(),(x).end()
#define F first
#define S second
const long long INF = 1LL << 60;
const int MOD = 1000000007;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
//https://www.creativ.xyz/dump-cpp-652/
#define repi(itr, ds) for (auto itr = ds.begin(); itr != ds.end(); itr++)
 
// vector
template <typename T>
istream &operator>>(istream &is, vector<T> &vec) {
    for (T &x : vec) is >> x;
    return is;
}
// pair
template <typename T, typename U>
ostream &operator<<(ostream &os, pair<T, U> &pair_var) {
    os << "(" << pair_var.first << ", " << pair_var.second << ")";
    return os;
}
// vector
template <typename T>
ostream &operator<<(ostream &os, const vector<T> &vec) {
    os << "{";
    for (int i = 0; i < vec.size(); i++) {
        os << vec[i] << (i + 1 == vec.size() ? "" : ", ");
    }
    os << "}";
    return os;
}
// map
template <typename T, typename U>
ostream &operator<<(ostream &os, map<T, U> &map_var) {
    os << "{";
    repi(itr, map_var) {
        os << *itr;
        itr++;
        if (itr != map_var.end()) os << ", ";
        itr--;
    }
    os << "}";
    return os;
}
// set
template <typename T>
ostream &operator<<(ostream &os, set<T> &set_var) {
    os << "{";
    repi(itr, set_var) {
        os << *itr;
        itr++;
        if (itr != set_var.end()) os << ", ";
        itr--;
    }
    os << "}";
    return os;
}
 
#define DUMPOUT cerr
 
void dump_func() {
    DUMPOUT << endl;
}
template <class Head, class... Tail>
void dump_func(Head &&head, Tail &&... tail) {
    DUMPOUT << head;
    if (sizeof...(Tail) > 0) {
        DUMPOUT << ", ";
    }
    dump_func(std::move(tail)...);
}

#ifdef DEBUG_
#define DEB
#define dump(...)                                                              \
    DUMPOUT << "  " << string(#__VA_ARGS__) << ": "                            \
            << "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]"        \
            << endl                                                            \
            << "    ",                                                         \
        dump_func(__VA_ARGS__)
#else
#define DEB if (false)
#define dump(...)
#endif

signed main(void) { cin.tie(0); ios::sync_with_stdio(false);
    int h,w; cin>>h>>w;
    vector <vector<char>> g(h,vector <char>(w));
    rep(i,h)rep(j,w) cin>>g[i][j];
    vector <vector<int>> d(h,vector <int>(w, INF));
    
    priority_queue <tuple<int,int,int>, vector <tuple<int,int,int>>, greater <tuple<int,int,int>>> pq;
    pq.push(make_tuple(0,0,0));
    d[0][0] = 0;
    while(!pq.empty()){
        auto tmp = pq.top(); pq.pop();
        int cost = get <0>(tmp), y = get <1>(tmp), x = get <2>(tmp);
        if(y+1 < h){
            if(g[y+1][x] == 'k'){
                if(chmin(d[y+1][x],cost + y+2+x)){
                    pq.push(make_tuple(d[y+1][x], y+1, x));
                }
            }else{
                if(chmin(d[y+1][x], cost + 1)){
                    pq.push(make_tuple(d[y+1][x], y+1, x));
                }
            }
        }
        if(x+1 < w){
            if(g[y][x+1] == 'k'){
                if(chmin(d[y][x+1],cost + y+2+x)){
                    pq.push(make_tuple(d[y][x+1], y, x+1));
                }
            }else{
                if(chmin(d[y][x+1],cost + 1)){
                    pq.push(make_tuple(d[y][x+1], y, x+1));
                }
            }
        }
    }
    cout<<d[h-1][w-1]<<endl;
}
0