結果
問題 | No.949 飲酒プログラミングコンテスト |
ユーザー | 沙耶花 |
提出日時 | 2019-12-13 08:27:52 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 760 bytes |
コンパイル時間 | 2,614 ms |
コンパイル使用メモリ | 207,360 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-26 10:30:07 |
合計ジャッジ時間 | 4,096 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 3 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 3 ms
5,376 KB |
testcase_18 | AC | 5 ms
5,376 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | AC | 6 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 6 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 5 ms
5,376 KB |
testcase_32 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 10000000000000000 int main(){ int N; cin>>N; vector<int> A(N+1),B(N+1); for(int i=0;i<N+1;i++){ cin>>A[i]; } for(int i=0;i<N+1;i++){ cin>>B[i]; } A.push_back(-1000000000); B.push_back(-1000000000); multiset<int> D; for(int i=0;i<N;i++){ int a; cin>>a; D.insert(a); } int a = 0; int b = 0; int now = A[0] + B[0]; for(int i=0;i<N;i++){ if(A[a]-A[a+1] < B[b]-B[b+1]){ now -= A[a]-A[a+1]; a++; } else{ now -= B[b]-B[b+1]; b++; } auto it = D.upper_bound(now); if(it==D.begin())continue; it--; D.erase(it); } cout<<N-D.size()<<endl; return 0; }