| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 820157 | tolbi | 팀들 (IOI15_teams) | C++17 | 4058 ms | 11640 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma optimize("Bismillahirrahmanirrahim");
//█▀█─█──█──█▀█─█─█
//█▄█─█──█──█▄█─█■█
//█─█─█▄─█▄─█─█─█─█
//Allahuekber
//ahmet23 orz...
//FatihSultanMehmedHan
//YavuzSultanSelimHan
//AbdulhamidHan
//Sani buyuk Osman Pasa Plevneden cikmam diyor
#define author tolbi
#include <bits/stdc++.h>
using namespace std;
template<typename T> istream& operator>>(istream& is, vector<T> &v){for (auto &it : v) is>>it;return is;}
template<typename T, size_t Y> istream& operator>>(istream& is, array<T,Y> &v){for (auto &it : v) is>>it;return is;}
template<typename T> ostream& operator<<(ostream& os, vector<T> &v){for (auto &it : v) os<<it<<" ";return os;}
template<typename T, size_t Y> ostream& operator<<(ostream& os, array<T,Y> &v){for (auto &it : v) os<<it<<" ";return os;}
template<typename X, typename Y> istream& operator>>(istream& is, pair<X,Y> &pr){return is<<pr.first<<" "<<pr.second;}
template<typename X, typename Y> ostream& operator<<(ostream& os, pair<X,Y> &pr){return os>>pr.first>>pr.second;}
#define deci(x) int x;cin>>x;
#define decstr(x) string x;cin>>x;
#define vint(x) vector<int> x
#define cinarr(x) for (auto &it : x) cin>>it;
#define coutarr(x) for (auto &it : x) cout<<it<<" ";cout<<endl;
#define sortarr(x) sort(x.begin(), x.end())
#define sortrarr(x) sort(x.rbegin(), x.rend())
#define rev(x) reverse(x.begin(), x.end())
#define endl '\n'
#define tol(bi) (1LL<<((int)(bi)))
typedef long long ll;
const int MOD = 1e9+7;
mt19937 ayahya(chrono::high_resolution_clock().now().time_since_epoch().count());
#include "teams.h"
struct SegTree{
vector<pair<int,int>> segtree;
void init(int n){
/*ahmet23 orz*/
}
void update(int l, int r){
segtree.push_back({l,r});
}
int query(int x){
int tot = 0;
for (int i = 0; i < segtree.size(); i++){
if (segtree[i].first<=x && segtree[i].second>=x) tot++;
}
return tot;
}
int query2(int l, int r){
int tot = 0;
for (int i = 0; i < segtree.size(); i++){
if (segtree[i].first<=l && segtree[i].second>=r) tot++;
}
return tot;
}
};
SegTree segtree;
void init(int N, int A[], int B[]) {
segtree.init(N);
for (int i = 0; i < N; i++){
segtree.update(A[i],B[i]);
}
}
int can(int m, int k[]) {
sort(k, k+m);
int lel = 0;
for (int i = 0; i < m; i++){
int pos = k[i];
int kapsa = segtree.query(pos);
int hh = 0;
if (i<m-1) hh=segtree.query2(pos,k[i+1]);
int hueh = lel+pos;
lel=0;
if (kapsa<hueh) return 0;
kapsa-=hueh;
if (kapsa>hh) continue;
else {
lel=hh-kapsa;
}
}
return 1;
}
컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
