CSES - Aalto Competitive Programming 2024 - wk11 - Homework - Results
Submission details
Task:Finding inverse
Sender:aalto2024k_007
Submission time:2024-11-15 11:25:05 +0200
Language:C++ (C++17)
Status:READY
Result:ACCEPTED
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#2ACCEPTED0.00 sdetails
#3ACCEPTED0.00 sdetails
#4ACCEPTED0.00 sdetails
#5ACCEPTED0.00 sdetails
#6ACCEPTED0.00 sdetails
#7ACCEPTED0.00 sdetails
#8ACCEPTED0.00 sdetails
#9ACCEPTED0.00 sdetails
#10ACCEPTED0.00 sdetails
#11ACCEPTED0.00 sdetails
#12ACCEPTED0.00 sdetails
#13ACCEPTED0.00 sdetails
#14ACCEPTED0.00 sdetails

Compiler report

input/code.cpp: In function 'long long unsigned int fastpow(long long unsigned int, long long unsigned int, long long unsigned int)':
input/code.cpp:18:15: warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]
   18 |     if (n & 1 == 1) return x * fastpow(x, n-1, mod) % mod;
      |             ~~^~~~
input/code.cpp: In function 'void sieve_of_Eratosthenes(std::vector<long long unsigned int>&)':
input/code.cpp:26:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long unsigned int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |     for (int x = 2; x < sieve.size(); x++) {
      |                     ~~^~~~~~~~~~~~~~
input/code.cpp:28:29: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long unsigned int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |         for (int u = 2*x; u < sieve.size(); u += x) sieve[u] = x;
      |...

Code

#include <bits/stdc++.h>

using namespace std;

#define debug(...) Debug(#__VA_ARGS__, __VA_ARGS__);
template <typename... Args>
void Debug(const char* names, Args&&... args) {
   std::cerr << names << " = ";
   ((std::cerr << args << ", "), ...) << "\b\b " << std::endl;
}
#define ll long long
#define ull unsigned long long
#define vi vector<int>

// O(log n)
ull fastpow(ull x, ull n, ull mod) {
    if (n == 0) return 1;
    if (n & 1 == 1) return x * fastpow(x, n-1, mod) % mod;
    ull halfpow = fastpow(x, n/2, mod) % mod;
    return halfpow*halfpow % mod;
}

// O(n * log log n)
void sieve_of_Eratosthenes(vector<ull>& sieve) {
    fill(sieve.begin(), sieve.end(), 0);
    for (int x = 2; x < sieve.size(); x++) {
        if (sieve[x]) continue;
        for (int u = 2*x; u < sieve.size(); u += x) sieve[u] = x;
    }
}

// Find prime factorss using Eratosthenes sieve
list<ull> primes_factors(ull n) {
    debug(n)
    vector<ull> sieve(n+1);
    sieve_of_Eratosthenes(sieve);
    list<ull> primes;

    ull p;
    while (n > 1)
    {
        debug(n)
        p = sieve[n];
        if (p == 0) {
            primes.push_front(n);
            break;
        }
        primes.push_front(p);
        n /= p;
    }
    return primes;
}

// Euler's Totient Function O(phi(n log n))
int phi(int n)
{
    // Initialize result as n
    int result = n; 
 
    // Consider all prime factors of n and subtract their multiples from result
    for(int p = 2; p * p <= n; ++p)
    {
        // Check if p is a prime factor.
        if (n % p == 0) { 
            // If yes, then update n and result
            while (n % p == 0) n /= p;  
            result -= result / p;
        }
    }
 
    // If n has a prime factor greater than sqrt(n) (There can be at-most one such prime factor)
    if (n > 1) result -= result / n;
    return result;
}


bool are_coprimes(ull a, ull b) {
    return fastpow(a, phi(b), b) == 1;
}


int main() {
    ull a, M;
    cin >> a >> M;

    ull phiM = phi(M);

    // If a and not coprimes
    if (fastpow(a, phiM, M) != 1) {
        cout << -1 << endl;
        return 0;
    }

    cout << fastpow(a, phiM-1, M) << endl;


    



    return 0;
}

Test details

Test 1

Verdict: ACCEPTED

input
6 7

correct output
6

user output
6

Test 2

Verdict: ACCEPTED

input
0 7

correct output
-1

user output
-1

Test 3

Verdict: ACCEPTED

input
5 78

correct output
47

user output
47

Test 4

Verdict: ACCEPTED

input
89 99

correct output
89

user output
89

Test 5

Verdict: ACCEPTED

input
0 61

correct output
-1

user output
-1

Test 6

Verdict: ACCEPTED

input
897 947

correct output
625

user output
625

Test 7

Verdict: ACCEPTED

input
419 538

correct output
217

user output
217

Test 8

Verdict: ACCEPTED

input
32 938

correct output
-1

user output
-1

Test 9

Verdict: ACCEPTED

input
184120 505187

correct output
438779

user output
438779

Test 10

Verdict: ACCEPTED

input
264601 885661

correct output
360221

user output
360221

Test 11

Verdict: ACCEPTED

input
40310 590135

correct output
-1

user output
-1

Test 12

Verdict: ACCEPTED

input
202254499 577081420

correct output
128866679

user output
128866679

Test 13

Verdict: ACCEPTED

input
539836073 888851205

correct output
797044652

user output
797044652

Test 14

Verdict: ACCEPTED

input
697847215 756971670

correct output
-1

user output
-1