Submission #1029894

#TimeUsernameProblemLanguageResultExecution timeMemory
1029894lucriMagic Show (APIO24_show)C++17
35 / 100
3 ms1072 KiB
#include <vector>
#include <utility>
long long setN(int n);
std::vector<std::pair<int,int>> Alice()
{
    std::vector<std::pair<int,int>>v;
    long long x=setN(5000);
    for(int i=2;i<=5000;++i)
        v.push_back({x%(i-1)+1,i});
    return v;
}
#include <vector>
#include <utility>
long long cmmdc(long long a,long long b,long long &x1,long long &x2)
{
    if(b==0)
    {
        x1=1;
        x2=0;
        return a;
    }
    long long val=cmmdc(b,a%b,x1,x2),cop;
    cop=x1;
    x1=x2;
    x2=cop-a/b*x2;
    return val;
}
long long Bob(std::vector<std::pair<int,int>> V)
{
    __int128 a=0,b=1,aa,bb;
    int n=V.size();
    for(int i=0;i<n;++i)
    {
        aa=V[i].first-1;
        bb=V[i].second-1;
        long long x1,x2;
        long long d=cmmdc(b,bb,x1,x2);
        a=a+x1*(aa-a)/d*b;
        b=b*bb/d;
        a%=b;
        if(a<=0)
            a+=b;
        if(b>1000000000000000000)
            return a;
    }
}

Compilation message (stderr)

Bob.cpp: In function 'long long int Bob(std::vector<std::pair<int, int> >)':
Bob.cpp:35:1: warning: control reaches end of non-void function [-Wreturn-type]
   35 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...