結果

問題 No.1104 オンライン点呼
ユーザー blu3moblu3mo
提出日時 2020-05-12 22:36:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,962 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 195,796 KB
実行使用メモリ 4,860 KB
最終ジャッジ日時 2023-10-22 06:49:55
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge9 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 29 ms
4,860 KB
testcase_02 AC 28 ms
4,860 KB
testcase_03 AC 22 ms
4,860 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 14 ms
4,348 KB
testcase_08 WA -
testcase_09 AC 16 ms
4,860 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 10 ms
4,348 KB
testcase_12 AC 14 ms
4,348 KB
testcase_13 AC 11 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 18 ms
4,348 KB
testcase_16 AC 21 ms
4,596 KB
testcase_17 AC 13 ms
4,348 KB
testcase_18 AC 17 ms
4,348 KB
testcase_19 AC 24 ms
4,596 KB
testcase_20 AC 25 ms
4,596 KB
testcase_21 AC 25 ms
4,596 KB
testcase_22 AC 22 ms
4,348 KB
testcase_23 AC 17 ms
4,348 KB
testcase_24 AC 8 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//誤答テスト
#define _GLIBCXX_DEBUG

#include"bits/stdc++.h"
using namespace std;

//loops
#define REP(i,n) for(ll i=0;i<(ll)(n);i++)
#define REPD(i,n) for(ll i=(ll)(n)-1;i>=0;i--)
#define OneToN(i,n) for(ll i=1;i<(ll)(n+1);i++)
#define ZeroToN(i,n) for(ll i=0;i<(ll)(n+1);i++)
#define AToB(i,a,b) for(ll i=a;i<(ll)(b+1);i++)
#define FOR(i,a,b) for(ll i=(a);i<=(b);i++)
#define FORD(i,a,b) for(ll i=(a);i>=(b);i--)

//bitsearch
#define BITSEARCH(bit, n) for (int bit = 0; bit < (1<<n); ++bit)
#define isOne(bit, i) bit & (1<<i)


//arrays
#define ALL(x) (x).begin(),(x).end() //sortなどの引数を省略したい
#define SIZE(x) ((ll)(x).size()) //sizeをsize_tからllに直しておく
#define add push_back

template<typename T>
std::vector<T> slice(std::vector<T> const &v, int m, int n)
{
    auto first = v.cbegin() + m;
    auto last = v.cbegin() + n + 1;

    std::vector<T> vec(first, last);
    return vec;
}

//v need to be sorted
#define remove_unique(v) v.erase(unique(ALL(v)), v.end())

//comparision
template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

//pair
#define fir first
#define sec second
#define mp make_pair

//types
#define ll long long
#define vec vector
#define cord2d pair<int,int>
#define intP pair<int, int>

//UNCOMMENT WHEN NEEDED
//#define int ll

//input
template <class T> T get(){ T s; cin >> s; return(s);}
#define gi get<int>()
#define gs get<string>()
#define gll get<ll>()

template <class T> vector<T> getv(int n) { vec<T> v(n); REP(i, n) cin >> v[i]; return v; }
#define gim(n) getv<int>(n)
#define gsm(n) getv<string>(n)
#define gllm(n) getv<ll>(n)

//output
void print(int a){ cout << a << endl; }
void print(long long a){ cout << a << endl; }
void print(string a){ cout << a << endl; }
void print(char a){ cout << a << endl; }
void print(double a){ cout << a << endl; }
void print(double a, int dig){ cout << std::setprecision(dig) << a << endl; }

template <class T>ostream &operator<<(ostream &o,const vector<T>&v)
{o<<"{";for(int i=0;i<(int)v.size();i++)o<<(i>0?", ":"")<<v[i];o<<"}";return o;}

template <class T = int>
void print(vec<T> v){ cout << v << endl; }

template <class T = int>
void print2dVec(vec<vec<T>> v2d){for(vec<T> v: v2d) {print(v);}}

void YesNo1(bool i = true){ return print(i?"Yes":"No"); }
void YESNO2(bool i = true){ return print(i?"YES":"NO"); }

//debug output
#define var_name(var) #var
template <class T> void debug(T &var, int nest = 0, string before = "") { cout << string("          ", nest) << before; print(var); }

//name replacement
#define y0 y0__
#define y1 y1__
#define j0 j0__
#define j1 j1__

//bool lambdas
#define lamb(exp) [](auto i){return exp;}
#define isEven [](int i){return i % 2 == 0;}
#define isOdd [](int i){return i % 2 != 0;}

//constants
const ll INF = 1e18;
const int MOD = 1000000007;

//maths
int factorial(int k){ int sum = 1; for (int i = 1; i <= k; ++i) { sum *= i; } return sum; }

ll gcd(ll a, ll b) { if (b == 0) { return a; } return gcd(b, a % b); }
ll lcm(ll a, ll b) { ll temp = gcd(a, b); return temp ? (a / temp * b) : 0; }

////////////////////

void Main() {
//誤答テスト
    //code here

    int n = gi, k = gi;
    vec<int> ups = gim(n);
    vec<int> downs = gim(n);

    assert(1 <= n && n <= pow(10,5));
    assert(0 <= n && k <= pow(10,8));
    REP(i,n) {
        assert(0 <= ups[i] && ups[i] <= pow(10,8));
        assert(0 <= downs[i] && downs[i] <= pow(10,8));
    }

    if (n == 1) {
        print(0);
        return;
    }

    vec<ll> dp(n, INF);
    dp[0] = 0;
    REP(i,n-2) {
        chmin(dp[i+1], dp[i] + ups[i] + downs[i+1]);
        chmin(dp[i+2], dp[i] + ups[i] + downs[i+2] + k);
    }
    chmin(dp[n-1], dp[n-2] + ups[n-2] + downs[n-1]);

    //print(dp);
    //誤答テスト
    print(dp[n-1]);

}

signed main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    Main();
}
0