# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
472889 | SaraMostafa | Deda (COCI17_deda) | C++14 | 96 ms | 6784 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include<unordered_map>
using namespace std;
#define ll long long
#define endl "\n"
#define Sara ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
const long long mod=998244353;
const double PI=acos(-1);
int main()
{
//freopen("input.in","r",stdin);
Sara
ll n,q;
cin>>n>>q;
map<ll,ll>stops;
vector<ll>v(n+1);
while(q--)
{
char o;
cin>>o;
if(o=='M')
{
ll x,c;
cin>>x>>c;
stops[c]=x;
}
else
{
ll y,b;
cin>>y>>b;
bool ok=0;
for(auto i:stops)
{
if(i.second>y)
break;
if(i.first>=b){
cout<<i.first<<endl;
ok=1;
break;
}
}
if(!ok)
cout<<-1<<endl;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |