結果
問題 |
No.1722 [Cherry 3rd Tune C] In my way
|
ユーザー |
![]() |
提出日時 | 2021-10-29 21:23:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 528 bytes |
コンパイル時間 | 2,270 ms |
コンパイル使用メモリ | 183,236 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-07 09:33:35 |
合計ジャッジ時間 | 2,952 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 23 |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0;i<(n);i++) #define RREP(i,n) for(int i=(n-1);i>=0;i--) #define ALL(v) v.begin(),v.end() const int INF=1e9+7; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,m;cin>>n>>m; set<int> s{INF}; vector<int> v(n); REP(i,n)cin>>v[i]; REP(_,m){ int a;cin>>a; s.insert(a); } REP(i,n){ int p=*s.lower_bound(v[i]); if(p==INF)cout<<"Infinity"<<endl; else cout<<p-v[i]<<endl; } }