結果
問題 | No.4 おもりと天秤 |
ユーザー | mannshi222 |
提出日時 | 2022-04-03 22:08:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,402 bytes |
コンパイル時間 | 1,084 ms |
コンパイル使用メモリ | 86,244 KB |
実行使用メモリ | 10,144 KB |
最終ジャッジ日時 | 2024-05-03 07:43:40 |
合計ジャッジ時間 | 8,135 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <stack> #include <algorithm> #include <cassert> using namespace std; void pall(stack<int> c, vector<int> w) { int sum = 0; while( !c.empty() ) { sum += w[c.top()]; cout << w[c.top()]<< " "; c.pop(); } cout << endl << "sum=" << sum << endl; } int main() { int N; cin >> N; vector<int> W(N); for(int i = 0 ; i < N; i++ ){ cin >> W[i]; } sort( W.begin(), W.end() ); int half = 0; for( auto x: W ) { half += x; } if( half%2 == 1 ) { cout << "impossible" << endl; return 0; } half = half / 2; stack<int> s; int sum =0; int i = 0; int a = 0; int b = 0; while( 1 ) { if( i >= N ) { if( !s.empty() ) { i = s.top(); s.pop(); sum -= W[i]; i++; } else { cout << "impossible" << endl; return 0; } /* if( i == N-1 ) { // cout << __LINE__ << endl; cout << "impossible" << endl; return 0; } i = s.top(); s.pop(); sum -= W[i]; i++; */ } else if( half == sum + W[i] ) { cout << "possible" << endl; return 0; } else if( half > sum + W[i] ) { sum += W[i]; s.push( i ); i++; } else if( half < sum + W[i] ) { if( s.empty() ) { cout << "impossible" << endl; return 0; } i = s.top(); sum -= W[i]; // assert( sum > 0 ); i++; s.pop(); } else { cout << "arienai" << endl; return 0; } } return 0; }