結果
問題 | No.1283 Extra Fee |
ユーザー | FUN_era1 |
提出日時 | 2020-11-10 20:14:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,732 bytes |
コンパイル時間 | 2,177 ms |
コンパイル使用メモリ | 205,832 KB |
実行使用メモリ | 9,472 KB |
最終ジャッジ日時 | 2024-07-22 18:09:22 |
合計ジャッジ時間 | 6,052 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#include<bits/stdc++.h> //#include <atcoder/all> #define INF 1e9 #define rep(i,n)for(int i=0;(i)<(int)(n);i++) #define REP(i,a,b)for(int i=(int)(a);(i)<=(int)(b);i++) #define ALL(a) (a).begin(),(a).end() #define chmax(a, b) a = max(a, b) #define chmin(a, b) a = min(a, b) #define pb push_back #define fi first #define se second #define sz(x) ((int)x.size()) using namespace std; //using namespace atcoder; using ld = long double; using ll = long long; using P = pair<ll, ll>; using Graph = vector<vector<int>>; const ll ZER = 0; const ll MOD = 1e9 + 7; ll dp[501][501][2]; int main(){ // std::cin.tie(0); // std::ios::sync_with_stdio(false); int n, m; cin >> n >> m; vector<vector<ll>> fld(n + 1, vector<ll> (n + 1, 1)); rep(i, n + 1)rep(j, n + 1)rep(k, 2)dp[i][j][k] = (1LL << 63); dp[0][0][0] = 0; dp[1][1][0] = 0; dp[1][1][1] = 0; rep(i, m){ ll h, w, c; cin >> h >> w >> c; fld[h][w] += c; } REP(i, 1, n){ REP(j, 1, n){ chmin(dp[i][j][0], dp[i][j - 1][0] + fld[i][j]); chmin(dp[i][j][0], dp[i - 1][j][0] + fld[i][j]); chmin(dp[i][j][1], dp[i][j - 1][0]); chmin(dp[i][j][1], dp[i - 1][j][0]); chmin(dp[i][j][1], dp[i][j - 1][1] + fld[i][j]); chmin(dp[i][j][1], dp[i - 1][j][1] + fld[i][j]); } } ll res = min(dp[n][n][0], dp[n][n][1]) + 1; cout << res << endl; // rep(i, n + 1){rep(j, n + 1)cout << dp[i][j][0] << " ";cout << endl;} // cout << endl; // rep(i, n + 1){rep(j, n + 1)cout << dp[i][j][1] << " ";cout << endl;} // cout << endl; // rep(i, n + 1){rep(j, n + 1)cout << fld[i][j] << " ";cout << endl;} // cout << endl; }