이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "teams.h"
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#if __cplusplus >= 201103L
#include <array>
#include <atomic>
#include <chrono>
#include <condition_variable>
#include <forward_list>
#include <future>
#include <initializer_list>
#include <mutex>
#include <random>
#include <ratio>
#include <regex>
#include <scoped_allocator>
#include <system_error>
#include <thread>
#include <tuple>
#include <typeindex>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#endif
int gcd(int a, int b) {return b == 0 ? a : gcd(b, a % b);}
#define ll int
#define pb push_back
#define ld long double
#define mp make_pair
#define F first
#define S second
#define pii pair<ll,ll>
using namespace :: std;
const ll maxn=1e5+500;
const ll inf=1e9+800;
const ll mod=1e9+7;
const ll maxm=1e5+500;
const ll sq=700;
ll n;
ll a[maxn];
ll b[maxn];
void init(int N, int A[], int B[]) {
n=N;
for(ll i=0;i<N;i++){
a[i]=A[i];
b[i]=B[i];
}
}
ll ger[sq][sq];
void makeGer(ll m,ll k[]){
memset(ger,0,sizeof ger);
for(ll i=0;i<n;i++){
ll l=lower_bound(k,k+m,a[i])-k;
ll r=upper_bound(k,k+m,b[i])-k-1;
ger[l][r]++;
}/*
for(ll i=0;i<m;i++){
for(ll j=0;j<m;j++){
cout<<ger[i][j]<<' ';
}
cout<<endl;
}*/
}
ll comp[maxm];
ll tmp[sq];
ll gri[sq];
int can(int m, int k[]) {
sort(k,k+m);
memset(gri,0,sizeof gri);
memset(tmp,0,sizeof tmp);
for(ll i=0;i<m;i++){
comp[i]=(k[i]);
}
ll sz=unique(comp,comp+m)-comp;
makeGer(sz,comp);
for(ll i=0;i<m;i++){
tmp[lower_bound(comp,comp+sz,k[i])-comp]++;
}
for(ll i=0;i<sz;i++){
comp[i]*=tmp[i];
}
for(ll i=0;i<sz;i++){
for(ll j=i;j<sz;j++){
gri[j]+=ger[i][j];
}
for(ll j=i;j<sz && 0<comp[i];j++){
ll res=min(comp[i],gri[j]);
comp[i]-=res;
gri[j]-=res;
}
if(comp[i])return 0;
}
return 1;
}
컴파일 시 표준 에러 (stderr) 메시지
teams.cpp: In function 'void makeGer(int, int*)':
teams.cpp:90:31: warning: conversion to 'int' from 'long int' may alter its value [-Wconversion]
ll l=lower_bound(k,k+m,a[i])-k;
~~~~~~~~~~~~~~~~~~~~~~~^~
teams.cpp:91:33: warning: conversion to 'int' from 'long int' may alter its value [-Wconversion]
ll r=upper_bound(k,k+m,b[i])-k-1;
~~~~~~~~~~~~~~~~~~~~~~~~~^~
teams.cpp: In function 'int can(int, int*)':
teams.cpp:111:27: warning: conversion to 'int' from 'long int' may alter its value [-Wconversion]
ll sz=unique(comp,comp+m)-comp;
~~~~~~~~~~~~~~~~~~~^~~~~
# | 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... |