Submission #164322

#TimeUsernameProblemLanguageResultExecution timeMemory
164322beso123Relativnost (COCI15_relativnost)C++14
0 / 140
325 ms53108 KiB
#include <bits/stdc++.h> #define int long long #define mod 10007 using namespace std; int n,m,Q,a[100005],b[100005],t[200005][21],sum; void update(int v){ for(int k=0;k<=m;k++) t[v][k]=0; for(int i=0;i<=m;++i) for(int j=0;j<=m;++j){ t[v][min(i+j,m)]+=((t[v*2][i]%mod)*(t[v*2+1][j])%mod); t[v][min(i+j,m)]%=mod; } for(int k=0;k<=m;k++) t[v][k]%=mod; } void Build(int v,int i,int j){ if(i==j){ t[v][0]=b[i]%mod; t[v][1]=a[i]%mod; return; } int mid=(i+j)/2; Build(v*2,i,mid); Build(v*2+1,mid+1,j); update(v); } void UPD(int v,int i,int j,int pos){ if(i==j){ t[v][0]=b[i]%mod; t[v][1]=a[i]%mod; return; } int mid=(i+j)/2; if(pos<=mid) UPD(v*2,i,mid,pos); else UPD(v*2+1,mid+1,j,pos); update(v); } main(){ scanf("%I64d%I64d",&n,&m); for(int k=1;k<=n;k++){ scanf("%I64d",&a[k]); a[k]%=mod; } for(int k=1;k<=n;k++){ scanf("%I64d",&b[k]); b[k]%=mod; } Build(1,1,n); cin>>Q; while(Q--){ int x,na,nb; scanf("%I64d%I64d%I64d",&x,&na,&nb); a[x]=na%mod; b[x]=nb%mod; UPD(1,1,n,x); int ans=t[1][m]%mod; printf("%I64d\n",ans); } return 0; }

Compilation message (stderr)

relativnost.cpp:41:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
relativnost.cpp: In function 'int main()':
relativnost.cpp:42:25: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
 scanf("%I64d%I64d",&n,&m);
                    ~~   ^
relativnost.cpp:42:25: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
relativnost.cpp:44:21: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
  scanf("%I64d",&a[k]);
                ~~~~~^
relativnost.cpp:48:21: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
  scanf("%I64d",&b[k]);
                ~~~~~^
relativnost.cpp:55:38: warning: format '%d' expects argument of type 'int*', but argument 2 has type 'long long int*' [-Wformat=]
    scanf("%I64d%I64d%I64d",&x,&na,&nb);
                            ~~        ^
relativnost.cpp:55:38: warning: format '%d' expects argument of type 'int*', but argument 3 has type 'long long int*' [-Wformat=]
relativnost.cpp:55:38: warning: format '%d' expects argument of type 'int*', but argument 4 has type 'long long int*' [-Wformat=]
relativnost.cpp:60:25: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
     printf("%I64d\n",ans);
                         ^
relativnost.cpp:42:6: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
 scanf("%I64d%I64d",&n,&m);
 ~~~~~^~~~~~~~~~~~~~~~~~~~
relativnost.cpp:44:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%I64d",&a[k]);
  ~~~~~^~~~~~~~~~~~~~~
relativnost.cpp:48:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
  scanf("%I64d",&b[k]);
  ~~~~~^~~~~~~~~~~~~~~
relativnost.cpp:55:9: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
    scanf("%I64d%I64d%I64d",&x,&na,&nb);
    ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...