結果
問題 | No.709 優勝可能性 |
ユーザー | jupiro |
提出日時 | 2020-03-13 19:38:56 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 144 ms / 3,500 ms |
コード長 | 1,721 bytes |
コンパイル時間 | 1,187 ms |
コンパイル使用メモリ | 125,428 KB |
実行使用メモリ | 23,808 KB |
最終ジャッジ日時 | 2024-11-22 15:44:47 |
合計ジャッジ時間 | 5,042 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 57 ms
9,216 KB |
testcase_11 | AC | 31 ms
9,216 KB |
testcase_12 | AC | 116 ms
12,416 KB |
testcase_13 | AC | 126 ms
15,616 KB |
testcase_14 | AC | 118 ms
15,488 KB |
testcase_15 | AC | 114 ms
15,616 KB |
testcase_16 | AC | 110 ms
16,512 KB |
testcase_17 | AC | 120 ms
23,808 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 143 ms
15,488 KB |
testcase_21 | AC | 144 ms
15,488 KB |
testcase_22 | AC | 1 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1 << 28; //constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ ll N, M; scanf("%lld %lld", &N, &M); vector<stack<pair<ll, int>>> vst(M); vector<int> flag(N); vector<vector<ll>> R(N, vector<ll>(M)); int res = 0; for (int i = 0; i < N; i++)for (int j = 0; j < M; j++) scanf("%lld", &R[i][j]); for (ll i = 0; i < N; i++) { for (ll j = 0; j < M; j++) { while (!vst[j].empty() && vst[j].top().first < R[i][j]) { auto cur = vst[j].top(); vst[j].pop(); flag[cur.second]--; if (flag[cur.second] == 0) res--; } if (vst[j].empty() || vst[j].top().first == R[i][j]) { flag[i]++; vst[j].emplace(R[i][j], i); if (flag[i] == 1) res++; } } printf("%d\n", res); } return 0; /* おまじないを使ったらscanfとprintf関連注意!!!!!!!!!!!! */ }