結果
問題 | No.510 二次漸化式 |
ユーザー | gyosib |
提出日時 | 2017-04-29 00:19:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,365 bytes |
コンパイル時間 | 887 ms |
コンパイル使用メモリ | 78,820 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-13 19:38:16 |
合計ジャッジ時間 | 8,270 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<math.h> #include<string> #include<sstream> #include<typeinfo> using namespace std; void makes(vector<vector<int>> &v,vector<vector<int>> &xy, int index){ if(index < v[0].size()){ v[1][index] = xy[1][index-1]*v[1][index-1] + 1; v[0][index] = xy[0][index-1]*pow(v[1][index-1],2) + v[0][index-1]; makes(v,xy,++index); } } vector<string> split(string &str, char sep){ std::vector<std::string> v; std::stringstream ss(str); std::string buffer; while(std::getline(ss, buffer, sep)) { v.push_back(buffer); } return v; } int main(){ int n, q; cin >> n >> q; string query_tmp; vector<string> query; vector<vector<int>> zenka(2,vector<int>(n,0)); vector<vector<int>> xy(2,vector<int>(n,0)); vector<int> res; int a0 = 1, b0 = 1; zenka[0][0] = a0, zenka[1][0] = b0; for(int i=0;i<q;){ cin >> query_tmp; query.push_back(query_tmp); if(query_tmp == "a" || query_tmp == "x" || query_tmp == "y") i++; } for(int i=0;i<query.size();i++){ if(query[i] == "a"){ res.push_back(zenka[0][stoi(query[++i])]); }else if(query[i] == "x"){ xy[0][stoi(query[++i])] = stoi(query[++i]); }else if(query[i] == "y"){ xy[1][stoi(query[++i])] = stoi(query[++i]); } makes(zenka,xy,1); } for(int a:res){ cout << a << endl; } return 0; }