# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
74133 | 2018-08-30T09:10:08 Z | haitun | Election (BOI18_election) | C++14 | 3000 ms | 3620 KB |
#include <bits/stdc++.h> //#include "functions.h" #define FOR(x,y) for(int x = 0; x < y; x++) #define ALLR(x) x.begin(),x.end() #define con continue #define ll long long #define LINF LLONG_MAX #define INF INT_MAX #define pii pair<int,int> #define vi vector <int> #define pb push_back #define F first #define S second #define len(x) x.length() #define sz(x) x.size() #define SEE(v) for(auto x : v) cout << x << " "; cout << endl; using namespace std; class BiTree{ public: vector <int> bi; int n; BiTree(int size){ for(int j = 0; j <= size; j++) bi.push_back(0); n = size; } void update(int index, int value){ index++; while(index <= n) { bi[index] += value; index += (index & -index); } } int getSum(int index){ index++; int sum = 0; while(index > 0) { sum += bi[index]; index -= (index & -index); } return sum; } int rangeSum(int included_start,int included_end){ if(included_start < 1) return getSum(included_end); else return getSum(included_end) - getSum(included_start - 1); } }; int main(){ if(fopen("test.txt","r")) freopen("test.txt","r",stdin); int n; cin >> n; string s; cin >> s; int q; cin >> q; vector <pii> sc(q); FOR(j, q) cin >> sc[j].F >> sc[j].S; FOR(j, q) { int l = sc[j].F, r = sc[j].S; int size = r - l + 1; BiTree t(size); vector <bool> nulled(size, false); for(int k = l - 1; k < r; k++) { if(s[k] == 'C') t.update(k - l + 1, 1); else t.update(k - l + 1, 0); } int toner = 0; FOR(k, size) { int sum = t.getSum(k); //cout << sum << " " << (k - toner + 1) / 2 + helper << endl; if(sum * 2 < k + 1 - toner) { nulled[k] = true; toner++; //cout << k << " is updated.\n"; } } //look from back reverse(ALLR(nulled)); //FOR(k, nulled.size()) cout << nulled[k] << " "; //cout << endl; BiTree t2(size); int k2 = 0; for(int k = r - 1; k > l - 2; k--) { if(s[k] == 'C') t2.update(k2, 1); else t2.update(k2, 0); k2++; //cout << s[k] << " "; } //cout << endl; toner = 0; FOR(k, size) { int sum = t2.getSum(k); //cout << sum << " "; if(nulled[k]) { toner++; con; } if(sum * 2 < k - toner + 1) { nulled[k] = true; toner++; //cout << k << " is updated.\n"; } } //cout << endl; //return 0; int ans = 0; FOR(k, nulled.size()) { if(nulled[k]) ans++; } cout << ans << endl; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 80 ms | 376 KB | Output is correct |
2 | Correct | 82 ms | 576 KB | Output is correct |
3 | Correct | 72 ms | 576 KB | Output is correct |
4 | Correct | 85 ms | 624 KB | Output is correct |
5 | Correct | 53 ms | 648 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 80 ms | 376 KB | Output is correct |
2 | Correct | 82 ms | 576 KB | Output is correct |
3 | Correct | 72 ms | 576 KB | Output is correct |
4 | Correct | 85 ms | 624 KB | Output is correct |
5 | Correct | 53 ms | 648 KB | Output is correct |
6 | Execution timed out | 3044 ms | 3620 KB | Time limit exceeded |
7 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 80 ms | 376 KB | Output is correct |
2 | Correct | 82 ms | 576 KB | Output is correct |
3 | Correct | 72 ms | 576 KB | Output is correct |
4 | Correct | 85 ms | 624 KB | Output is correct |
5 | Correct | 53 ms | 648 KB | Output is correct |
6 | Execution timed out | 3044 ms | 3620 KB | Time limit exceeded |
7 | Halted | 0 ms | 0 KB | - |