結果
問題 | No.789 範囲の合計 |
ユーザー | ohreitetsu |
提出日時 | 2019-03-13 21:42:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 810 bytes |
コンパイル時間 | 694 ms |
コンパイル使用メモリ | 75,200 KB |
実行使用メモリ | 12,572 KB |
最終ジャッジ日時 | 2024-06-24 00:29:31 |
合計ジャッジ時間 | 3,391 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
#include <iostream> #include <map> using namespace std; typedef long long LL; map<LL,LL> myMap; map<LL,LL>::iterator mit; LL Sumary(LL l,LL r) { LL Sum=0; map<LL,LL>::iterator mitL,mitR; mitL=myMap.find(l); mitR=myMap.find(r); mit=mitL; while (mit!=myMap.end()){ Sum+=(*mit).second; if (mit==mitR){ break; } //cout<<Sum<<endl; mit++; } return Sum; } int main(int argc, char* argv[]) { int N; cin>>N; int q; LL x,y; LL Sum=0; for (int i=0;i<N;i++){ cin>>q>>x>>y; if (q==0){ mit=myMap.find(x); if (mit!=myMap.end()){ (*mit).second+=y; }else{ myMap[x]=y; } }else{ mit=myMap.find(x); if (mit==myMap.end()){ myMap[x]=0; } mit=myMap.find(y); if (mit==myMap.end()){ myMap[y]=0; } Sum+=Sumary(x,y); } } cout<<Sum<<endl; return 0; }