結果

問題 No.2095 High Rise
ユーザー KKT89KKT89
提出日時 2022-10-13 07:13:29
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,578 bytes
コンパイル時間 1,605 ms
コンパイル使用メモリ 143,560 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-06-26 11:45:43
合計ジャッジ時間 4,017 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 15 ms
6,944 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 17 ms
6,944 KB
testcase_21 AC 28 ms
6,940 KB
testcase_22 AC 122 ms
7,168 KB
testcase_23 AC 123 ms
7,296 KB
testcase_24 AC 121 ms
7,296 KB
testcase_25 AC 117 ms
7,168 KB
testcase_26 AC 120 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <cstdio>
#include <ctime>
#include <assert.h>
#include <chrono>
#include <random>
#include <numeric>
#include <set>
#include <deque>
#include <stack>
#include <sstream>
#include <utility>
#include <cstring>
#include <unordered_map>
#include <unordered_set>
#include <tuple>
#include <array>
#include <bitset>
using namespace std;
typedef long long int ll;
typedef unsigned long long ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int n,m; cin >> n >> m;
    vector<vector<int>> a(n,vector<int>(m));
    for(int i=0;i<n;i++){
        for(int j=0;j<m;j++){
            cin >> a[i][j];
        }
    }
    if(n == 1){
        cout << 0 << endl;
        return 0;
    }
    vector<ll> dp(m);
    for(int i=0;i<m;i++){
        dp[i] = a[0][i];
    }
    for(int i=1;i<n;i++){
        vector<ll> ndp(m,1e18);
        ll mi = 1e18;
        for(int j=0;j<m;j++){
            ndp[j] = min(ndp[j], dp[j]+a[i][j]);
            mi = min(mi,dp[j]+a[i][j]);
        }
        for(int j=0;j<m;j++){
            ndp[j] = min(ndp[j], mi+a[i][j]);
        }
        swap(dp,ndp);
    }
    sort(dp.begin(), dp.end());
    cout << dp[0] << endl;
}
0