結果
問題 | No.4 おもりと天秤 |
ユーザー | hitoyozake |
提出日時 | 2018-05-15 20:37:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 971 bytes |
コンパイル時間 | 688 ms |
コンパイル使用メモリ | 77,392 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 12:10:44 |
合計ジャッジ時間 | 1,427 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <string> #include <vector> #include <stack> #include <algorithm> #include <numeric> int main() { int n = 0; std::cin >> n; bool found = false; std::vector< int > v; for( int i = 0; i < n; ++i ) { int tmp; std::cin >> tmp; v.push_back(tmp); } std::sort(v.begin(), v.end()); int sum = std::accumulate(v.begin(), v.end(), 0); int h = sum/2; for( auto it = v.rbegin(); it != v.rend(); ++it ) { //std::cout << "it: " << *it << std::endl; if(sum - *it >= h ) { sum -= *it; } else { sum -= *it; h -= *it; } //std::cout << "sum: " << sum << ", half:" << h << std::endl; } if( sum == 0 && h == 0 ) found = true; if( found ) std::cout << "possible" << std::endl; else std::cout << "impossible" << std::endl; }