# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
387510 |
2021-04-08T16:02:49 Z |
ACmachine |
Teams (IOI15_teams) |
C++17 |
|
1240 ms |
32612 KB |
#include "teams.h"
#include <bits/stdc++.h>
using namespace std;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
template<typename T, typename U> using ordered_map = tree<T, U, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef vector<int> vi;
typedef vector<ll> vll;
#define FOR(i,j,k,in) for(int i=(j); i < (k);i+=in)
#define FORD(i,j,k,in) for(int i=(j); i >=(k);i-=in)
#define REP(i,b) FOR(i,0,b,1)
#define REPD(i,b) FORD(i,b,0,1)
#define pb push_back
#define mp make_pair
#define ff first
#define ss second
#define all(x) begin(x), end(x)
#define MANY_TESTS int tcase; cin >> tcase; while(tcase--)
const double EPS = 1e-9;
const int MOD = 1e9+7;
const ll INFF = 1e18;
const int INF = 1e9;
const ld PI = acos((ld)-1);
const vi dy = {1, 0, -1, 0, -1, 1, 1, -1};
const vi dx = {0, 1, 0, -1, -1, 1, -1, 1};
void DBG(){cout << "]" << endl;}
template<typename T, typename ...U> void DBG(const T& head, const U... args){ cout << head << "; "; DBG(args...); }
#define dbg(...) cout << "Line(" << __LINE__ << ") -> [" << #__VA_ARGS__ << "]: [", DBG(__VA_ARGS__);
#define chk() cout << "Check at line(" << __LINE__ << ") hit." << endl;
template<class T, unsigned int U>
ostream& operator<<(ostream& out, const array<T, U> &v){out << "["; REP(i, U) out << v[i] << ", "; out << "]"; return out;}
template <class T, class U>
ostream& operator<<(ostream& out, const pair<T, U> &par) {out << "[" << par.first << ";" << par.second << "]"; return out;}
template <class T>
ostream& operator<<(ostream& out, const set<T> &cont) { out << "{"; for( const auto &x:cont) out << x << ", "; out << "}"; return out; }
template <class T, class U>
ostream& operator<<(ostream& out, const map<T, U> &cont) {out << "{"; for( const auto &x:cont) out << x << ", "; out << "}"; return out; }
template<class T>
ostream& operator<<(ostream& out, const vector<T> &v){ out << "["; REP(i, v.size()) out << v[i] << ", "; out << "]"; return out;}
template<class T>
istream& operator>>(istream& in, vector<T> &v){ for(auto &x : v) in >> x; return in; }
vector<int> b;
int n;
template<int M>
struct bit{
static const int blocks = (M >> 6) + 2;
unsigned long long a[blocks];
bit(){memset(a, 0, sizeof(a));}
void NOT(){REP(i, blocks) a[i] = ~a[i];}
void AND(bit<M> &oth){
REP(i, blocks) a[i] &= oth.a[i];
}
void REM(bit<M> &oth){
REP(i, blocks) a[i] &= (~oth.a[i]);
}
void OR(bit<M> &oth){
REP(i, blocks) a[i] |= oth.a[i];
}
void set(int id){
int bid = (id >> 6);
id -= (bid << 6);
a[bid] |= (1ull << id);
}
bool get_first(int x){
int curr = 0;
int nxt = INF;
bool is_enough = false;
REP(i, blocks){
curr += __builtin_popcountll(a[i]);
if(curr >= x){
is_enough = true;
nxt = i + 1;
REPD(j, 63){
if(a[i] & (1ull << j)){
if(curr > x){
a[i] &= ~(1ull << j);
curr--;
}
}
}
break;
}
}
FOR(i, nxt, blocks, 1)
a[i] = 0;
return is_enough;
}
void reset_until_time(int time){
REP(i, blocks){
int mtime = ((i << 6) + 63);
if(mtime >= n) mtime = INF;
else mtime = b[mtime];
if(mtime <= time)
a[i] = 0;
else{
REPD(j, 63){
if(a[i] & (1ull << j)){
if(b[(i<<6) + j] <= time)
a[i] &= ~(1ull << j);
}
}
break;
}
}
}
void print(int nm){
REP(i, nm){
REP(j, 64){
cout << ((a[i] & (1ull << j)) ? 1 : 0);
}
}
cout << endl;
}
};
const int mxn = (int)1e5;
vector<bit<mxn>> bits;
vector<int> pos;
vector<int> a;
vector<int> as;
vector<int> pp_ar;
vector<int> Ain;
int cutoff = 50;
void init(int N, int A[], int B[]) {
n = N;
REP(i, N) b.pb(B[i]);
REP(i, N) Ain.pb(A[i]);
sort(all(b));
vector<int> bs(N);
pos.resize(N);
REP(i, N) bs[i] = i;
auto cmp = [&](int lhs, int rhs){
return B[lhs] < B[rhs];
};
auto cmp_a = [&](int lhs, int rhs){
return A[lhs] < A[rhs];
};
sort(all(bs), cmp);
REP(i, N) pos[bs[i]] = i;
as.resize(n);
REP(i, n) as[i] = i;
sort(all(as), cmp_a);
int pp = 0;
int pp2 = 0; // on b
bit<mxn> bt;
vector<int> na;
REP(i, N) na.pb(A[i]);
sort(all(na));
na.erase(unique(all(na)), na.end());
int prev_pp = -1000;
REP(i, na.size()){
while(pp < as.size() && A[as[pp]] <= na[i]){
bt.set(pos[as[pp]]); pp++;
}
if(pp > prev_pp + cutoff){
a.pb(na[i]);
bits.pb(bt);
pp_ar.pb(pp);
prev_pp = pp;
}
}
}
int can(int M, int K[]) {
sort(K, K + M);
bit<mxn> removed;
bit<mxn> temp;
REP(i, M){
int id = upper_bound(all(a), K[i]) - a.begin();
id--;
if(id == -1) return 0;
temp = bits[id];
int pp = pp_ar[id];
while(pp < as.size() && Ain[as[pp]] <= K[i]){
temp.set(pos[as[pp]]);
pp++;
}
temp.reset_until_time(K[i] - 1);
temp.REM(removed);
if(!temp.get_first(K[i])){
return 0;
}
removed.OR(temp);
//dbg(i, id, K[i])
//removed.print(1);
}
return 1;
}
Compilation message
teams.cpp: In function 'void init(int, int*, int*)':
teams.cpp:20:40: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | #define FOR(i,j,k,in) for(int i=(j); i < (k);i+=in)
| ^
teams.cpp:22:18: note: in expansion of macro 'FOR'
22 | #define REP(i,b) FOR(i,0,b,1)
| ^~~
teams.cpp:168:5: note: in expansion of macro 'REP'
168 | REP(i, na.size()){
| ^~~
teams.cpp:169:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
169 | while(pp < as.size() && A[as[pp]] <= na[i]){
| ~~~^~~~~~~~~~~
teams.cpp:161:9: warning: unused variable 'pp2' [-Wunused-variable]
161 | int pp2 = 0; // on b
| ^~~
teams.cpp: In function 'int can(int, int*)':
teams.cpp:186:44: warning: conversion from '__gnu_cxx::__normal_iterator<int*, std::vector<int> >::difference_type' {aka 'long int'} to 'int' may change value [-Wconversion]
186 | int id = upper_bound(all(a), K[i]) - a.begin();
| ~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
teams.cpp:191:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
191 | while(pp < as.size() && Ain[as[pp]] <= K[i]){
| ~~~^~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Correct |
1 ms |
364 KB |
Output is correct |
3 |
Correct |
3 ms |
364 KB |
Output is correct |
4 |
Correct |
3 ms |
384 KB |
Output is correct |
5 |
Correct |
2 ms |
384 KB |
Output is correct |
6 |
Correct |
1 ms |
376 KB |
Output is correct |
7 |
Correct |
7 ms |
364 KB |
Output is correct |
8 |
Correct |
6 ms |
364 KB |
Output is correct |
9 |
Correct |
3 ms |
364 KB |
Output is correct |
10 |
Correct |
5 ms |
364 KB |
Output is correct |
11 |
Correct |
1 ms |
364 KB |
Output is correct |
12 |
Correct |
17 ms |
364 KB |
Output is correct |
13 |
Correct |
10 ms |
364 KB |
Output is correct |
14 |
Correct |
6 ms |
364 KB |
Output is correct |
15 |
Correct |
3 ms |
364 KB |
Output is correct |
16 |
Correct |
2 ms |
364 KB |
Output is correct |
17 |
Correct |
7 ms |
364 KB |
Output is correct |
18 |
Correct |
5 ms |
364 KB |
Output is correct |
19 |
Correct |
5 ms |
384 KB |
Output is correct |
20 |
Correct |
5 ms |
364 KB |
Output is correct |
21 |
Correct |
4 ms |
364 KB |
Output is correct |
22 |
Correct |
3 ms |
364 KB |
Output is correct |
23 |
Correct |
3 ms |
364 KB |
Output is correct |
24 |
Correct |
3 ms |
364 KB |
Output is correct |
25 |
Correct |
3 ms |
364 KB |
Output is correct |
26 |
Correct |
3 ms |
364 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
77 ms |
28932 KB |
Output is correct |
2 |
Correct |
76 ms |
28932 KB |
Output is correct |
3 |
Correct |
78 ms |
28948 KB |
Output is correct |
4 |
Correct |
78 ms |
28932 KB |
Output is correct |
5 |
Correct |
44 ms |
10164 KB |
Output is correct |
6 |
Correct |
41 ms |
10932 KB |
Output is correct |
7 |
Correct |
39 ms |
10932 KB |
Output is correct |
8 |
Correct |
39 ms |
10932 KB |
Output is correct |
9 |
Correct |
223 ms |
4712 KB |
Output is correct |
10 |
Correct |
121 ms |
4328 KB |
Output is correct |
11 |
Correct |
25 ms |
4460 KB |
Output is correct |
12 |
Correct |
19 ms |
7636 KB |
Output is correct |
13 |
Correct |
52 ms |
29992 KB |
Output is correct |
14 |
Correct |
41 ms |
17400 KB |
Output is correct |
15 |
Correct |
71 ms |
30080 KB |
Output is correct |
16 |
Correct |
69 ms |
30084 KB |
Output is correct |
17 |
Correct |
26 ms |
6500 KB |
Output is correct |
18 |
Correct |
26 ms |
6628 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
85 ms |
28932 KB |
Output is correct |
2 |
Correct |
94 ms |
29060 KB |
Output is correct |
3 |
Correct |
1240 ms |
29804 KB |
Output is correct |
4 |
Correct |
80 ms |
30084 KB |
Output is correct |
5 |
Correct |
782 ms |
11316 KB |
Output is correct |
6 |
Correct |
699 ms |
11188 KB |
Output is correct |
7 |
Correct |
49 ms |
11188 KB |
Output is correct |
8 |
Correct |
517 ms |
11188 KB |
Output is correct |
9 |
Correct |
222 ms |
4712 KB |
Output is correct |
10 |
Correct |
604 ms |
4456 KB |
Output is correct |
11 |
Correct |
612 ms |
4716 KB |
Output is correct |
12 |
Correct |
659 ms |
7892 KB |
Output is correct |
13 |
Correct |
834 ms |
30084 KB |
Output is correct |
14 |
Correct |
1055 ms |
30212 KB |
Output is correct |
15 |
Correct |
494 ms |
30080 KB |
Output is correct |
16 |
Correct |
483 ms |
30212 KB |
Output is correct |
17 |
Correct |
470 ms |
6628 KB |
Output is correct |
18 |
Correct |
446 ms |
5740 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
282 ms |
32612 KB |
Execution killed with signal 7 |
2 |
Halted |
0 ms |
0 KB |
- |