結果
問題 | No.335 門松宝くじ |
ユーザー | Ysmr_Ry |
提出日時 | 2016-03-02 10:14:33 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,621 bytes |
コンパイル時間 | 652 ms |
コンパイル使用メモリ | 55,664 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 13:26:43 |
合計ジャッジ時間 | 4,787 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 357 ms
6,944 KB |
testcase_08 | AC | 303 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 512 ms
6,940 KB |
testcase_13 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:79:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 79 | scanf( "%d%d", &N, &M ); | ~~~~~^~~~~~~~~~~~~~~~~~ main.cpp:89:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 89 | scanf( "%d", E+j ); | ~~~~~^~~~~~~~~~~~~
ソースコード
// yukicoder 335 (http://yukicoder.me/problems/936) #include<cstdio> #include<algorithm> #include<vector> #include<limits> #define rep(i,a) for(int i=0;i<(a);++i) typedef long long ll; typedef std::pair<ll, int> P; const int MAX_M = 3, MAX_N = 800, INF = std::numeric_limits<int>::max()>>2; struct SegTree { std::vector<int> datMi, datMa; size_t sz; SegTree( size_t n ) { sz = 1; while( sz < n ) sz <<= 1; datMi.resize( 2*sz-1 ); datMa.resize( 2*sz-1 ); rep( i, 2*sz-1 ) { datMi[i] = INF; datMa[i] = -INF; } } void update( int k, int x ) { k += sz-1; datMi[k] = datMa[k] = x; while( k ) { k = (k-1)/2; datMi[k] = std::min( datMi[2*k+1], datMa[2*k+2] ); datMa[k] = std::max( datMi[2*k+1], datMa[2*k+2] ); } return; } int query( int a, int b, int k, int l, int r, bool isma ) { if( b <= l || r <= a ) return isma?-INF:INF; else if( a <= l && r <= b ) return (isma?datMa:datMi)[k]; else { int vl = query( a, b, 2*k+1, l, l+r>>1, isma ), vr = query( a, b, 2*k+2, l+r>>1, r, isma ); return isma?std::max(vl,vr):std::min(vl,vr); } } }; int N, M; int E[MAX_N]; bool judge( int a, int b, int c ) { int arr[3] = { a, b, c }; std::sort( arr, arr+3 ); return arr[1] == a || arr[1] == c; } int main() { scanf( "%d%d", &N, &M ); P ans( 0, 0 ); rep( i, M ) { SegTree seg( N ); rep( j, N ) { scanf( "%d", E+j ); seg.update( j, E[j] ); } ll s = 0; rep( j, N ) rep( k, j ) { int res = 0; if( k > 0 ) { int ma = seg.query( 0, k, 0, 0, seg.sz, true ), mi = seg.query( 0, k, 0, 0, seg.sz, false ); if( judge( ma, E[k], E[j] ) ) res = std::max( res, std::max( ma, std::max( E[k], E[j] ) ) ); if( judge( mi, E[k], E[j] ) ) res = std::max( res, std::max( mi, std::max( E[k], E[j] ) ) ); } if( k+1 < j ) { int ma = seg.query( k+1, j, 0, 0, seg.sz, true ), mi = seg.query( k+1, j, 0, 0, seg.sz, false ); if( judge( E[k], ma, E[j] ) ) res = std::max( res, std::max( ma, std::max( E[k], E[j] ) ) ); if( judge( E[k], mi, E[j] ) ) res = std::max( res, std::max( mi, std::max( E[k], E[j] ) ) ); } if( j < N-1 ) { int ma = seg.query( j+1, N, 0, 0, seg.sz, true ), mi = seg.query( j+1, N, 0, 0, seg.sz, false ); if( judge( E[k], E[j], ma ) ) res = std::max( res, std::max( ma, std::max( E[k], E[j] ) ) ); if( judge( E[k], E[j], mi ) ) res = std::max( res, std::max( mi, std::max( E[k], E[j] ) ) ); } s += res; } ans = std::max( ans, P( s, -i ) ); } printf( "%d\n", -ans.second ); return 0; }