結果

問題 No.709 優勝可能性
ユーザー kappybarkappybar
提出日時 2020-04-21 22:58:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 3,500 ms
コード長 1,274 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 182,052 KB
実行使用メモリ 34,432 KB
最終ジャッジ日時 2024-10-09 13:51:15
合計ジャッジ時間 6,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 137 ms
9,216 KB
testcase_11 AC 58 ms
9,088 KB
testcase_12 AC 304 ms
11,136 KB
testcase_13 AC 265 ms
10,752 KB
testcase_14 AC 219 ms
10,624 KB
testcase_15 AC 204 ms
10,972 KB
testcase_16 AC 311 ms
13,568 KB
testcase_17 AC 474 ms
34,432 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 411 ms
10,596 KB
testcase_21 AC 409 ms
10,624 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const int INF = 1e9;
const int MOD = 1000000007;

int main(){
    int n,m;
    cin >> n >> m;
    vector<vector<int>> R(n,vector<int>(m,0));
    rep(i,n)rep(j,m) cin >> R[i][j];
    vector<int> dp(n);
    vector<pair<int,set<int>>> mx(m);
    dp[0] = 1;
    rep(i,m) mx[i] = make_pair(R[0][i],set<int>{0});
    for(int i=1;i<n;i++){
        dp[i] = dp[i-1];
        bool i_in = false;
        rep(j,m){
            if(mx[j].first < R[i][j]){
                for(int p:mx[j].second){
                    bool ok = false;
                    rep(k,m){
                        if(k==j) continue;
                        if(mx[k].second.count(p) > 0){
                            ok = true;
                            break;
                        }
                    }
                    if(!ok) --dp[i];
                }
                i_in = true;
                mx[j] = make_pair(R[i][j],set<int>{i});       
            }else if(mx[j].first == R[i][j]){
                i_in = true;
                mx[j].second.insert(i);
            }
        }
        if(i_in) ++dp[i];
    }

    rep(i,n) cout << dp[i] << '\n';
    return 0;
}
0