Submission #135069

#TimeUsernameProblemLanguageResultExecution timeMemory
135069ryanseeStrange Device (APIO19_strange_device)C++14
35 / 100
702 ms33116 KiB
#define LOCAL #include "bits/stdc++.h" using namespace std; #define FAST ios_base::sync_with_stdio(false); cin.tie(0); #define LLINF ((long long) 1e18)//1234567890987654321 #define INF 1234567890ll #define pb push_back #define eb emplace_back #define ins insert #define f first #define s second #define db 0 #define EPS (1e-7) //0.0000001 the value #define PI (acos((ld)-1.0)) #define MAXN (1000006) #define ll long long int #define ld long double mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); //can be used by calling rng() or shuffle(A, A+n, rng) #define FOR(ii, ss, ee) for(ll ii = (ss); ii < (ll)(ee); ++ii) #define space " " #define cbr cerr << "hi\n" #define mmst(x, v) memset((x), v, sizeof ((x))) #define siz(x) ((ll)x.size()) #define ph push #define btinpct(x) __builtin_popcountll((x)) #define MSB(bm) ((bm==0)?-1:(63-__builtin_clzll((bm)))) #define all(x) (x).begin(), (x).end() #define lbd(x, y) lower_bound(all(x), y) #define ubd(x, y) upper_bound(all(x), y) typedef pair <ll, ll> pi; typedef pair <ll, pi> spi; typedef pair <pi, pi> dpi; inline ll rand(ll x, ll y) { ++y; return (rng() % (y-x)) + x; } //inclusivesss string to_string(char c) {string s(1,c);return s;}string to_string(bool b){return (b ? "true" : "false");}template <typename A, typename B>string to_string(pair<A, B> p) {return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";}template <typename A>string to_string(A v) {bool first = true;string res = "{";for (const auto &x : v) {if (!first) {res += ", ";}first = false;res += to_string(x);}res += "}";return res;}void degug_out() { cerr << endl; }template <typename Head, typename... Tail>void degug_out(Head H, Tail... T) {cerr << " " << to_string(H);degug_out(T...);}inline ll gcd(ll a,ll b){if(a>b)swap(a,b);if(a==0)return b;return gcd(b%a,a);} #ifdef LOCAL // #define degug(...) cerr << "[" << #__VA_ARGS__ << "]:", degug_out(__VA_ARGS__) #else // #define degug(...) 663 #define cerr if(0)cout #endif ll n,A,B; pi E[MAXN]; ll limit=1e18+5; ll qmult(ll x,ll e) { if(e==0)return 0; ll half=qmult(x,e/2); half+=half; half=min(half,limit); if(e&1) half+=x; half=min(half,limit); return half; } int main() { FAST cin>>n>>A>>B; // ll p=qmult(A/gcd(A,B+1),B); ll p=A/gcd(A,B+1)*B; unsigned long long int test=((unsigned long long int)A) / ((unsigned long long int)gcd(A,B+1)) * ((unsigned long long int)B); if(p!=test) p=limit; FOR(i,0,n) cin>>E[i].f>>E[i].s; FOR(i,0,n) if(E[i].s-E[i].f+1>=p) { cout<<p<<'\n'; return 0; } vector<pi>pay; FOR(i,0,n) { ll a=E[i].f%p,b=E[i].s%p; if(a>b) pay.eb(a,p-1),pay.eb(0,b); else pay.eb(a,b); } sort(all(pay)); ll px=-1; ll ans=0; for(auto i:pay) { if(px>=i.f) ans+=max(0ll,i.s-px); else ans+=i.s-i.f+1; px=max(px,i.s); } cout<<ans<<'\n'; }

Compilation message (stderr)

strange_device.cpp: In function 'long long int qmult(long long int, long long int)':
strange_device.cpp:48:2: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
  if(e&1) half+=x; half=min(half,limit);
  ^~
strange_device.cpp:48:19: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  if(e&1) half+=x; half=min(half,limit);
                   ^~~~
strange_device.cpp: In function 'int main()':
strange_device.cpp:58:6: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  if(p!=test) p=limit;
     ~^~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...