結果

問題 No.318 学学学学学
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-12-11 20:15:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,046 ms / 2,000 ms
コード長 810 bytes
コンパイル時間 1,115 ms
コンパイル使用メモリ 79,708 KB
実行使用メモリ 14,340 KB
最終ジャッジ日時 2024-06-22 15:37:33
合計ジャッジ時間 7,867 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 18 ms
6,940 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 14 ms
6,944 KB
testcase_05 AC 106 ms
14,284 KB
testcase_06 AC 740 ms
9,100 KB
testcase_07 AC 726 ms
7,304 KB
testcase_08 AC 577 ms
6,944 KB
testcase_09 AC 366 ms
6,944 KB
testcase_10 AC 71 ms
6,944 KB
testcase_11 AC 107 ms
14,340 KB
testcase_12 AC 62 ms
9,096 KB
testcase_13 AC 48 ms
7,048 KB
testcase_14 AC 39 ms
6,944 KB
testcase_15 AC 34 ms
6,944 KB
testcase_16 AC 29 ms
6,940 KB
testcase_17 AC 1,046 ms
9,100 KB
testcase_18 AC 43 ms
9,096 KB
testcase_19 AC 1,045 ms
9,100 KB
testcase_20 AC 28 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:13:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   13 |   scanf("%d", &n);
      |   ~~~~~^~~~~~~~~~
main.cpp:15:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |     scanf("%d", &p);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

// (ΦωΦ)<悪あがき
#include <iostream>
#include <algorithm>
#include <unordered_map>
#include <map>
using namespace std;

int n, p, x, y, i;
int b[100005];
unordered_map<int, pair<int, int>> dic;

int main(void) {
  scanf("%d", &n);
  for(i=0; i<n; i++) {
    scanf("%d", &p);
    if(dic.find(p) == dic.end()) {
      x = n, y = -1;
    } else {
      pair<int, int> pr = dic[p];
      x = pr.first, y = pr.second;
    }
    x = min(x, i);
    y = max(y, i);
    dic[p] = make_pair(x, y);
  }
  map<int, pair<int, int>> ordered_dic(dic.begin(), dic.end());
  for(pair<int, pair<int, int>> kv : ordered_dic) {
    for(i=kv.second.first; i<=kv.second.second; i++) {
      b[i] = kv.first;
    }
  }
  printf("%d", b[0]);
  for(i=1; i<n; i++) {
    printf(" %d", b[i]);
  }
  putchar('\n');
  return 0;
}
0