結果
問題 | No.1067 #いろいろな色 / Red and Blue and more various colors (Middle) |
ユーザー | kmjp |
提出日時 | 2020-05-30 00:19:08 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 437 ms / 2,000 ms |
コード長 | 1,180 bytes |
コンパイル時間 | 2,142 ms |
コンパイル使用メモリ | 204,984 KB |
実行使用メモリ | 288,504 KB |
最終ジャッジ日時 | 2024-11-06 09:39:40 |
合計ジャッジ時間 | 6,235 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 270 ms
199,424 KB |
testcase_12 | AC | 176 ms
124,664 KB |
testcase_13 | AC | 391 ms
269,948 KB |
testcase_14 | AC | 211 ms
156,408 KB |
testcase_15 | AC | 91 ms
66,680 KB |
testcase_16 | AC | 78 ms
53,492 KB |
testcase_17 | AC | 19 ms
16,496 KB |
testcase_18 | AC | 225 ms
163,448 KB |
testcase_19 | AC | 232 ms
172,540 KB |
testcase_20 | AC | 111 ms
71,156 KB |
testcase_21 | AC | 437 ms
287,612 KB |
testcase_22 | AC | 424 ms
287,736 KB |
testcase_23 | AC | 425 ms
288,504 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- int N,Q; int A[6060]; ll dp[6060][6060]; const ll mo=998244353; ll mu[6060]; void solve() { int i,j,k,l,r,x,y; string s; cin>>N>>Q; FOR(i,N) cin>>A[i]; sort(A,A+N); dp[N][0]=1; for(i=N-1;i>=0;i--) { FOR(j,N) { (dp[i][j]+=dp[i+1][j]*(A[i]-1))%=mo; (dp[i][j+1]+=dp[i+1][j])%=mo; } } mu[0]=1; FOR(i,N) mu[i+1]=mu[i]*A[i]%mo; while(Q--) { int L,R; cin>>L>>R>>y; ll ret=0; for(i=L;i<=R;i++) { x=lower_bound(A,A+N,i)-A; ret^=dp[x][y]*mu[x]%mo; } cout<<ret<<endl; } } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }