結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,812 KB
testcase_01 AC 12 ms
6,944 KB
testcase_02 AC 15 ms
6,940 KB
testcase_03 AC 10 ms
6,940 KB
testcase_04 AC 13 ms
6,944 KB
testcase_05 AC 77 ms
14,464 KB
testcase_06 AC 652 ms
9,096 KB
testcase_07 AC 655 ms
7,180 KB
testcase_08 AC 528 ms
6,940 KB
testcase_09 AC 328 ms
6,940 KB
testcase_10 AC 61 ms
6,940 KB
testcase_11 AC 82 ms
14,456 KB
testcase_12 AC 50 ms
9,072 KB
testcase_13 AC 40 ms
7,172 KB
testcase_14 AC 33 ms
6,940 KB
testcase_15 AC 30 ms
6,940 KB
testcase_16 AC 27 ms
6,940 KB
testcase_17 AC 934 ms
9,092 KB
testcase_18 AC 39 ms
9,096 KB
testcase_19 AC 930 ms
9,092 KB
testcase_20 AC 25 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:12:15: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |   int n; scanf("%d", &n);
      |          ~~~~~^~~~~~~~~~
main.cpp:14:17: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |     int p; scanf("%d", &p);
      |            ~~~~~^~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <unordered_map>
#include <map>
using namespace std;

int n;
int b[100005];
unordered_map<int, pair<int, int>> dic;

int main(void) {
  int n; scanf("%d", &n);
  for(int i=0; i<n; i++) {
    int p; scanf("%d", &p);
    int x, y;
    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(int i=kv.second.first; i<=kv.second.second; i++) {
      b[i] = kv.first;
    }
  }
  printf("%d", b[0]);
  for(int i=1; i<n; i++) {
    putchar(' ');
    printf("%d", b[i]);
  }
  putchar('\n');
  return 0;
}
0