結果

問題 No.2095 High Rise
ユーザー hoktohokto
提出日時 2022-10-07 22:02:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 2,001 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 205,196 KB
実行使用メモリ 18,948 KB
最終ジャッジ日時 2023-09-03 12:31:07
合計ジャッジ時間 4,620 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,380 KB
testcase_17 AC 17 ms
4,892 KB
testcase_18 AC 11 ms
4,428 KB
testcase_19 AC 4 ms
4,376 KB
testcase_20 AC 17 ms
4,928 KB
testcase_21 AC 32 ms
6,804 KB
testcase_22 AC 131 ms
18,816 KB
testcase_23 AC 131 ms
18,932 KB
testcase_24 AC 131 ms
18,948 KB
testcase_25 AC 130 ms
18,836 KB
testcase_26 AC 131 ms
18,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define Rep(i,h,t) for(int i=(int)h;i<(int)t;i++)
#define Rrep(i,n) for(int i=(int)n;i>=0;i--)
#define RRep(i,h,t) for(int i=(int)h;i>=(int)t;i--)
#define UNIQ(v) v.erase(unique(v.begin(),v.end()),v.end());
#define pb push_back
#define Fi first
#define Se second

template<typename T>
bool chmax(T& vmax,const T& v)
{
    if(vmax<v)
    {
        vmax=v;
        return true;
    }
    return false;
}

template<typename T>
bool chmin(T& vmin,const T& v)
{
    if(vmin>v)
    {
        vmin=v;
        return true;
    }
    return false;
}

using namespace std;

using ll=long long;
using lb=long double;
using veci=vector<int>;
using vec2i=vector<vector<int>>;
using vecll=vector<ll>;
using vec2ll=vector<vector<ll>>;
using p2i=pair<int,int>;
using p2ll=pair<ll,ll>;
using m2i=map<int,int>;
using m2ll=map<ll,ll>;
using msi=map<string,int>;


ll gcd(ll a,ll b)
{
    if(b==0)
    {
        return a;
    }
    return gcd(b,a%b);
}

ll lcm(ll a,ll b)
{
    return ll(a/gcd(a,b))*b;
}

void yn_out(bool b,string yes_out="Yes",string no_out="No")
{
    cout<<(b ? yes_out : no_out)<<endl;
}

ll ceilll(ll a,ll b)
{
    return (a+b-1)/b;
}

const int MOD=1e9+7;
//const int MOD=998244353;
const int dirx[4]={1,0,-1,0};
const int diry[4]={0,1,0,-1};


int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    //cout<<fixed<<setprecision(9);
    int N,M;
    cin>>N>>M;
    if(N==1){
        cout<<0<<endl;
        return 0;
    }
    ll INF=1e16;
    vec2ll A(N+1,vecll(M,0));
    rep(i,N){
        rep(j,M){
            cin>>A[i+1][j];
        }
    }
    vec2ll dp(N+1,vecll(M,INF));
    rep(j,M){
        dp[0][j]=A[0][j];
    }
    rep(i,N){
        ll mn = INF;
        rep(j,M){
            dp[i+1][j]=dp[i][j]+A[i+1][j];
            chmin(mn,dp[i+1][j]);
        }
        rep(j,M){
            chmin(dp[i+1][j],mn+A[i+1][j]);
        }
    }
    cout<<*min_element(dp[N].begin(),dp[N].end())<<endl;
    return 0;
}
0