結果

問題 No.1067 #いろいろな色 / Red and Blue and more various colors (Middle)
ユーザー HEXAebmrHEXAebmr
提出日時 2020-05-29 23:15:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 2,846 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 115,056 KB
実行使用メモリ 285,396 KB
最終ジャッジ日時 2024-04-24 01:12:50
合計ジャッジ時間 3,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 134 ms
198,912 KB
testcase_12 AC 92 ms
128,460 KB
testcase_13 AC 177 ms
267,832 KB
testcase_14 AC 95 ms
160,256 KB
testcase_15 AC 42 ms
74,748 KB
testcase_16 AC 43 ms
52,608 KB
testcase_17 AC 13 ms
15,104 KB
testcase_18 AC 146 ms
162,560 KB
testcase_19 AC 108 ms
174,772 KB
testcase_20 AC 58 ms
79,068 KB
testcase_21 AC 221 ms
285,184 KB
testcase_22 AC 218 ms
285,396 KB
testcase_23 AC 221 ms
285,304 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <string>
#include <stack>
#include <vector>
#include <complex>
#include <math.h>
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <iterator>
#include <map>
#include <set>
#include <queue>
#include <list>
#include <regex>
#include <limits>
#include <time.h>
#include <cstdint>
using namespace std;
using pii  = pair<int,int>;
using ll=long long;
using ld=long double;
#define pb push_back
#define mp make_pair
#define sc second
#define fr first
#define stpr setprecision
#define cYES cout<<"YES"<<endl
#define cNO cout<<"NO"<<endl
#define cYes cout<<"Yes"<<endl
#define cNo cout<<"No"<<endl
#define rep(i,n) for(ll i=0;i<(n);++i)
#define Rep(i,a,b) for(ll i=(a);i<(b);++i)
#define rrep(i,n) for(ll i=n-1;i>=0;i--)
#define rRep(i,a,b) for(ll i=a;i>=b;i--)
#define crep(i) for(char i='a';i<='z';++i)
#define psortsecond(A,N) sort(A,A+N,[](const pii &a, const pii &b){return a.second<b.second;});
#define ALL(x) (x).begin(),(x).end()
#define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl;
#define endl '\n'
int ctoi(const char c){
  if('0' <= c && c <= '9') return (c-'0');
  return -1;
}
ll gcd(ll a,ll b){return (b == 0 ? a : gcd(b, a%b));}
ll lcm(ll a,ll b){return a*b/gcd(a,b);}
constexpr ll MOD=1000000007;
constexpr ll INF=1000000011;
constexpr ll MOD2=998244353;
constexpr ll LINF = 1001002003004005006ll;
constexpr ld EPS=10e-8;
template <class T, class U> inline bool chmax(T& lhs, const U& rhs) { if (lhs < rhs) { lhs = rhs; return 1; } return 0; }
template <class T, class U> inline bool chmin(T& lhs, const U& rhs) { if (lhs > rhs) { lhs = rhs; return 1; } return 0; }
template<typename T> istream& operator>>(istream& is,vector<T>& v){for(auto&& x:v)is >> x;return is;}
template<typename T,typename U> istream& operator>>(istream& is, pair<T,U>& p){ is >> p.first; is >> p.second; return is;}
template<typename T,typename U> ostream& operator>>(ostream& os, const pair<T,U>& p){ os << p.first << ' ' << p.second; return os;}
template<class T> ostream& operator<<(ostream& os, vector<T>& v){
  for(auto i=begin(v); i != end(v); ++i){
    if(i !=begin(v)) os << ' ';
    os << *i;
  }
  return os;
}

ll A[6007],B;
ll dp[6007][6007];

int main(){
  int N, Q;
  cin >> N  >> Q;
  rep(i,N){
    cin >> A[i];
  }
  rep(i,N+1){
    dp[i][0]=1;
  }
  sort(A,A+N);
  reverse(A,A+N);
  Rep(i,1,N+1){
    rrep(j,N+1){
      if(j!=0){
        dp[i][j]=(dp[i-1][j]*(A[i-1]-1)+dp[i-1][j-1])%MOD2;
      }
      else{
        dp[i][j]=dp[i-1][j]*(A[i-1]-1)%MOD2;
      }
    }
  }
  reverse(A,A+N);
  ll Y=1,X[6007];
  rep(i,N){
    X[i]=Y;
    Y=Y*A[i]%MOD2;
  }
  rep(i,Q){
    ll l,r,p,ANS=0;
    cin >> l >> r >>  p;
    Rep(j,l,r+1){
      ll G=(lower_bound(A,A+N,j)-A);
      ANS^=dp[N-G][p]*X[G]%MOD2;
    }
    cout << ANS <<  endl;
  }
}
0