結果

問題 No.3597 Queen Score Attack 2
コンテスト
ユーザー t0yama
提出日時 2026-07-24 21:34:03
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.90.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 1,497 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,631 ms
コンパイル使用メモリ 357,016 KB
実行使用メモリ 34,816 KB
最終ジャッジ日時 2026-07-24 21:34:13
合計ジャッジ時間 7,055 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 1 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>
#define ull unsigned ll
#define ll long long
#define ld long double
#define INFL (ll)3e18
#define INF (int)2e9
#define MOD (ll)998244353
#define MODO (ll)(1e9+7)
using namespace std;

template<typename T>istream&operator>>(istream&is,vector<T>&v);
template<typename... Ts>istream&operator>>(istream&is,tuple<Ts...>& t);
template<typename T1,typename T2>istream&operator>>(istream&is,pair<T1,T2>&p){is>>p.first>>p.second;return is;}
template<typename T>istream&operator>>(istream&is,vector<T>&v){for(T&in:v)is>>in;return is;}
template<typename... Ts>istream& operator>>(istream& is, tuple<Ts...>& t) {apply([&](auto&... args) {((is >> args), ...);},t);return is;}

int main(void){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int h,w;
    cin >> h >> w;
    pair<int,int> s;
    cin >> s;
    int n;
    cin >> n;
    
    vector<vector<ll>> sc(n,vector<ll>(3));
    cin >> sc;
    vector<ll> dp(n);
    
    ll px = s.first,py = s.second;
    
    ll ans = 0;
    for(int i = 0;i < n;i++){
        ll x = sc[i][0],y = sc[i][1],c = sc[i][2];
        x--,y--;
        dp[i] = c;
        if(i == 0 && !(x == px || y == py || x-y == px-py || x+y == px+py)){
            dp[i] = 0;
        }
        if(i >= 2) dp[i] = max(dp[i],dp[i-2]+c);
        if(i > 0 && (x == px || y == py || x-y == px-py || x+y == px+py)){
            dp[i] = max(dp[i],dp[i-1]+c);
        }
        px = x,py = y;
        ans = max(ans,dp[i]);
    }
    
    cout << ans << endl;
}
0