답안 #592776

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
592776 2022-07-09T15:12:56 Z andrei_boaca Nuclearia (CEOI15_nuclearia) C++14
40 / 100
497 ms 1048576 KB
#include <bits/stdc++.h>
#pragma GCC optimize("O3")
#define int long long
using namespace std;
typedef long long ll;
typedef long double ld;
vector<vector<ll>> v,S[2][4];// 0 -> main down
                          // 1 -> main up
                          // 2 -> sec down
                          // 3 -> sec up
int n,m,k,q;
int nradds=0;
void add(int x1,int y1,int x2,int y2,ll val)
{
    x1=max(x1,1LL);
    y1=max(y1,1LL);
    x2=min(x2,n);
    y2=min(y2,m);
    v[x1][y1]+=val;
    v[x2+1][y1]-=val;
    v[x1][y2+1]-=val;
    v[x2+1][y2+1]+=val;
}
ll getsum(int x1,int y1,int x2,int y2)
{
    return v[x2][y2]-v[x1-1][y2]-v[x2][y1-1]+v[x1-1][y1-1];
}
ll put[2][2500005];
ll s[2500005];
signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cin>>n>>m>>k;
    if(m==1)
    {
         for(int z=1;z<=k;z++)
        {
            ll x,y,a,b;
            cin>>x>>y>>a>>b;
            assert(y==1);
            ll nr=a/b;
            put[0][x]+=a;
            put[0][x+1]-=a;
            ll st=x-nr;
            ll dr=x-1;
            if(dr>0)
            {
                st=max(st,1LL);
                ll lg=dr-st+2;
                put[0][st]+=a-lg*b;
                put[0][dr+1]-=a-lg*b;
                put[0][dr+1]-=(lg-1)*b;
                put[1][st]+=b;
                put[1][dr+1]-=b;
            }
            st=x+1;
            dr=x+nr;
            if(st<=n)
            {
                dr=min(dr,n*1LL);
                ll lg=dr-st+2;
                put[0][st]+=a;
                put[0][dr+1]-=a;
                put[0][dr+1]-=(lg-1)*(-b);
                put[1][st]-=b;
                put[1][dr+1]+=b;
            }
        }
        ll suma=0;
        for(int i=1;i<=n;i++)
        {
            /*if(suma>(1LL<<63)+put[0][i])
                assert(false);*/
            suma+=put[0][i];
            s[i]=suma;
        }
        ll si=0;
        suma=0;
        for(int i=1;i<=n;i++)
        {
            /*if(si>(1LL<<63)+put[1][i])
                assert(false);*/
            si+=put[1][i];
            /*if(suma>(1LL<<63)+si)
                assert(false);*/
            suma+=si;
            s[i]+=suma;
            //cout<<s[i]<<' ';
        }
        //cout<<'\n';
        for(int i=1;i<=n;i++)
            s[i]+=s[i-1];
        cin>>q;
        while(q--)
        {
            int x1,y1,x2,y2;
            cin>>x1>>y1>>x2>>y2;
            assert(y1==1&&y2==1);
            ll val=s[x2]-s[x1-1];
            ll rez=round(ld(val)/ld(x2-x1+1));
            cout<<rez<<'\n';
        }
        return 0;
    }
    v.resize(n+2);
    for(int j=0;j<4;j++)
    {
        S[0][j].resize(n+2);
        S[1][j].resize(n+2);
    }
    for(int i=0;i<=n+1;i++)
    {
        v[i].resize(m+2);
        for(int j=0;j<4;j++)
        {
            S[0][j][i].resize(n+2);
            S[1][j][i].resize(n+2);
        }
    }
    for(int z=1;z<=k;z++)
    {
        int x,y,a,b;
        cin>>x>>y>>a>>b;
        int nr=a;
        int x1=x,y1=y,x2=x,y2=y;
        int cnt=a/b;
        x1=x-cnt;
        x2=x+cnt;
        y1=y-cnt;
        y2=y+cnt;
        add(x1,y1,x2,y2,a);
        add(x1,y1,x2,y2,-cnt*b);

    }
    for(int i=1;i<=n;i++,cout<<'\n')
        for(int j=1;j<=m;j++)
            cout<<v[i][j]<<' ';
    for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
            v[i][j]+=v[i-1][j]+v[i][j-1]-v[i-1][j-1];
    for(int i=1;i<=n;i++)
        for(int j=1;j<=m;j++)
        {
            v[i][j]=v[i][j]+v[i-1][j]+v[i][j-1]-v[i-1][j-1];
            //cout<<s[i][j]<<' ';
        }
    //assert(nradds<=k*max(n,m));
    cin>>q;
    while(q--)
    {
        int x1,y1,x2,y2;
        cin>>x1>>y1>>x2>>y2;
        ll suma=getsum(x1,y1,x2,y2);
        ll cells=(y2-y1+1 )*(x2-x1+1);
        ll rez=round(ld(suma)/ld(cells));
        cout<<rez<<'\n';
    }
    return 0;
}

Compilation message

nuclearia.cpp: In function 'int main()':
nuclearia.cpp:125:13: warning: unused variable 'nr' [-Wunused-variable]
  125 |         int nr=a;
      |             ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 18 ms 20308 KB Output is correct
2 Correct 57 ms 2656 KB Output is correct
3 Correct 57 ms 2260 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 19 ms 20436 KB Output is correct
2 Correct 66 ms 2616 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 482 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 162 ms 26912 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 124 ms 22520 KB Output is correct
2 Correct 65 ms 3088 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 94 ms 11936 KB Output is correct
2 Correct 60 ms 2840 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 277 ms 41416 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 367 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 204 ms 61516 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 210 ms 61580 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 388 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 497 ms 421968 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 326 ms 34012 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 372 ms 1048576 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -