結果

問題 No.709 優勝可能性
ユーザー ldsybldsyb
提出日時 2018-06-30 11:59:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 519 ms / 3,500 ms
コード長 1,206 bytes
コンパイル時間 1,550 ms
コンパイル使用メモリ 173,136 KB
実行使用メモリ 9,820 KB
最終ジャッジ日時 2024-07-01 00:52:12
合計ジャッジ時間 6,494 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 251 ms
6,940 KB
testcase_11 AC 168 ms
6,940 KB
testcase_12 AC 404 ms
6,940 KB
testcase_13 AC 365 ms
7,592 KB
testcase_14 AC 335 ms
7,724 KB
testcase_15 AC 300 ms
7,752 KB
testcase_16 AC 289 ms
8,180 KB
testcase_17 AC 281 ms
9,820 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 515 ms
7,808 KB
testcase_21 AC 519 ms
7,764 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main()
{
    int n, m;
    cin >> n >> m;
    int r[n][m];
    for (int i = 0; i < n; i++)
    {
        for (int j = 0; j < m; j++)
        {
            cin >> r[i][j];
        }
    }
    int maxi[m]{}, deg[n]{}, ans = 0;
    stack<int> st[m];
    for (int i = 0; i < n; i++)
    {
        for (int j = 0; j < m; j++)
        {
            if (maxi[j] < r[i][j])
            {
                while (!st[j].empty())
                {
                    int x = st[j].top();
                    st[j].pop();
                    deg[x]--;
                    if (deg[x] == 0)
                    {
                        ans--;
                    }
                }
                st[j].push(i);
                maxi[j] = r[i][j];
                if (deg[i] == 0)
                {
                    ans++;
                }
                deg[i]++;
            }
            else if (maxi[j] == r[i][j])
            {
                if (deg[i] == 0)
                {
                    ans++;
                }
                deg[i]++;
                st[j].push(i);
            }
        }
        cout << ans << endl;
    }
    return 0;
}
0