結果

問題 No.2650 [Cherry 6th Tune *] セイジャク
ユーザー rotti_coderrotti_coder
提出日時 2024-02-23 22:08:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,081 bytes
コンパイル時間 2,464 ms
コンパイル使用メモリ 219,380 KB
実行使用メモリ 14,956 KB
最終ジャッジ日時 2024-09-29 06:50:30
合計ジャッジ時間 13,277 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 326 ms
14,952 KB
testcase_10 AC 344 ms
14,952 KB
testcase_11 AC 326 ms
14,952 KB
testcase_12 AC 337 ms
14,952 KB
testcase_13 AC 348 ms
14,948 KB
testcase_14 AC 340 ms
14,952 KB
testcase_15 AC 326 ms
14,952 KB
testcase_16 AC 338 ms
14,184 KB
testcase_17 AC 329 ms
14,056 KB
testcase_18 AC 337 ms
14,180 KB
testcase_19 AC 348 ms
14,184 KB
testcase_20 AC 342 ms
14,184 KB
testcase_21 AC 334 ms
14,180 KB
testcase_22 AC 338 ms
14,184 KB
testcase_23 AC 310 ms
14,184 KB
testcase_24 AC 317 ms
14,184 KB
testcase_25 AC 315 ms
14,308 KB
testcase_26 AC 314 ms
14,184 KB
testcase_27 AC 314 ms
14,180 KB
testcase_28 AC 312 ms
14,184 KB
testcase_29 AC 311 ms
14,056 KB
testcase_30 AC 333 ms
14,312 KB
testcase_31 AC 324 ms
14,956 KB
testcase_32 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main()
{
  long long n,A,t,a,b;
  cin >> n >> A;
  vector<long long>iti(n);
  vector<pair<long long,long long>>iti2(n);
  for(int i=0;i<n;i++)cin >> iti[i];
  for(int i=0;i<n;i++)iti2[i].first=iti[i],iti2[i].second=i;
  sort(iti2.begin(),iti2.end());
  vector<long long>ans(n,-1);
  vector<pair<long long,long long>>start;
  vector<pair<long long,long long>>goal;
  cin >> t;
  for(int q=0;q<t;q++){
    cin >> a >> b;
    start.push_back(make_pair(a,q+1));
    goal.push_back(make_pair(b+1,q+1));
  }
  int x=0,y=0;
  sort(start.begin(),start.end());
  sort(goal.begin(),goal.end());
  set<long long>st;
  priority_queue<long long>prq;
  for(int i=0;i<n;i++){
    while(x<n && start[x].first<=iti2[i].first){
      prq.push(start[x].second);
      x++;
    }
    while(y<n && goal[y].first<=iti2[i].first){
      st.insert(goal[y].second);
      y++;
    }
    while(prq.size()>0 && st.count(prq.top())>0)prq.pop();
    if(prq.size()>0)ans[iti2[i].second]=prq.top();
  }
  for(int i=0;i<n;i++)cout << ans[i] << endl;
  return 0;
}
0