結果
問題 | No.1283 Extra Fee |
ユーザー | gazelle |
提出日時 | 2020-11-06 22:00:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 171 ms / 2,000 ms |
コード長 | 6,092 bytes |
コンパイル時間 | 1,548 ms |
コンパイル使用メモリ | 138,280 KB |
実行使用メモリ | 20,596 KB |
最終ジャッジ日時 | 2024-11-16 06:39:54 |
合計ジャッジ時間 | 5,302 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
11,040 KB |
testcase_01 | AC | 6 ms
11,080 KB |
testcase_02 | AC | 5 ms
11,160 KB |
testcase_03 | AC | 5 ms
10,980 KB |
testcase_04 | AC | 5 ms
11,088 KB |
testcase_05 | AC | 5 ms
11,088 KB |
testcase_06 | AC | 5 ms
11,120 KB |
testcase_07 | AC | 5 ms
11,072 KB |
testcase_08 | AC | 6 ms
11,148 KB |
testcase_09 | AC | 5 ms
10,980 KB |
testcase_10 | AC | 5 ms
10,980 KB |
testcase_11 | AC | 13 ms
12,424 KB |
testcase_12 | AC | 14 ms
13,520 KB |
testcase_13 | AC | 11 ms
11,780 KB |
testcase_14 | AC | 30 ms
13,020 KB |
testcase_15 | AC | 46 ms
15,204 KB |
testcase_16 | AC | 14 ms
12,028 KB |
testcase_17 | AC | 146 ms
20,596 KB |
testcase_18 | AC | 152 ms
16,844 KB |
testcase_19 | AC | 165 ms
17,072 KB |
testcase_20 | AC | 153 ms
16,780 KB |
testcase_21 | AC | 156 ms
16,872 KB |
testcase_22 | AC | 138 ms
16,416 KB |
testcase_23 | AC | 140 ms
17,072 KB |
testcase_24 | AC | 159 ms
17,044 KB |
testcase_25 | AC | 171 ms
17,140 KB |
testcase_26 | AC | 170 ms
17,156 KB |
testcase_27 | AC | 170 ms
17,168 KB |
testcase_28 | AC | 171 ms
17,216 KB |
testcase_29 | AC | 160 ms
20,320 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <set> #include <unordered_set> #include <unordered_map> #include <stack> #include <queue> #include <algorithm> #include <cassert> #include <random> #include <iomanip> #include <bitset> #include <array> #define FOR(i, n, m) for(ll i = (n); i < (ll)(m); i++) #define REP(i, n) FOR(i, 0, n) #define ALL(v) v.begin(), v.end() #define pb push_back using namespace std; using ll = long long; using P = pair<ll, ll>; constexpr ll inf = 1000000000; constexpr ll mod = 1000000007; constexpr long double eps = 1e-6; template<typename T1, typename T2> ostream& operator<<(ostream& os, pair<T1, T2> p) { os << to_string(p.first) << " " << to_string(p.second); return os; } template<typename T> ostream& operator<<(ostream& os, vector<T>& v) { REP(i, v.size()) { if(i) os << " "; os << v[i]; } return os; } struct modint { ll n; public: modint(const ll n = 0) : n((n % mod + mod) % mod) {} static modint pow(modint a, int m) { modint r = 1; while(m > 0) { if(m & 1) { r *= a; } a = (a * a); m /= 2; } return r; } modint &operator++() { *this += 1; return *this; } modint &operator--() { *this -= 1; return *this; } modint operator++(int) { modint ret = *this; *this += 1; return ret; } modint operator--(int) { modint ret = *this; *this -= 1; return ret; } modint operator~() const { return (this -> pow(n, mod - 2)); } // inverse friend bool operator==(const modint& lhs, const modint& rhs) { return lhs.n == rhs.n; } friend bool operator<(const modint& lhs, const modint& rhs) { return lhs.n < rhs.n; } friend bool operator>(const modint& lhs, const modint& rhs) { return lhs.n > rhs.n; } friend modint &operator+=(modint& lhs, const modint& rhs) { lhs.n += rhs.n; if (lhs.n >= mod) lhs.n -= mod; return lhs; } friend modint &operator-=(modint& lhs, const modint& rhs) { lhs.n -= rhs.n; if (lhs.n < 0) lhs.n += mod; return lhs; } friend modint &operator*=(modint& lhs, const modint& rhs) { lhs.n = (lhs.n * rhs.n) % mod; return lhs; } friend modint &operator/=(modint& lhs, const modint& rhs) { lhs.n = (lhs.n * (~rhs).n) % mod; return lhs; } friend modint operator+(const modint& lhs, const modint& rhs) { return modint(lhs.n + rhs.n); } friend modint operator-(const modint& lhs, const modint& rhs) { return modint(lhs.n - rhs.n); } friend modint operator*(const modint& lhs, const modint& rhs) { return modint(lhs.n * rhs.n); } friend modint operator/(const modint& lhs, const modint& rhs) { return modint(lhs.n * (~rhs).n); } }; istream& operator>>(istream& is, modint m) { is >> m.n; return is; } ostream& operator<<(ostream& os, modint m) { os << m.n; return os; } #define MAX_N 1010101 long long extgcd(long long a, long long b, long long& x, long long& y) { long long d = a; if (b != 0) { d = extgcd(b, a % b, y, x); y -= (a / b) * x; } else { x = 1; y = 0; } return d; } long long mod_inverse(long long a, long long m) { long long x, y; if(extgcd(a, m, x, y) == 1) return (m + x % m) % m; else return -1; } vector<long long> fact(MAX_N+1, inf); long long mod_fact(long long n, long long& e) { if(fact[0] == inf) { fact[0]=1; if(MAX_N != 0) fact[1]=1; for(ll i = 2; i <= MAX_N; ++i) { fact[i] = (fact[i-1] * i) % mod; } } e = 0; if(n == 0) return 1; long long res = mod_fact(n / mod, e); e += n / mod; if((n / mod) % 2 != 0) return (res * (mod - fact[n % mod])) % mod; return (res * fact[n % mod]) % mod; } // return nCk long long mod_comb(long long n, long long k) { if(n < 0 || k < 0 || n < k) return 0; long long e1, e2, e3; long long a1 = mod_fact(n, e1), a2 = mod_fact(k, e2), a3 = mod_fact(n - k, e3); if(e1 > e2 + e3) return 0; return (a1 * mod_inverse((a2 * a3) % mod, mod)) % mod; } using mi = modint; mi mod_pow(mi a, ll n) { mi ret = 1; mi tmp = a; while(n > 0) { if(n % 2) ret *= tmp; tmp = tmp * tmp; n /= 2; } return ret; } ll gcd(ll a, ll b) { if (b == 0) return a; return gcd(b, a % b); } ll dist[505][505][2]; int main() { cin.tie(0); ios::sync_with_stdio(false); int n, m; cin >> n >> m; vector<vector<ll>> cost(n, vector<ll>(n, 0)); REP(i, m) { int h, w, c; cin >> h >> w >> c; h--; w--; cost[h][w] = c; } REP(i, n) REP(j, n) REP(k, 2) dist[i][j][k] = inf * inf; dist[0][0][0] = 0; priority_queue<pair<ll, pair<pair<int, int>, int>>, vector<pair<ll, pair<pair<int, int>, int>>>, greater<pair<ll, pair<pair<int, int>, int>>>> q; q.push({0LL, {{0, 0}, 0}}); int di[] = {1, -1, 0, 0}, dj[] = {0, 0, 1, -1}; while(!q.empty()) { auto tmp = q.top(); ll cos = tmp.first; auto [i, j] = tmp.second.first; int k = tmp.second.second; q.pop(); REP(r, 4) { int ni = i + di[r], nj = j + dj[r]; if(ni < 0 || ni >= n || nj < 0 || nj >= n) continue; if(k == 0) { if(dist[ni][nj][0] > cos + 1 + cost[ni][nj]) { dist[ni][nj][0] = cos + 1 + cost[ni][nj]; q.push({dist[ni][nj][0], {{ni, nj}, 0}}); } if(dist[ni][nj][1] > cos + 1) { dist[ni][nj][1] = cos + 1; q.push({dist[ni][nj][1], {{ni, nj}, 1}}); } } else { if(dist[ni][nj][1] > cos + 1 + cost[ni][nj]) { dist[ni][nj][1] = cos + 1 + cost[ni][nj]; q.push({dist[ni][nj][1], {{ni, nj}, 1}}); } } } } cout << min(dist[n - 1][n - 1][0], dist[n - 1][n - 1][1]) << endl; return 0; }