結果
問題 | No.2716 Falcon Method |
ユーザー | ococonomy1 |
提出日時 | 2024-04-05 22:17:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,854 bytes |
コンパイル時間 | 1,123 ms |
コンパイル使用メモリ | 116,352 KB |
実行使用メモリ | 181,580 KB |
最終ジャッジ日時 | 2024-10-01 02:31:52 |
合計ジャッジ時間 | 21,235 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,820 KB |
testcase_06 | AC | 3 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 195 ms
172,456 KB |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | AC | 172 ms
149,468 KB |
testcase_22 | AC | 205 ms
181,544 KB |
testcase_23 | WA | - |
testcase_24 | AC | 216 ms
181,404 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,824 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
//#pragma GCC target("avx2") //#pragma GCC optimize("O3") //#pragma GCC optimize("unroll-loops") #include <algorithm> #include <bitset> #include <cassert> #include <cmath> #include <complex> #include <climits> #include <deque> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <set> #include <string> #include <tuple> #include <vector> using namespace std; using ll = long long; using pii = pair<int,int>; using pll = pair<ll,ll>; using pli = pair<ll,int>; #define TEST cerr << "TEST" << endl #define AMARI 998244353 //#define AMARI 1000000007 #define el '\n' #define El '\n' #define MULTI_TEST_CASE false void solve(void){ //問題を見たらまず「この問題設定から言えること」をいっぱい言う //一個回答に繋がりそうな解法が見えても、実装や細かい詰めに時間がかかりそうなら別の方針を考えてみる //添え字回りで面倒になりそうなときは楽になる言い換えを実装の前にじっくり考える //ある程度考察しても全然取っ掛かりが見えないときは実験をしてみる //よりシンプルな問題に言い換えられたら、言い換えた先の問題を自然言語ではっきりと書く int n; cin >> n; int q; cin >> q; string s; cin >> s; //doubling_D[i][j] = i文字目からスタートして(1LL << j)回操作をしたとき、 D が何回出てきたか vector<vector<ll>> doubling_D(n,vector<ll>(52,0)),doubling_R(n,vector<ll>(52,0)); for(int i = 0; i < n; i++){ if(s[i] == 'D')doubling_D[i][0] = 1; if(s[i] == 'R')doubling_R[i][0] = 1; } int cnt_r = 0,cnt_d = 0; for(int i = 0; i < n; i++){ if(s[i] == 'R')cnt_r++; if(s[i] == 'D')cnt_d++; } if(cnt_r == 0){ while(q--){ int h,w; int p; cin >> h >> w >> p; cout << (p + h) % n << el; } return; } if(cnt_d == 0){ while(q--){ int h,w; int p; cin >> h >> w >> p; cout << (p + w) % n << el; } return; } for(int j = 1; j < 52; j++){ for(int i = 0; i < n; i++){ doubling_D[i][j] = doubling_D[i][j - 1] + doubling_D[(i + (1LL << (j - 1))) % n][j - 1]; doubling_R[i][j] = doubling_R[i][j - 1] + doubling_R[(i + (1LL << (j - 1))) % n][j - 1]; //if(i == 1 && j == 1)cerr << i << ' ' << (i + (1LL << j)) % n << el; } } //cerr << doubling_D[0][4] << el; while(q--){ ll h,w; cin >> h >> w; ll p; cin >> p; //p-- はしなくてよい //Hにたどり着くまでに何回の操作をしてその時どこにいるかが欲しい ll h_caisuu = 0; int h_p = p; for(int i = 51; i >= 0; i--){ if(doubling_D[h_p][i] == 0)continue; if(h >= doubling_D[h_p][i]){ h_caisuu += (1LL << i); h -= doubling_D[h_p][i]; h_p += (1LL << i); h_p %= n; } } ll w_caisuu = 0; int w_p = p; for(int i = 51; i >= 0; i--){ if(doubling_R[w_p][i] == 0)continue; if(w >= doubling_R[w_p][i]){ w_caisuu += (1LL << i); w -= doubling_R[w_p][i]; w_p += (1LL << i); w_p %= n; } } //cerr << h_caisuu << ' ' << w_caisuu << el; if(h_caisuu > w_caisuu){ cout << w_p << el; } else cout << h_p << el; } return; } void calc(void){ return; } signed main(void){ cin.tie(nullptr); ios::sync_with_stdio(false); calc(); int t = 1; if(MULTI_TEST_CASE)cin >> t; while(t--){ solve(); } return 0; }