UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#211243#2398. 游戏_Alexande_038ms1976kbC++113.0kb2024-08-10 09:04:522024-08-10 12:34:08

answer

#include <bits/stdc++.h>

using namespace std;

#define int long long
#define fir first
#define sec second
#define mkp make_pair 
#define pb push_back
#define lep( i, l, r ) for ( int i = ( l ); i <= ( r ); ++ i )
#define rep( i, r, l ) for ( int i = ( r ); i >= ( l ); -- i )

typedef long long ll;
typedef long double ld;
typedef pair < int, int > pii;

char _c; bool _f; template < class type > inline void read ( type &x ) {
	_f = 0, x = 0;
	while ( _c = getchar (), !isdigit ( _c ) ) if ( _c == '-' ) _f = 1;
	while ( isdigit ( _c ) ) x = x * 10 + _c - '0', _c = getchar (); if ( _f ) { x = -x; }
}

template < class type > inline void chkmin ( type &x, type y ) { x = ( x <= y ? x : y ); }
template < class type > inline void chkmax ( type &x, type y ) { x = ( x >= y ? x : y ); }

const int N = 1e6 + 5;

int n, m;

int tree[N], tag[N], tag2[N]; // tag 表示头元素,tag2 表示公差

void pushup ( int node ) {
  tree[node] = tree[node << 1] + tree[node << 1 | 1];
}

void addtag ( int node, int lt, int rt, int k, int p ) {
  int st = k, ed = k + ( rt - lt ) * p;
  // cout << "cy" << lt << " " << rt << " " << k << " " << p << " " << st << " " << ed << '\n';
  tree[node] += ( st + ed ) * ( rt - lt + 1 ) / 2;
  tag[node] += k, tag2[node] += p;
}

void pushdown ( int node, int lt, int rt ) {
  if ( !tag2[node] ) {
    return ;
  }
  int mid = lt + rt >> 1;
  addtag ( node << 1, lt, mid, tag[node], tag2[node] ), addtag ( node << 1 | 1, mid + 1, rt, tag[node] + ( mid + 1 - lt ) * tag2[node], tag2[node] );
  tag[node] = tag2[node] = 0;
}

void update ( int node, int lt, int rt, int x, int y, int k, int p ) {
  if ( x <= lt && rt <= y ) {
    // cout << lt << " " << rt << " " << k << " " << p << '\n';
    addtag ( node, lt, rt, k, p );
    return ;
  }
  pushdown ( node, lt, rt );
  int mid = lt + rt >> 1;
  if ( x <= mid ) {
    update ( node << 1, lt, mid, x, y, k, p );
  }
  if ( mid + 1 <= y ) {
    update ( node << 1 | 1, mid + 1, rt, x, y, ( mid + 1 - x + 1 ) * p, p );
  }
  pushup ( node );
}

int query ( int node, int lt, int rt, int x, int y ) {
  if ( y < lt || x > rt ) {
    return 0;
  }
  if ( x <= lt && rt <= y ) {
    return tree[node];
  }
  pushdown ( node, lt, rt );
  int mid = lt + rt >> 1;
  return query ( node << 1, lt, mid, x, y ) + query ( node << 1 | 1, mid + 1, rt, x, y );
}

void Solve () {
  cin >> n >> m;
  while ( m -- ) {
    int op;
    cin >> op;
    if ( op == 1 ) {
      int s, l, r;
      cin >> s >> l >> r;
      update ( 1, 1, n, l, r, s, s );
    }
    else {
      int l, r;
      cin >> l >> r;
      cout << query ( 1, 1, n, l, r ) << '\n';
    }
    // for ( int i = 1; i <= n; i ++ ) {
    //   cout << query ( 1, 1, n, i, i ) << " ";
    // }
    // cout << '\n';
  }
}

signed main () {
#ifdef judge
  freopen ( "Code.in", "r", stdin );
  freopen ( "Code.out", "w", stdout );
  freopen ( "Code.err", "w", stderr );
#endif
  Solve ();
	return 0;
}

Details

小提示:点击横条可展开更详细的信息

Test #1:

score: 0
Wrong Answer
time: 18ms
memory: 1976kb

input:

10000 10000
2 7160 9968
1 -473 6964 8476
1 -153 5216 7023
2 6352 6868
1 -323 2338 2855
1 415 8414 88...

output:

0
-110345895
-118168581
-43417983
-4860827434
-604843653
-2613457133
-534205626
-89290630
484290874
...

result:

wrong answer 19th lines differ - expected: '-2995910213', found: '-2857991988'

Test #2:

score: 0
Wrong Answer
time: 20ms
memory: 1976kb

input:

10000 10000
1 326 2291 8264
2 2344 3512
1 146 4506 4804
1 342 1373 4495
1 -267 929 3525
1 444 3384 8...

output:

243137972
7529843014
0
11315350608
10741570136
-23729193
8497340876
11134190564
4752384896
166579811...

result:

wrong answer 29th lines differ - expected: '8376007667', found: '8428725752'

Test #3:

score: 0
Runtime Error

input:

666666 10000
1 92 555251 586462
1 393 28541 523118
1 448 17256 369367
1 -28 89257 596132
1 -338 3136...

output:


result:


Test #4:

score: 0
Runtime Error

input:

666666 50000
1 -249 309981 333889
1 477 309512 463171
1 0 71655 592642
1 45 191249 527454
1 55 38872...

output:


result:


Test #5:

score: 0
Runtime Error

input:

666666 100000
1 -183 598736 630118
1 -337 605875 639236
1 -62 265069 340682
1 -96 370300 571646
1 -1...

output:


result:


Test #6:

score: 0
Runtime Error

input:

666666 100000
2 121929 379928
2 34550 66844
1 96 338911 637923
2 161666 370147
1 -282 313713 463127
...

output:

0
0

result:


Test #7:

score: 0
Runtime Error

input:

750000 100000
1 -318 454211 721481
2 239247 294171
2 52513 339575
2 424462 638364
2 683282 740790
1 ...

output:

0
0
-5392147899330
-3014688113400

result:


Test #8:

score: 0
Runtime Error

input:

1000000 100000
1 -108 318728 708230
1 -242 8738 411540
1 -119 458000 972357
2 368015 850304
1 -182 1...

output:


result:


Test #9:

score: 0
Runtime Error

input:

1000000 100000
2 347033 984386
2 277881 323793
1 431 735974 973576
2 782909 863840
1 -22 379088 6406...

output:


result:


Test #10:

score: 0
Runtime Error

input:

1000000 100000
1 -238 406279 814973
1 -425 637451 721356
1 237 340114 658854
2 279214 591961
2 17862...

output:


result: