結果
問題 | No.1067 #いろいろな色 / Red and Blue and more various colors (Middle) |
ユーザー | tonegawa |
提出日時 | 2020-08-12 08:00:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,618 bytes |
コンパイル時間 | 1,340 ms |
コンパイル使用メモリ | 127,276 KB |
実行使用メモリ | 284,928 KB |
最終ジャッジ日時 | 2024-10-09 18:00:55 |
合計ジャッジ時間 | 17,627 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <queue> #include <deque> #include <algorithm> #include <set> #include <map> #include <bitset> #include <cmath> #include <functional> #include <iomanip> #define vll vector<ll> #define vvvl vector<vvl> #define vvl vector<vector<ll>> #define VV(a, b, c, d) vector<vector<d>>(a, vector<d>(b, c)) #define VVV(a, b, c, d) vector<vvl>(a, vvl(b, vll (c, d))); #define re(c, b) for(ll c=0;c<b;c++) #define all(obj) (obj).begin(), (obj).end() typedef long long int ll; typedef long double ld; using namespace std; ll P = 998244353; int main(int argc, char const *argv[]) { ll n, q;std::cin >> n >> q; vll a(n);re(i, n) std::cin >> a[i]; sort(all(a)); reverse(all(a)); vvl dp = VV(n+1, n+1, 0, ll);//i de j ball dp[0][0] = 1; for(int i=0;i<n;i++){ for(int j=0;j<=n;j++){ //使わない場合 dp[i+1][j] = (dp[i+1][j] + (dp[i][j] * (a[i] - 1))%P)%P; //使う場合 dp[i+1][j+1] = (dp[i+1][j+1] + dp[i][j])%P; } } std::cout << dp[3][0] << '\n'; for(int i=0;i<=n;i++){ ll mul = 1; for(int j=i+1;j<=n;j++){ ll x = j-1; mul = (mul * a[x])%P; } for(int j=0;j<=n;j++) dp[i][j] = (dp[i][j] * mul)%P; } reverse(all(a)); for(int i=0;i<q;i++){ ll l, r, p;std::cin >> l >> r >> p; //ll lb = lower_bound(all(a), l) - a.begin();//l未満いくつ //ll up = n - lb; ll ret = 0; for(int j=l;j<=r;j++){ ll lb = lower_bound(all(a), j) - a.begin();//l未満いくつ ll up = n - lb; ret ^= dp[up][p]; } std::cout << ret << '\n'; } return 0; }