結果

問題 No.335 門松宝くじ
ユーザー koyoprokoyopro
提出日時 2020-01-01 23:04:19
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 3,791 bytes
コンパイル時間 1,206 ms
コンパイル使用メモリ 165,716 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 05:59:19
合計ジャッジ時間 3,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 52 ms
5,376 KB
testcase_06 AC 78 ms
5,376 KB
testcase_07 AC 139 ms
5,376 KB
testcase_08 AC 138 ms
5,376 KB
testcase_09 AC 207 ms
5,376 KB
testcase_10 AC 204 ms
5,376 KB
testcase_11 AC 206 ms
5,376 KB
testcase_12 AC 207 ms
5,376 KB
testcase_13 AC 208 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define int long long
#define FOR(i, a, b) for(int i=(a);i<(b);i++)
#define RFOR(i, a, b) for(int i=(b-1);i>=(a);i--)
#define REP(i, n) for(int i=0; i<(n); i++)
#define RREP(i, n) for(int i=(n-1); i>=0; i--)
#define ALL(a) (a).begin(),(a).end()
#define UNIQUE_SORT(l) sort(ALL(l)); l.erase(unique(ALL(l)), l.end());
#define CONTAIN(a, b) find(ALL(a), (b)) != (a).end()
#define array2(type, x, y) array<array<type, y>, x>
#define vector2(type) vector<vector<type> >
#define out(...) printf(__VA_ARGS__)

int dxy[] = {0, 1, 0, -1, 0};

/*================================*/

template<typename T> class ST {
    using F = function<T(T, T)>;
    int size;
    T init;
    F f;
    vector<T> seg;
    int depth = 0;
    
public: ST(int size, T init, F f): size(size), init(init), f(f) {
    while (1<<depth < size) depth++;
    seg.assign(2<<depth, init);
}
    
    void update(int k, T t) {
        k += 1 << depth;
        seg[k] = t;
        while(k>>=1) seg[k] = f(seg[2*k], seg[2*k+1]);
    }
    
    T query(int a, int b) {
        a += 1<<depth;
        b += 1<<depth;
        T l = init;
        T r = init;
        while(a < b) {
            if (a & 1) l = f(l, seg[a++]);
            if (b & 1) r = f(r, seg[--b]);
            a >>= 1;
            b >>= 1;
        }
        return f(l, r);
    }
    
    T operator[] (int k) {
        return seg[k + (1<<depth)];
    }
};

int N,M,L;

int score(int i, int j, ST<int> *maxt, ST<int> *mint) {
    int iv = (*maxt)[i];
    int jv = (*maxt)[j];
    int score = 0;
    if (iv > jv) {
        // 左側にivより小さいものがあればivをスコアにできる
        if (iv > mint->query(0, i)) {
            score = max(score, iv);
        }
        // 間にivより大きいものがあればそれをスコアにできる
        int a = maxt->query(i+1, j+1);
        if (iv < a) score = max(score, a);
        // 間にjvより小さいものがあればivをスコアにできる
        if (jv > mint->query(i+1, j+1)) score = max(score, iv);
        // 右にjvより大きいものがあればivかどちらか大きい方をスコアにできる
        int b = maxt->query(j+1, N);
        if (b > jv) score = max(score, max(iv, b));
        // それ以外は0
    } else {
        // (上記と逆パターン)
        // 右側にjvより小さいものがあればjvをスコアにできる
        if (jv > mint->query(j+1, N)) score = max(score, jv);
        // 間にjvより大きいものがあればそれをスコアにできる
        int a = maxt->query(i+1, j+1);
        if (jv < a) score = max(score, a);
        // 間にivより小さいものがあればjvをスコアにできる
        if (iv > mint->query(i+1, j+1)) score = max(score, jv);
        // 左にivより大きいものがあればjvかどちらか大きい方をスコアにできる
        int b = maxt->query(0, i);
        if (iv < b) score = max(score, max(jv, b));
    }
    return score;
}

signed main()
{
#if DEBUG
    std::ifstream in("input.txt");
    std::cin.rdbuf(in.rdbuf());
#endif
    cin>>N>>M;
    
    int e;
    int selected = -1;
    int maxScore = -1;
    ST<int> maxt(N, 0, [](int a, int b){return max(a, b);});
    ST<int> mint(N, LONG_LONG_MAX, [](int a, int b){return min(a, b);});
    REP(m, M) {
        int s = 0;
        REP(i, N) {
            cin >> e;
            maxt.update(i, e);
            mint.update(i, e);
        }
        
        FOR(i, 0, N-1) FOR(j, i+1, N) {
//            out("%lld,%lld: %lld\n", i, j, score(i, j, &maxt, &mint));
            s += score(i, j, &maxt, &mint);
        }
        if (maxScore < s) {
            maxScore = s;
            selected = m;
        }
    }
    
     cout << selected << endl;
    
    return 0;
}
0