Submission #909287

#TimeUsernameProblemLanguageResultExecution timeMemory
909287lightonAmusement Park (CEOI19_amusementpark)C++17
19 / 100
3043 ms143336 KiB
#include<bits/stdc++.h>
#define forf(i,a,b) for(int i = a; i<=b; i++)
#define all(v) v.begin(),v.end()
using namespace std;
typedef long long ll;
int N,M;
pair<int,int> edge[100001];
ll mod1 = 1000000000000007;
ll mod = 998244353;
vector<int> perm;
unordered_set<ll> s1[100001];
int main(){
    scanf("%d %d" , &N , &M);
    forf(i,1,M){
        scanf("%d %d" , &edge[i].first,&edge[i].second);
    }
    forf(i,1,N) perm.push_back(i);
    ll ans = 0;
    do{
        ll hash1 = 0;  ll hash2 = 0;
        ll cnt = 0;
        forf(i,1,M){
            hash1 *= 2;
            if(perm[edge[i].first-1] > perm[edge[i].second-1]){
                hash1++;
                cnt++;
            }
            hash1 %= mod1;
        }
        if(s1[cnt].find(hash1) == s1[cnt].end()){
            s1[cnt].insert(hash1);
            ans += cnt;
            ans %= mod;
        }
    } while((next_permutation(all(perm))));
    printf("%lld" , ans);
}

Compilation message (stderr)

amusementpark.cpp: In function 'int main()':
amusementpark.cpp:20:27: warning: unused variable 'hash2' [-Wunused-variable]
   20 |         ll hash1 = 0;  ll hash2 = 0;
      |                           ^~~~~
amusementpark.cpp:13:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   13 |     scanf("%d %d" , &N , &M);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~
amusementpark.cpp:15:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   15 |         scanf("%d %d" , &edge[i].first,&edge[i].second);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#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...