結果
問題 | No.831 都市めぐり |
ユーザー | chocorusk |
提出日時 | 2019-05-24 22:39:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,434 bytes |
コンパイル時間 | 871 ms |
コンパイル使用メモリ | 102,884 KB |
実行使用メモリ | 19,648 KB |
最終ジャッジ日時 | 2024-09-17 11:02:04 |
合計ジャッジ時間 | 1,763 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> #include <fstream> #define popcount __builtin_popcount using namespace std; typedef long long ll; typedef pair<int, int> P; ll n, ans; int main() { cin>>n; if(n==1){ cout<<0<<endl; return 0; }else if(n==2){ cout<<4<<endl; return 0; } ans=2*n-1; deque<ll> deq; for(int i=2; i<=n; i++) deq.push_back(i); for(int i=0; ; i++){ if(n%4==1 && deq.size()==4){ ans+=deq[0]*deq[1]; ans+=deq[0]*deq[3]; ans+=deq[1]*deq[2]; break; }else if(n%4==0 && deq.size()==3){ ans+=deq[0]*deq[1]; ans+=deq[0]*deq[2]; break; }else if(n%4==3 && deq.size()==2){ ans+=deq[0]*deq[1]; break; }else if(n%4==2 && deq.size()==3){ ans+=deq[0]*deq[2]; ans+=deq[1]*deq[2]; break; } ans+=deq[0]*deq.back(); ans+=deq[1]*deq[deq.size()-2]; if(i&1){ deq.pop_front(); deq.pop_front(); }else{ deq.pop_back(); deq.pop_back(); } } return 0; }